/* LeoDecor's Landing Page CSS */
:root {
    --primary-color: #2c2926;
    --secondary-color: #f5f3f0;
    --accent-color: #b8a082;
    --text-primary: #2c2926;
    --text-secondary: #6b6661;
    --white: #ffffff;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow: 0 10px 25px rgba(44, 41, 38, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: transparent;
    backdrop-filter: none;
    z-index: 1000;
    transition: var(--transition);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: 1px;
}

.logo img {
    filter: brightness(0) invert(1);
    transition: var(--transition);
}

.cta-button {
    display: inline-block;
    padding: 12px 30px;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
    font-size: 14px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: var(--white) url('assets/bghero.jpg') center center/cover no-repeat;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44,41,38,0.55);
    z-index: 1;
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 2;
}


.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 0 60px;
    max-width: 900px;
    margin: 0 auto;
    min-height: 70vh;
}

.hero-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 5vw, 58px);
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 30px;
    color: #f5f5f5;
    text-shadow: 0 2px 12px rgba(44,41,38,0.45);
    opacity: 0;
    animation: slideUp 1s ease 0.5s forwards;
    letter-spacing: -1px;
    text-align: center;
}

.hero-text h2 {
    font-size: clamp(18px, 2.5vw, 22px);
    font-weight: 400;
    color: #f5f5f5;
    text-shadow: 0 2px 12px rgba(44,41,38,0.45);
    margin-bottom: 40px;
    opacity: 0;
    animation: slideUp 1s ease 0.7s forwards;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.hero-features {
    margin: 50px 0;
    opacity: 0;
    animation: slideUp 1s ease 0.9s forwards;
}

.hero-subtitle {
    color: #f5f5f5;
    font-size: 16px;
    margin-bottom: 30px;
    text-shadow: 0 2px 12px rgba(44,41,38,0.45);
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    max-width: 700px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: #f5f5f5;
    text-shadow: 0 2px 12px rgba(44,41,38,0.45);
    justify-content: center;
}

.feature-icon {
    width: 20px;
    height: 20px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 12px;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(44,41,38,0.25);
}

.hero-cta {
    opacity: 0;
    animation: slideUp 1s ease 1.1s forwards;
}

.hero-cta-subtitle {
    font-size: 14px;
    color: #f5f5f5;
    text-shadow: 0 2px 12px rgba(44,41,38,0.45);
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    max-width: 600px;
}

.main-cta-button {
    display: inline-block;
    padding: 18px 40px;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 35px;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    margin-bottom: 15px;
}

.main-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(44, 41, 38, 0.2);
}

.hero-image {
    position: relative;
    opacity: 0;
    animation: slideUp 1s ease 0.8s forwards;
}

.hero-image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #e8e5e1 0%, #f2f0ed 100%);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-style: italic;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Products Section */
.products {
    padding: 100px 0;
    background: var(--secondary-color);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 600;
    text-align: center;
    margin-bottom: 80px;
    color: var(--primary-color);
}

.products-container {
    max-width: 800px;
    margin: 0 auto;
}

.product-card {
    text-align: center;
    margin-bottom: 100px;
}

.product-card:last-child {
    margin-bottom: 0;
}

.product-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 500;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.product-description {
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.7;
    font-size: 16px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
}

/* Carousel Styles */
.carousel-container {
    position: relative;
    margin-bottom: 40px;
}

.swiper {
    width: 100%;
    height: 350px;
    border-radius: 15px;
    overflow: hidden;
}

.swiper-slide {
    background: linear-gradient(135deg, #f0ede8 0%, #e8e5e1 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-style: italic;
    border-radius: 15px;
    font-size: 18px;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--primary-color);
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    margin-top: -20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 14px;
}

.swiper-pagination-bullet {
    background: var(--accent-color);
    opacity: 0.3;
}

.swiper-pagination-bullet-active {
    opacity: 1;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* About Section */
.about {
    padding: 100px 0;
    background: var(--white);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    background: var(--secondary-color);
}

.testimonial-carousel {
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-slide {
    text-align: center;
    padding: 32px 24px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.testimonial-content {
    max-width: 340px;
    margin: 0 auto;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(44,41,38,0.07);
    padding: 24px 18px 18px 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonial-avatar {
    margin-bottom: 10px;
}

.testimonial-text {
    font-size: 17px;
    color: var(--text-primary);
    font-style: italic;
    margin-bottom: 18px;
    line-height: 1.5;
}

.testimonial-meta {
    display: flex;
    gap: 8px;
    font-size: 15px;
    color: var(--accent-color);
    font-weight: 500;
    margin-bottom: 0;
}

.testimonial-name {
    font-weight: 600;
    color: var(--primary-color);
}

.testimonial-location {
    font-weight: 400;
    color: var(--accent-color);
}


.testimonial-text {
    font-size: 20px;
    line-height: 1.6;
    color: var(--text-primary);
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: var(--accent-color);
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background: var(--white);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.faq-question {
    padding: 25px 30px;
    font-weight: 600;
    color: var(--primary-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    font-size: 16px;
}

.faq-icon {
    transition: var(--transition);
    font-size: 20px;
    color: var(--accent-color);
}

.faq-answer {
    padding: 0 30px 25px;
    color: var(--text-secondary);
    line-height: 1.6;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

/* Final CTA */
.final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #3a3630 100%);
    text-align: center;
    color: var(--white);
}

.final-cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 600;
    margin-bottom: 40px;
}

.cta-white {
    background: var(--white);
    color: var(--primary-color);
}

.cta-white:hover {
    background: var(--secondary-color);
}

/* Footer */
footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 60px 0 30px;
    text-align: center;
}

.footer-content {
    margin-bottom: 30px;
}

.footer-title {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    margin-bottom: 20px;
}

.footer-info {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.footer-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-color);
}

.footer-item a {
    color: var(--accent-color);
    text-decoration: none;
}

.footer-item a:hover {
    color: var(--white);
}

.footer-disclaimer {
    font-size: 12px;
    color: var(--text-secondary);
    border-top: 1px solid #3a3630;
    padding-top: 20px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
        .testimonial-slide {
            padding: 18px 4px;
        }
        .testimonial-content {
            max-width: 98vw;
            padding: 16px 8px 12px 8px;
        }
        .testimonial-avatar {
            width: 36px !important;
            height: 36px !important;
            font-size: 16px !important;
        }
        .testimonial-text {
            font-size: 14px;
            margin-bottom: 12px;
        }
        .testimonial-meta {
            font-size: 13px;
            gap: 6px;
        }
    }
    .container {
        padding: 0 16px;
    }

    .hero-content {
        padding: 100px 0 40px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .header-content {
        padding: 12px 0;
        flex-direction: column;
        align-items: center;
    }
    .cta-button {
        display: none;
    }

    .logo {
            .logo img {
                height: 28px !important;
                max-width: 120px;
            }
    .cta-button {
        padding: 10px 20px;
        font-size: 12px;
    }

            .cta-button {
                padding: 8px 16px;
                font-size: 13px;
            }
    .main-cta-button {
        padding: 16px 30px;
        font-size: 14px;
    }

            .main-cta-button {
                padding: 12px 20px;
                font-size: 15px;
            }
    .footer-info {
            .section-title {
                font-size: clamp(22px, 5vw, 28px);
                line-height: 1.2;
            }
            .product-title {
                font-size: clamp(16px, 4vw, 20px);
                line-height: 1.2;
            }
            .product-description {
                font-size: 13px;
                line-height: 1.5;
            }
            .hero-text h1 {
                font-size: clamp(22px, 7vw, 30px);
                line-height: 1.15;
            }
            .hero-text h2 {
                font-size: clamp(13px, 4vw, 16px);
                line-height: 1.3;
            }
            .about-text {
                font-size: 13px;
                line-height: 1.5;
            }
            .testimonial-text {
                font-size: 14px;
                line-height: 1.4;
            }
            .footer-title {
                font-size: 16px;
            }
        flex-direction: column;
        gap: 15px;
    }

    .swiper {
        height: 250px;
    }

    .product-card {
        margin-bottom: 80px;
    }
}

@media (max-width: 480px) {
    .faq-question {
        padding: 20px;
        font-size: 14px;
    }

    .faq-answer {
        padding: 0 20px 20px;
        font-size: 14px;
    }
}
