/* ========================================
   ÉCLAT DORÉ - LUXURY BEAUTY REDESIGN
   Premium CSS with Gold Accents
   ======================================== */

:root {
    /* Premium Gold Palette */
    --gold: #C9A962;
    --gold-light: #E8D5A3;
    --gold-dark: #8B7355;

    /* Neutral Luxury */
    --cream: #FAF8F5;
    --cream-dark: #F5F0E8;
    --charcoal: #2C2C2C;
    --text: #4A4A4A;
    --text-light: #7A7A7A;

    /* Typography */
    --font-display: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;

    /* Spacing */
    --section-padding: 8rem 0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--cream);
    color: var(--text);
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.8;
    overflow-x: hidden;
}

/* ========================================
   TYPOGRAPHY
   ======================================== */
h1,
h2,
h3,
h4 {
    font-family: var(--font-display);
    font-weight: 400;
    color: var(--charcoal);
    line-height: 1.2;
}

h1 {
    font-size: clamp(3rem, 8vw, 6rem);
}

h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
    font-size: 1.3rem;
}

p {
    color: var(--text);
    font-weight: 300;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ========================================
   LOADING SCREEN
   ======================================== */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--charcoal);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.8s, visibility 0.8s;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-logo {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--gold);
    letter-spacing: 8px;
    margin-bottom: 2rem;
}

.loader-bar {
    width: 200px;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    overflow: hidden;
}

.loader-progress {
    width: 0;
    height: 100%;
    background: var(--gold);
    animation: loadProgress 2s ease-out forwards;
}

@keyframes loadProgress {
    to {
        width: 100%;
    }
}

/* ========================================
   CURSOR GLOW
   ======================================== */
.cursor-glow {
    position: fixed;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(201, 169, 98, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s;
}

/* ========================================
   WATERMARK
   ======================================== */
.watermark {
    position: fixed;
    bottom: 30px;
    right: 30px;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 4px;
    color: rgba(201, 169, 98, 0.2);
    text-transform: uppercase;
    pointer-events: none;
    z-index: 9999;
    writing-mode: vertical-rl;
}

/* ========================================
   NAVIGATION
   ======================================== */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: transparent;
    transition: all 0.5s;
}

nav.scrolled {
    background: rgba(250, 248, 245, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.05);
    padding: 1rem 5%;
}

.logo {
    font-family: var(--font-display);
    font-size: 1.6rem;
    letter-spacing: 3px;
    color: var(--charcoal);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    color: var(--gold);
    font-size: 1.2rem;
}

.nav-links {
    display: flex;
    gap: 3rem;
}

.nav-links a {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.4s;
}

.nav-links a:hover::after {
    width: 100%;
}

.btn-reserve {
    padding: 0.8rem 2rem;
    border: 1px solid var(--charcoal);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

.btn-reserve:hover {
    background: var(--charcoal);
    color: var(--cream);
}

.menu-toggle {
    display: none;
    cursor: pointer;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(250, 248, 245, 0.4) 0%,
            rgba(250, 248, 245, 0.6) 50%,
            rgba(250, 248, 245, 0.9) 100%);
}

.hero-content {
    text-align: center;
    z-index: 10;
    max-width: 900px;
    padding: 0 2rem;
}

.hero-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-dark);
}

.hero-badge .line {
    width: 60px;
    height: 1px;
    background: var(--gold);
}

.hero h1 .line-1,
.hero h1 .line-2 {
    display: block;
}

.hero h1 .line-2 {
    color: var(--gold-dark);
    font-style: italic;
}

.hero p {
    font-size: 1.2rem;
    max-width: 550px;
    margin: 2rem auto 3rem;
    color: var(--text-light);
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    padding: 1.2rem 3rem;
    background: var(--charcoal);
    color: var(--cream);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

.btn-primary:hover {
    background: var(--gold-dark);
}

.btn-secondary {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 2rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

.btn-secondary:hover {
    color: var(--gold-dark);
}

.play-icon {
    width: 40px;
    height: 40px;
    border: 1px solid var(--charcoal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-icon i {
    width: 16px;
    height: 16px;
}

.btn-secondary:hover .play-icon {
    background: var(--gold);
    border-color: var(--gold);
    color: #fff;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.mouse {
    width: 24px;
    height: 40px;
    border: 1px solid var(--charcoal);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.wheel {
    width: 3px;
    height: 8px;
    background: var(--gold);
    border-radius: 2px;
    animation: scrollWheel 1.5s infinite;
}

@keyframes scrollWheel {
    0% {
        transform: translateY(0);
        opacity: 1;
    }

    100% {
        transform: translateY(10px);
        opacity: 0;
    }
}

.scroll-indicator span {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-light);
}

/* ========================================
   SECTION LABELS & HEADERS
   ======================================== */
.section-label {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--gold);
    margin-bottom: 1rem;
    font-weight: 500;
}

.section-label.light {
    color: rgba(255, 255, 255, 0.6);
}

.section-header {
    margin-bottom: 4rem;
}

.section-header.centered {
    text-align: center;
}

/* ========================================
   PHILOSOPHY SECTION
   ======================================== */
.philosophy {
    padding: var(--section-padding);
    background: var(--cream);
}

.philosophy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.phil-text h2 {
    margin-bottom: 2rem;
}

.phil-text p {
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.stats-row {
    display: flex;
    gap: 3rem;
}

.stat {
    text-align: left;
}

.stat-num {
    display: block;
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
}

/* Image Stack */
.phil-images {
    position: relative;
}

.img-stack {
    position: relative;
}

.img-stack img {
    border-radius: 4px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.img-1 {
    width: 70%;
    position: relative;
    z-index: 2;
}

.img-2 {
    width: 60%;
    position: absolute;
    bottom: -30px;
    right: 0;
    z-index: 3;
}

.gold-frame {
    position: absolute;
    top: -20px;
    right: 40px;
    width: 200px;
    height: 250px;
    border: 1px solid var(--gold);
    z-index: 1;
}

/* ========================================
   MARQUEE BAND
   ======================================== */
.marquee-band {
    background: var(--charcoal);
    padding: 1.5rem 0;
    overflow: hidden;
}

.marquee-content {
    display: flex;
    gap: 4rem;
    animation: marquee 20s linear infinite;
    white-space: nowrap;
}

.marquee-content span {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--gold-light);
    letter-spacing: 2px;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ========================================
   COLLECTION SECTION
   ======================================== */
.collection {
    padding: var(--section-padding);
    background: #fff;
}

.products-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.product-card {
    background: var(--cream);
    transition: transform 0.4s, box-shadow 0.4s;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.product-card.featured {
    transform: scale(1.02);
}

.product-card.featured:hover {
    transform: scale(1.02) translateY(-10px);
}

.product-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 44, 44, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.quick-view {
    padding: 1rem 2rem;
    border: 1px solid #fff;
    color: #fff;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: background 0.3s;
}

.quick-view:hover {
    background: #fff;
    color: var(--charcoal);
}

.product-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--charcoal);
    color: #fff;
    padding: 0.5rem 1rem;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-badge.gold {
    background: var(--gold);
    color: var(--charcoal);
}

.product-info {
    padding: 2rem;
}

.product-category {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 0.5rem;
    display: block;
}

.product-info h3 {
    margin-bottom: 1rem;
}

.product-info p {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--charcoal);
}

.add-btn {
    width: 45px;
    height: 45px;
    border: 1px solid var(--charcoal);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.add-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
}

.add-btn i {
    width: 18px;
    height: 18px;
}

.collection-cta {
    text-align: center;
    margin-top: 4rem;
}

.btn-outline-dark {
    display: inline-block;
    padding: 1.2rem 3rem;
    border: 1px solid var(--charcoal);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

.btn-outline-dark:hover {
    background: var(--charcoal);
    color: var(--cream);
}

/* ========================================
   EXPERIENCE SECTION
   ======================================== */
.experience {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.experience-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.experience-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.experience-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 44, 44, 0.7);
}

.experience-content {
    text-align: center;
    color: #fff;
    max-width: 700px;
    z-index: 10;
    padding: 0 2rem;
}

.experience-content h2 {
    color: #fff;
    margin-bottom: 1.5rem;
}

.experience-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.experience-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
}

.exp-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.exp-feature i {
    color: var(--gold);
    width: 24px;
    height: 24px;
}

.exp-feature span {
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.btn-gold {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--gold);
    color: var(--charcoal);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.btn-gold:hover {
    background: var(--gold-light);
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */
.testimonials {
    padding: var(--section-padding);
    background: var(--cream-dark);
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: #fff;
    padding: 3rem;
    position: relative;
}

.quote-icon {
    font-family: var(--font-display);
    font-size: 5rem;
    color: var(--gold-light);
    line-height: 1;
    position: absolute;
    top: 1rem;
    left: 2rem;
    opacity: 0.5;
}

.testimonial-text {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text);
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author strong {
    display: block;
    color: var(--charcoal);
}

.testimonial-author span {
    font-size: 0.8rem;
    color: var(--text-light);
}

.stars {
    margin-top: 1.5rem;
    color: var(--gold);
    letter-spacing: 2px;
}

/* ========================================
   SERVICES SECTION
   ======================================== */
.services {
    padding: var(--section-padding);
    background: var(--cream);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.service-card {
    text-align: center;
    padding: 3rem 2rem;
    background: #fff;
    border: 1px solid transparent;
    transition: all 0.4s;
}

.service-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
}

.service-icon {
    margin-bottom: 1.5rem;
}

.service-icon i {
    width: 40px;
    height: 40px;
    color: var(--gold);
    stroke-width: 1;
}

.service-card h4 {
    margin-bottom: 1rem;
}

.service-card p {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.service-price {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--gold-dark);
    font-style: italic;
}

/* ========================================
   FOOTER
   ======================================== */
footer {
    background: var(--charcoal);
    color: #fff;
}

.footer-top-band {
    background: var(--gold);
    padding: 3rem 0;
}

.footer-top-band .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-top-band h3 {
    color: var(--charcoal);
    font-size: 1.5rem;
}

.footer-cta {
    padding: 1rem 2rem;
    border: 1px solid var(--charcoal);
    color: var(--charcoal);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.footer-cta:hover {
    background: var(--charcoal);
    color: var(--gold);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4rem;
    padding: 5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo-footer {
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-footer .logo-icon {
    color: var(--gold);
}

.f-col.main p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1.5rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.social-icons a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--charcoal);
}

.social-icons i {
    width: 18px;
    height: 18px;
}

.f-col h4 {
    color: #fff;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    font-family: var(--font-body);
    font-weight: 500;
}

.f-col a,
.f-col p {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
}

.f-col a:hover {
    color: var(--gold);
}

.news-form {
    display: flex;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 1rem;
}

.news-form input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 1rem;
    color: #fff;
    outline: none;
}

.news-form input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.news-form button {
    background: var(--gold);
    border: none;
    padding: 0 1.5rem;
    color: var(--charcoal);
    cursor: pointer;
    transition: background 0.3s;
}

.news-form button:hover {
    background: var(--gold-light);
}

.news-form button i {
    width: 18px;
    height: 18px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}

.legal-links {
    display: flex;
    gap: 2rem;
}

.legal-links a {
    color: rgba(255, 255, 255, 0.4);
}

.legal-links a:hover {
    color: var(--gold);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
    .philosophy-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .products-showcase,
    .testimonials-slider {
        grid-template-columns: 1fr 1fr;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 5rem 0;
    }

    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .stats-row {
        flex-wrap: wrap;
        gap: 2rem;
    }

    .stat-num {
        font-size: 2.5rem;
    }

    .products-showcase,
    .testimonials-slider,
    .services-grid {
        grid-template-columns: 1fr;
    }

    .product-card.featured {
        transform: scale(1);
    }

    .experience-features {
        flex-wrap: wrap;
        gap: 2rem;
    }

    .footer-top-band .container {
        flex-direction: column;
        text-align: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .logo-footer,
    .social-icons {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .watermark {
        font-size: 0.7rem;
        bottom: 15px;
        right: 15px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero-badge {
        font-size: 0.7rem;
    }

    .hero-badge .line {
        width: 30px;
    }

    .product-info {
        padding: 1.5rem;
    }

    .testimonial-card {
        padding: 2rem;
    }

    .service-card {
        padding: 2rem 1.5rem;
    }
}