@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Montserrat:wght@100..900&display=swap');

:root {
    --cream: #FFFDF9;
    --blush: #F8E1E7;
    --gold: #D4AF37;
    --gold-light: #E5C36E;
    --text-dark: #2A1B1B;
    --text-muted: #6B5B5B;
    --noir: #4A0E0E;
    --white: #FFFFFF;
    --shadow: rgba(0, 0, 0, 0.05);
    --transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--cream);
    color: var(--text-dark);
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
.serif {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

section {
    padding: 120px 0;
}

/* Typography Helpers */
.title-lg {
    font-size: 5rem;
    line-height: 1.1;
}

.title-md {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.title-sm {
    font-size: 1.5rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--gold);
    margin-bottom: 30px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid transparent;
}

.btn-primary {
    background-color: var(--text-dark);
    color: var(--cream);
}

.btn-primary:hover {
    background-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
}

.btn-outline {
    border: 1px solid var(--text-dark);
    color: var(--text-dark);
}

.btn-outline:hover {
    background-color: var(--text-dark);
    color: var(--cream);
    transform: translateY(-5px);
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: white;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 30px 0;
    transition: var(--transition);
}

nav.scrolled {
    background: rgba(255, 253, 249, 0.9);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    box-shadow: 0 5px 20px var(--shadow);
}

.logo-container {
    height: 120px;
    /* Increased height to accommodate the full logo */
    width: 220px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-logo {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
    transform: translateY(0) scale(1.1);
    /* Removed upward translation, balanced scale */
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background-color: #fcecef;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0.9;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.hero-btns {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

/* Floating Animation */
@keyframes float {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }

    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 3;
}

.particle {
    position: absolute;
    background: radial-gradient(circle, rgba(248, 225, 231, 0.8) 0%, rgba(248, 225, 231, 0) 70%);
    border-radius: 50%;
    animation: float 10s infinite ease-in-out;
}

/* Collection */
.collection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.product-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow);
}

.product-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}

.product-img {
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.product-img img {
    max-height: 100%;
    transition: var(--transition);
}

.product-card:hover .product-img img {
    transform: scale(1.1);
}

.product-info h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.product-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 25px;
}

/* Notes Section */
.notes {
    background-color: var(--white);
    display: flex;
    align-items: center;
    gap: 80px;
}

.notes-img {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.notes-content {
    flex: 1;
}

.note-tier {
    margin-bottom: 40px;
}

.note-tier h4 {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.9rem;
    margin-bottom: 15px;
    border-bottom: 1px solid var(--blush);
    display: inline-block;
    padding-bottom: 5px;
}

.note-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.note-tag {
    background: var(--cream);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Packaging Section */
.packaging {
    background: var(--blush);
    overflow: hidden;
}

.packaging-flex {
    display: flex;
    align-items: center;
    gap: 80px;
}

.packaging-content {
    flex: 1;
}

.packaging-img {
    flex: 1;
    position: relative;
}

.packaging-img img {
    border-radius: 20px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.15);
}

/* Boutique Section */
.boutique {
    text-align: center;
}

.boutique-scene {
    margin-top: 60px;
    padding: 60px;
    background: radial-gradient(circle at center, #ffffff 0%, #fef8f9 100%);
    border-radius: 30px;
    box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.02);
}

/* Contact Section */
.contact-flex {
    display: flex;
    gap: 100px;
}

.contact-info {
    flex: 1;
}

.contact-form {
    flex: 1.5;
    background: var(--white);
    padding: 60px;
    border-radius: 30px;
    box-shadow: 0 20px 60px var(--shadow);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #eee;
    background: #f9f9f9;
    border-radius: 10px;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: var(--white);
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
}

/* Footer */
footer {
    padding: 80px 0 40px;
    background: var(--text-dark);
    color: var(--cream);
    text-align: center;
}

.footer-logo {
    font-size: 2rem;
    letter-spacing: 0.3em;
    margin-bottom: 20px;
}

.footer-slogan {
    font-style: italic;
    color: var(--gold);
    margin-bottom: 40px;
}

.copyright {
    font-size: 0.8rem;
    color: #888;
    margin-top: 60px;
    border-top: 1px solid #333;
    padding-top: 30px;
}

/* Animations using GSAP / Intersection Observer */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 968px) {
    .title-lg {
        font-size: 3rem;
    }

    .title-md {
        font-size: 2.5rem;
    }

    .nav-links {
        display: none;
    }

    .contact-flex,
    .notes,
    .packaging-flex {
        flex-direction: column;
        gap: 40px;
    }

    section {
        padding: 80px 0;
    }
}