/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --cream: #F8F6F2;
    --beige: #E8E4DD;
    --blush: #E8D5C4;
    --gold: #D4AF37;
    --dark-beige: #D4C5B8;
    --text-dark: #2C2C2C;
    --text-light: #6B6B6B;
    --white: #FFFFFF;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    background-color: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(248, 246, 242, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 400;
    font-size: 15px;
    transition: var(--transition);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: var(--transition);
}

.nav-menu a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-dark);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.15);
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.30) 0%,
        rgba(0, 0, 0, 0.12) 50%,
        rgba(0, 0, 0, 0.30) 100%
    );
}


.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    padding: 100px 20px 0;
    /* Reduced top padding */
}

.hero-title {
    font-size: clamp(42px, 7vw, 84px);
    /* Slightly reduced font size */
    font-weight: 700;
    color: var(--cream);
    margin-bottom: 20px;
    /* Reduced margin */
    letter-spacing: -1px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: clamp(16px, 2vw, 22px);
    /* Slightly reduced font size */
    color: var(--beige);
    margin-bottom: 36px;
    /* Reduced margin */
    font-weight: 300;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.cta-button {
    display: inline-block;
    padding: 16px 42px;
    /* Slightly reduced padding */
    background: var(--gold);
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 1px;
    transition: var(--transition);
    border: 2px solid var(--gold);
}

.cta-button:hover {
    background: transparent;
    color: var(--white);
    /* Changed to white for readability */
    border-color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.scroll-arrow {
    width: 2px;
    height: 30px;
    background: var(--text-dark);
    position: relative;
    animation: scrollBounce 2s infinite;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -4px;
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--text-dark);
    border-bottom: 2px solid var(--text-dark);
    transform: rotate(45deg);
}

@keyframes scrollBounce {

    0%,
    100% {
        transform: translateY(0);
        opacity: 1;
    }

    50% {
        transform: translateY(10px);
        opacity: 0.5;
    }
}

/* Section Styles */
section {
    padding: 120px 0;
}

.section-title {
    font-size: clamp(36px, 5vw, 56px);
    margin-bottom: 16px;
    color: var(--text-dark);
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 60px;
}

.centered {
    text-align: center;
}

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

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

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

.about-values {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 16px;
    color: var(--text-dark);
}

.value-icon {
    font-size: 24px;
}

.about-image {
    position: relative;
    height: 500px;
    overflow: hidden;
    border-radius: 8px;
}

.image-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.image-slider .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.image-slider .slide.active {
    opacity: 1;
}

.about-image img.section-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.slider-dots .dot.active {
    background: var(--white);
    border-color: var(--white);
    transform: scale(1.2);
}

.slider-dots .dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* Collections Section */
.collections {
    background: var(--cream);
}

.collections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.collection-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.collection-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.collection-image {
    height: 300px;
    overflow: hidden;
}

.collection-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.collection-card:hover .collection-image img {
    transform: scale(1.05);
}

.collection-info {
    padding: 32px;
}

.collection-info h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.collection-info p {
    color: var(--text-light);
    margin-bottom: 0;
    line-height: 1.6;
}

.collection-short-description {
    margin-bottom: 16px;
}

.collection-full-description {
    margin-bottom: 18px;
}

.collection-full-description p {
    margin-bottom: 14px;
}

.collection-full-description p:last-child {
    margin-bottom: 0;
}

.collection-full-description[hidden] {
    display: none;
}

.collection-more-btn {
    margin-top: 18px;
    border: 1px solid var(--gold);
    background: transparent;
    color: var(--text-dark);
    font-family: inherit;
    font-size: 14px;
    letter-spacing: 0.3px;
    padding: 10px 18px;
    border-radius: 999px;
    cursor: pointer;
    transition: var(--transition);
}

.collection-more-btn:hover {
    background: var(--gold);
    color: var(--text-dark);
}

/* Bestsellers Section */
.bestsellers {
    background: var(--white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.product-card {
    background: var(--cream);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.product-image {
    height: 350px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    padding: 32px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-info h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.product-description {
    color: var(--text-light);
    margin-bottom: 0px;
    line-height: 1.6;
    font-size: 15px;
}

/* Benefits Section */
.benefits {
    background: var(--beige);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 60px;
    margin-top: 60px;
}

.benefit-item {
    text-align: center;
}

.benefit-icon {
    font-size: 48px;
    margin-bottom: 24px;
    display: block;
}

.benefit-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.benefit-item p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Reviews Section */
.reviews {
    background: var(--white);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.review-card {
    background: var(--cream);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.review-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blush) 0%, var(--beige) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 18px;
}

.review-author h4 {
    font-size: 18px;
    margin-bottom: 4px;
    color: var(--text-dark);
}

.review-stars {
    color: var(--gold);
    font-size: 14px;
    letter-spacing: 2px;
}

.review-text {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 16px;
}

/* FAQ Section */
.faq {
    background: var(--cream);
}

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

.faq-item {
    background: var(--white);
    border-radius: 8px;
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
    width: 100%;
    padding: 24px 32px;
    background: none;
    border: none;
    text-align: left;
    font-size: 18px;
    font-weight: 500;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--cream);
}

.faq-icon {
    font-size: 24px;
    font-weight: 300;
    transition: var(--transition);
    color: var(--gold);
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 32px 24px;
    color: var(--text-light);
    line-height: 1.8;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 80px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 12px;
    line-height: 1.7;
}

.social-links,
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-links a,
.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover,
.footer-links a:hover {
    color: var(--gold);
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 968px) {
    .container {
        padding: 0 30px;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--cream);
        flex-direction: column;
        padding: 40px;
        gap: 30px;
        transition: var(--transition);
    }

    .nav-menu.active {
        left: 0;
    }

    .menu-toggle {
        display: flex;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .collections-grid,
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
    }

    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 40px;
    }

    @media (max-width: 968px) {
        .container {
            padding: 0 30px;
        }

        .nav-menu {
            position: fixed;
            top: 70px;
            left: -100%;
            width: 100%;
            height: calc(100vh - 70px);
            background: var(--cream);
            flex-direction: column;
            padding: 40px;
            gap: 30px;
            transition: var(--transition);
            overflow-y: auto;
            /* Allow scrolling if menu is long */
        }

        .nav-menu.active {
            left: 0;
        }

        .menu-toggle {
            display: flex;
        }

        .about-content {
            grid-template-columns: 1fr;
            gap: 40px;
        }

        .about-image {
            height: 400px;
            /* Reduced height for tablet/mobile */
            order: -1;
            /* Image first on mobile */
        }

        .collections-grid,
        .products-grid {
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        .benefits-grid {
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
        }

        .reviews-grid {
            grid-template-columns: 1fr;
        }
    }

    @media (max-width: 640px) {
        .container {
            padding: 0 20px;
        }

        section {
            padding: 60px 0;
            /* Reduced padding */
        }

        .hero {
            min-height: 100vh;
            /* Full height on mobile */
            height: auto;
            padding: 100px 0 60px;
            background-attachment: scroll;
            /* Fix for mobile background issues */
        }

        .hero-content {
            padding: 80px 20px 0;
            /* Adjusted padding for mobile */
        }

        .hero-title {
            font-size: 36px;
            /* Reverted to larger size */
            margin-bottom: 18px;
        }

        .hero-subtitle {
            font-size: 18px;
            /* Reverted to larger size */
            margin-bottom: 32px;
        }

        .cta-button {
            padding: 14px 32px;
            font-size: 14px;
            width: 100%;
            /* Full width button on mobile */
            text-align: center;
        }

        .collections-grid,
        .products-grid {
            grid-template-columns: 1fr;
        }

        .collection-image,
        .product-image {
            height: 250px;
            /* Reduced image height on mobile */
        }

        .benefits-grid {
            grid-template-columns: 1fr;
            gap: 40px;
        }

        .footer-content {
            grid-template-columns: 1fr;
            gap: 40px;
            text-align: center;
        }

        .social-links,
        .footer-links {
            align-items: center;
            /* Center links on mobile */
        }
    }
