/* ===================================
   CSS Variables & Reset
   =================================== */
:root {
    --primary-color: #1a1a1a;
    --secondary-color: #8b7355;
    --accent-color: #d4af37;
    --text-color: #2c2c2c;
    --text-light: #666;
    --bg-light: #f8f6f3;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;

    --font-display: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;

    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--bg-white);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

/* ===================================
   Loader
   =================================== */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--primary-color);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.loader-logo {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 600;
    color: var(--accent-color);
    letter-spacing: 0.2em;
    margin-bottom: 2rem;
    animation: fadeInOut 2s infinite;
}

.loader-bar {
    width: 200px;
    height: 2px;
    background: rgba(212, 175, 55, 0.2);
    position: relative;
    overflow: hidden;
}

.loader-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--accent-color);
    animation: loading 1.5s infinite;
}

@keyframes fadeInOut {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}

@keyframes loading {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* ===================================
   Navigation
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 2rem 0;
    transition: var(--transition-smooth);
    background: transparent;
}

/* Navbar on dark background (transparent at top of page) */
.navbar.on-dark .nav-link {
    color: white;
}

.navbar.on-dark .nav-link::after {
    background: white;
}

/* Navbar scrolled (white background) */
.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    padding: 1rem 0;
}

.navbar.scrolled .nav-link {
    color: var(--primary-color);
}


.navbar.scrolled .nav-link::after {
    background: var(--accent-color);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    position: relative;
}

.logo-image {
    height: 80px;
    width: auto;
    transition: var(--transition-fast);
}

/* Logo clair (sur fond sombre) visible par défaut sur dark background */
.logo-claire {
    display: block;
}

.logo-sombre {
    display: none;
}

/* Quand navbar scrolled (fond blanc) : logo sombre visible */
.navbar.scrolled .logo-claire {
    display: none;
}

.navbar.scrolled .logo-sombre {
    display: block;
}

/* Quand navbar on-dark (fond transparent sur page sombre) : logo clair visible */
.navbar.on-dark .logo-claire {
    display: block;
}

.navbar.on-dark .logo-sombre {
    display: none;
}

.nav-menu {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    position: relative;
    padding: 0.5rem 0;
    transition: var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

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

.nav-link.nav-cta {
    background: var(--primary-color);
    color: white !important;
    padding: 0.7rem 1.5rem;
    border-radius: 2px;
}

.nav-link.nav-cta::after {
    display: none;
}

.nav-link.nav-cta:hover {
    background: var(--secondary-color);
    color: white !important;
}

/* Force white text on CTA in all states */
.navbar.on-dark .nav-link.nav-cta,
.navbar.scrolled .nav-link.nav-cta,
.nav-menu .nav-link.nav-cta {
    color: white !important;
}

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

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition-fast);
}

.navbar.on-dark .nav-toggle span {
    background: white;
}

.navbar.scrolled .nav-toggle span {
    background: var(--primary-color);
}

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

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* When hero has image class */
.hero.with-image .hero-background {
    background-image: url('../uploads/hero-bg.jpg');
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(212,175,55,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

/* Hide grid pattern when image is present */
.hero.with-image .hero-background::before {
    display: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.3) 100%);
}

/* Stronger overlay when image is present for text readability */
.hero.with-image .hero-overlay {
    background:
        linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.6) 100%),
        radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 1200px;
    padding: 0 2rem;
}

.hero-text {
    animation: fadeInUp 1s ease both;
}

.hero-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.hero-title-small {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--accent-color);
}

.hero-title-main {
    font-family: var(--font-display);
    font-size: clamp(4rem, 10vw, 8rem);
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.02em;
}

.hero-subtitle {
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 0.15em;
    margin-top: 2rem;
    color: rgba(255,255,255,0.8);
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 3rem;
}

.hero-scroll {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    animation: fadeIn 1s 1s ease both;
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--accent-color), transparent);
    animation: scroll 2s infinite;
}

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes scroll {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
}

/* ===================================
   Buttons
   =================================== */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--accent-color);
    color: var(--primary-color);
}

.btn-primary:hover {
    background: #c19b2e;
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 1px solid rgba(255,255,255,0.5);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: white;
}

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

.btn-light:hover {
    background: var(--bg-light);
}

/* ===================================
   Container & Sections
   =================================== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 8rem 0;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    line-height: 1.2;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    color: var(--accent-color);
    margin-bottom: 2rem;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-light);
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-cta {
    text-align: center;
    margin-top: 4rem;
}

/* ===================================
   Introduction Section
   =================================== */
/* ===================================
   Introduction Section - Luxury Design
   =================================== */
.intro-section {
    background: linear-gradient(180deg, #fafafa 0%, #ffffff 50%, #fafafa 100%);
    padding: 8rem 0;
    position: relative;
}

.intro-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 60px;
    background: linear-gradient(180deg, transparent, var(--accent-color), transparent);
}

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

.intro-ornament-top {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 2rem;
    opacity: 0.6;
    letter-spacing: 0.5em;
}

.intro-main-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 400;
    line-height: 1.2;
    color: var(--primary-color);
    margin-bottom: 2rem;
    letter-spacing: 0.02em;
}

.intro-subtitle-badge {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent-color);
    padding: 0.8rem 2.5rem;
    border: 2px solid var(--accent-color);
    border-radius: 30px;
    margin-bottom: 3rem;
    transition: var(--transition-smooth);
}

.intro-divider {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    margin: 3rem auto;
}

.intro-lead {
    font-family: var(--font-display);
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    font-weight: 400;
    line-height: 1.7;
    color: var(--primary-color);
    margin-bottom: 2.5rem;
    font-style: italic;
}

.intro-description {
    font-family: var(--font-body);
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 3rem;
}

.intro-ornament-bottom {
    font-size: 1.5rem;
    color: var(--accent-color);
    opacity: 0.4;
    letter-spacing: 0.3em;
    margin-top: 2rem;
}

/* ===================================
   Services Section
   =================================== */
.services-section {
    background: white;
}

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

.service-card {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--bg-light);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212,175,55,0.1), transparent);
    transition: left 0.6s ease;
}

.service-card:hover::before {
    left: 100%;
}

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

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-link {
    display: inline-block;
    font-weight: 500;
    color: var(--accent-color);
    letter-spacing: 0.05em;
    transition: var(--transition-fast);
}

.service-link:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

/* ===================================
   Collections Section
   =================================== */
.collections-section {
    background: white;
}

.collections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 3rem;
}

.collection-card {
    position: relative;
    overflow: hidden;
    background: var(--bg-light);
    transition: var(--transition-smooth);
}

.collection-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.collection-link {
    display: block;
}

.collection-image {
    position: relative;
    width: 100%;
    padding-top: 125%;
    overflow: hidden;
    background: var(--bg-light);
}

.collection-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.collection-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 5rem;
    color: var(--accent-color);
    background: var(--bg-light);
}

.collection-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 26, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.collection-card:hover .collection-overlay {
    opacity: 1;
}

.collection-view {
    color: white;
    font-size: 1rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: 1px solid white;
    padding: 0.8rem 2rem;
}

.collection-info {
    padding: 2rem;
}

.collection-info h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 500;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.collection-info p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ===================================
   Wedding Moment Section
   =================================== */
.wedding-moment {
    padding: 0;
    overflow: hidden;
    background: var(--bg-white);
}

.wedding-split {
    display: grid;
    grid-template-columns: 65% 35%;
    min-height: 70vh;
}

.wedding-image-side {
    position: relative;
    overflow: hidden;
}

.wedding-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 70vh;
}

.wedding-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.wedding-image-container:hover .wedding-image {
    transform: scale(1.05);
}

.wedding-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
        rgba(212, 175, 55, 0.08) 0%,
        transparent 50%,
        rgba(0, 0, 0, 0.15) 100%);
    pointer-events: none;
}

.wedding-content-side {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem;
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
}

.wedding-quote {
    text-align: center;
    max-width: 400px;
}

.quote-ornament {
    font-family: var(--font-display);
    font-size: 6rem;
    line-height: 1;
    color: var(--accent-color);
    opacity: 0.3;
    margin-bottom: -2rem;
}

.quote-text {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 2.5vw, 2.2rem);
    font-weight: 400;
    font-style: italic;
    line-height: 1.6;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.quote-author {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.quote-line {
    width: 60px;
    height: 2px;
    background: var(--accent-color);
    margin: 0 auto;
}

/* ===================================
   CTA Section
   =================================== */
.cta-section {
    background: var(--primary-color);
    color: white;
    text-align: center;
    padding: 6rem 2rem;
}

.cta-content h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: var(--primary-color);
    color: rgba(255,255,255,0.8);
    padding: 5rem 0 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: white;
    margin-bottom: 1rem;
}

.footer-section h4 {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.footer-tagline {
    font-style: italic;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.footer-links,
.footer-contact,
.footer-hours {
    list-style: none;
}

.footer-links li,
.footer-contact li,
.footer-hours li {
    margin-bottom: 0.8rem;
}

.footer-links a,
.footer-contact a {
    transition: var(--transition-fast);
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
}

.footer-bottom p {
    margin-bottom: 1rem;
}

.footer-legal {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 0.5rem;
}

.footer-legal a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s;
}

.footer-legal a:hover {
    color: var(--accent-color);
}

.footer-legal .separator {
    color: rgba(255,255,255,0.3);
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    transform: translateY(-3px);
}

.footer-social svg {
    width: 20px;
    height: 20px;
}

/* ===================================
   Flash Messages
   =================================== */
.flash-container {
    position: fixed;
    top: 100px;
    right: 2rem;
    z-index: 9999;
    max-width: 400px;
}

.flash-message {
    background: white;
    padding: 1rem 1.5rem;
    margin-bottom: 1rem;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    display: flex;
    justify-content: space-between;
    align-items: center;
    animation: slideInRight 0.3s ease;
}

.flash-success {
    border-left: 4px solid #4caf50;
}

.flash-error {
    border-left: 4px solid #f44336;
}

.flash-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-light);
    margin-left: 1rem;
}

@keyframes slideInRight {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* ===================================
   Cookie Info Banner - Professional
   =================================== */
.cookie-info {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    max-width: 480px;
    background: linear-gradient(135deg, #fdfcfb 0%, #faf9f7 100%);
    border-radius: 12px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15), 0 0 1px rgba(0, 0, 0, 0.1);
    z-index: 10000;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(212, 175, 55, 0.15);
}

.cookie-info.show {
    transform: translateY(0);
    opacity: 1;
}

.cookie-info-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
}

.cookie-icon {
    width: 24px;
    height: 24px;
    color: var(--accent-color);
    flex-shrink: 0;
}

.cookie-info-content p {
    flex: 1;
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-color);
    margin: 0;
}

.cookie-info-content a {
    color: var(--accent-color);
    text-decoration: none;
    border-bottom: 1px solid var(--accent-color);
    transition: all 0.3s;
    font-weight: 500;
}

.cookie-info-content a:hover {
    color: var(--secondary-color);
    border-bottom-color: var(--secondary-color);
}

.cookie-btn-ok {
    padding: 0.6rem 1.5rem;
    border: none;
    background: var(--accent-color);
    color: white;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.cookie-btn-ok:hover {
    background: var(--secondary-color);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.cookie-btn-ok:active {
    transform: translateY(0);
}

/* ===================================
   Ultra-Luxurious Page Headers
   =================================== */
.page-header {
    position: relative;
    min-height: 40vh;
    margin-top: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: #0a0a0a;
    overflow: hidden;
}

/* Animated gradient background */
.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 30% 40%, rgba(212, 175, 55, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 60%, rgba(139, 115, 85, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

/* Geometric lines decoration */
.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background:
        linear-gradient(0deg,
            rgba(212, 175, 55, 0.03) 0%,
            transparent 100%);
    pointer-events: none;
}

.page-header-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.page-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 5vw + 1rem, 7rem);
    font-weight: 300;
    color: white;
    letter-spacing: clamp(0.03em, 0.5vw, 0.15em);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    line-height: 1.2;
    word-break: break-word;
    max-width: 100%;
}

.page-title::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -80px;
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-color));
    transform: translateY(-50%);
}

.page-title::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -80px;
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, var(--accent-color), transparent);
    transform: translateY(-50%);
}

.page-subtitle {
    font-family: var(--font-body);
    font-size: clamp(0.7rem, 2vw, 1.1rem);
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
    letter-spacing: clamp(0.15em, 0.5vw, 0.3em);
    text-transform: uppercase;
    position: relative;
    padding-top: 0.5rem;
}

.page-subtitle::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg,
        transparent,
        rgba(212, 175, 55, 0.5) 50%,
        transparent);
}

/* Floating particles effect */
.page-header-ornament {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    overflow: hidden;
}

.page-header-ornament::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 10%;
    width: 400px;
    height: 400px;
    border: 1px solid rgba(212, 175, 55, 0.08);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.page-header-ornament::after {
    content: '';
    position: absolute;
    bottom: 10%;
    right: 10%;
    width: 300px;
    height: 300px;
    border: 1px solid rgba(212, 175, 55, 0.06);
    border-radius: 50%;
    animation: float 25s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.05);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.95);
    }
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    animation: bounce 2s infinite;
}

.scroll-indicator::after {
    content: '↓';
    font-size: 1.5rem;
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

/* Page Header Variants */
.page-header.compact {
    min-height: 50vh;
}

.page-header.with-image {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.page-header.with-image::before {
    background: rgba(10, 10, 10, 0.85);
}

@media (max-width: 1024px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 6rem 2rem 2rem;
        box-shadow: -5px 0 20px rgba(0,0,0,0.1);
        transition: right 0.3s ease;
    }

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

    /* Force black text in mobile menu (white background) */
    .nav-menu .nav-link {
        color: var(--primary-color) !important;
    }

    .nav-link {
        width: 100%;
        padding: 1rem 0;
        border-bottom: 1px solid var(--border-color);
    }

    .page-header {
        margin-top: 110px;
        min-height: 30vh;
    }

    .collections-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 2rem;
    }

    .wedding-split {
        grid-template-columns: 1fr;
    }

    .wedding-image-container {
        min-height: 50vh;
    }

    .wedding-content-side {
        padding: 3rem 2rem;
    }

    .intro-section {
        padding: 6rem 0;
    }

    .intro-main-title {
        font-size: 3rem;
    }

    .intro-lead {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    section {
        padding: 5rem 0;
    }

    .logo-image {
        height: 60px;
    }

    .page-header {
        margin-top: 90px;
        min-height: 30vh;
    }

    .hero-title-main {
        font-size: 3.5rem;
    }

    .hero-cta {
        flex-direction: column;
        gap: 1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .page-title::before,
    .page-title::after {
        width: 30px;
        left: -45px;
    }

    .page-title::after {
        right: -45px;
        left: auto;
    }

    .page-header-ornament::before,
    .page-header-ornament::after {
        width: 200px;
        height: 200px;
    }

    .cookie-info {
        bottom: 1rem;
        right: 1rem;
        left: 1rem;
        max-width: none;
    }

    .cookie-info-content {
        padding: 1.25rem;
        flex-wrap: wrap;
    }

    .cookie-info-content p {
        font-size: 0.85rem;
        flex-basis: 100%;
    }

    .cookie-btn-ok {
        margin-left: auto;
        padding: 0.5rem 1.25rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .nav-container {
        padding: 0 1rem;
    }

    .hero-title-main {
        font-size: 2.5rem;
    }

    .page-header {
        margin-top: 90px;
        min-height: 30vh;
    }

    .page-header-content {
        padding: 0 1.5rem;
    }

    .page-title::before,
    .page-title::after {
        display: none;
    }

    .intro-section {
        padding: 4rem 0;
    }

    .intro-ornament-top {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .intro-main-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .intro-subtitle-badge {
        font-size: 0.85rem;
        padding: 0.7rem 2rem;
    }

    .intro-divider {
        width: 60px;
        margin: 2rem auto;
    }

    .intro-lead {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .intro-description {
        font-size: 0.95rem;
    }

    .page-subtitle::before {
        width: 60px;
    }

    .scroll-indicator {
        display: none;
    }

    .page-header-ornament::before {
        width: 150px;
        height: 150px;
        top: 5%;
        left: -50px;
    }

    .page-header-ornament::after {
        width: 150px;
        height: 150px;
        bottom: 5%;
        right: -50px;
    }

    .wedding-image-container {
        min-height: 40vh;
    }

    .wedding-content-side {
        padding: 2.5rem 1.5rem;
    }

    .quote-ornament {
        font-size: 4rem;
        margin-bottom: -1rem;
    }

    .quote-text {
        font-size: 1.3rem;
    }

    .flash-container {
        right: 1rem;
        left: 1rem;
        max-width: none;
    }
}