/* ================================
   BASE & VARIABLES V2
================================ */

:root {
    --rosegold: #c69a8f;
    --rosegold-light: #e8d6d1;
    --sage-green: #9caf88;
    --cream: #faf7f3;
    --cream-dark: #f5f0eb;
    --text-dark: #2c2c2c;
    --text-light: #6d6d6d;
    --white: #ffffff;
    --gold: #e0c389;
    --shadow-soft: 0 4px 15px rgba(0,0,0,0.08);
    --shadow-medium: 0 8px 30px rgba(0,0,0,0.12);
    --shadow-strong: 0 15px 40px rgba(0,0,0,0.18);
    --gradient-rose: linear-gradient(135deg, #c69a8f 0%, #e8d6d1 100%);
    --gradient-sage: linear-gradient(135deg, #9caf88 0%, #b8ccaa 100%);
}

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

html {
    scroll-behavior: smooth;
}

/* ===============================
   FONTS GLOBAL – Style Mariage V2
================================ */
body {
    font-family: 'Lora', serif;
    font-size: 17px;
    font-weight: 400;
    color: var(--text-dark);
    background: var(--cream);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
}


/* ================================
   NAVBAR GLASSMORPHISM
================================ */

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(224, 195, 137, 0.2);
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
    z-index: 1000;
    height: 85px;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    height: 75px;
    box-shadow: 0 4px 25px rgba(0,0,0,0.1);
}

.nav-content {
    max-width: 1400px;
    margin: auto;
    padding: 1.2rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

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

.logo img {
    height: 130px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.1));
    transition: transform 0.4s ease;
}

.logo img:hover {
    transform: scale(1.05) rotate(-2deg);
}

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

.menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    position: relative;
    transition: color 0.3s ease;
}

.menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-rose);
    transition: width 0.4s ease;
}

.menu a:hover {
    color: var(--rosegold);
}

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

/* ================================
   MENU BURGER
================================ */

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

.menu-toggle span {
    width: 30px;
    height: 3px;
    background: var(--text-dark);
    margin: 4px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translateY(11px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-11px);
}

/* =============================
   HERO VIDEO SECTION V2
============================= */

.hero-video {
    position: relative;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-video-element {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(198, 154, 143, 0.75) 0%,
        rgba(156, 175, 136, 0.65) 100%
    );
    mix-blend-mode: multiply;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 2rem;
    animation: heroFadeIn 1.5s ease forwards;
}

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

.hero-badge {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50px;
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    animation: badgePulse 2s infinite ease-in-out;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.hero-title-modern {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.hero-line {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4.5rem;
    font-weight: 300;
    color: var(--white);
    line-height: 1.1;
    text-shadow: 2px 4px 8px rgba(0,0,0,0.3);
}

.hero-line-accent {
    font-family: 'Cormorant Garamond', serif;
    font-size: 5.5rem;
    font-weight: 600;
    font-style: italic;
    background: linear-gradient(135deg, #ffffff 0%, #e0c389 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
    filter: drop-shadow(2px 4px 6px rgba(0,0,0,0.3));
}

.hero-subtitle-modern {
    font-family: 'Lora', serif;
    font-size: 1.3rem;
    font-style: italic;
    color: var(--white);
    line-height: 1.8;
    margin-bottom: 3rem;
    text-shadow: 1px 2px 4px rgba(0,0,0,0.3);
}

.hero-cta-group {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem 2.5rem;
    background: var(--white);
    color: var(--text-dark);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.cta-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-rose);
    transition: left 0.5s ease;
    z-index: -1;
}

.cta-primary:hover::before {
    left: 0;
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.2);
    color: var(--white);
}

.cta-primary i {
    transition: transform 0.3s ease;
}

.cta-primary:hover i {
    transform: translateX(5px);
}

.cta-secondary {
    display: inline-flex;
    align-items: center;
    padding: 1.2rem 2.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: var(--white);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.05rem;
    transition: all 0.4s ease;
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* ================================
   SCROLL INDICATOR
================================ */

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    animation: scrollBounce 2s infinite ease-in-out;
}

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

.scroll-mouse {
    width: 28px;
    height: 45px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 20px;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: wheelScroll 1.5s infinite ease-in-out;
}

@keyframes wheelScroll {
    0%, 100% { opacity: 1; top: 8px; }
    50% { opacity: 0.3; top: 22px; }
}

.scroll-indicator p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ================================
   STATS SECTION
================================ */

.stats-section {
    padding: 5rem 2rem;
    background: var(--white);
    border-top: 1px solid rgba(224, 195, 137, 0.2);
    border-bottom: 1px solid rgba(224, 195, 137, 0.2);
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
}

.stat-card {
    text-align: center;
    padding: 2rem 1rem;
    background: linear-gradient(135deg, rgba(198, 154, 143, 0.05) 0%, rgba(156, 175, 136, 0.05) 100%);
    border-radius: 20px;
    border: 1px solid rgba(224, 195, 137, 0.15);
    transition: all 0.4s ease;
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
    background: linear-gradient(135deg, rgba(198, 154, 143, 0.1) 0%, rgba(156, 175, 136, 0.1) 100%);
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--rosegold);
    line-height: 1;
    margin-bottom: 0.5rem;
    display: inline-block;
}

.stat-percent {
    font-size: 2rem;
    color: var(--rosegold);
    margin-left: 5px;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ================================
   SECTIONS MODERNES
================================ */

.section {
    padding: 7rem 2rem;
}

.section-modern {
    background: linear-gradient(to bottom, var(--cream) 0%, var(--white) 100%);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem auto;
}

.section-label {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--gradient-rose);
    color: var(--white);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.section-title-modern {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 500;
}

.section-description {
    font-size: 1.15rem;
    color: var(--text-light);
    font-style: italic;
    line-height: 1.6;
}

/* ================================
   COLLECTION GRID MODERNE
================================ */

.collection-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: auto;
}

.collection-card-modern {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all 0.5s ease;
    border: 1px solid rgba(224, 195, 137, 0.15);
}

.collection-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-strong);
}

.card-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 400px;
}

.card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.collection-card-modern:hover .card-image-wrapper img {
    transform: scale(1.08);
    filter: brightness(1.05);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.15) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

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

.card-content {
    padding: 2rem;
    text-align: center;
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    filter: grayscale(0.3);
}

.card-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.card-content p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1rem;
}

/* ================================
   SECTIONS (Legacy support)
================================ */

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--rosegold);
}

/* ================================
   COLLECTION & SERVICES GRID (Legacy)
================================ */

.collection-grid,
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: auto;
}

.collection-card,
.service-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(224, 195, 137, 0.3);
    box-shadow: var(--shadow-soft); 
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.collection-card:hover,
.service-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-medium);
    border-color: rgba(224, 195, 137, 0.6);
}

.collection-card img,
.service-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), filter 0.6s ease;
}

.collection-card:hover img,
.service-card:hover img {
    transform: scale(1.08);
    filter: brightness(1.05);
}

.collection-card h3,
.service-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    padding: 1.5rem 1.5rem 0.8rem 1.5rem;
    color: var(--text-dark);
    transition: color 0.3s ease;
}

.collection-card:hover h3,
.service-card:hover h3 {
    color: var(--rosegold);
}

.collection-card p,
.service-card p {
    padding: 0 1.5rem 1.8rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* ================================
   A PROPOS - DESIGN MODERNE
================================ */

.apropos-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.apropos-card {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    padding: 3rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(224, 195, 137, 0.2);
}

.apropos-card:hover {
    box-shadow: 0 20px 60px rgba(198, 154, 143, 0.25);
    transform: translateY(-5px);
    border-color: rgba(224, 195, 137, 0.4);
}

.apropos-image-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.apropos-photo {
    width: 100%;
    max-width: 300px;
    aspect-ratio: 1;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(198, 154, 143, 0.3);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 3px solid rgba(224, 195, 137, 0.3);
}

.apropos-photo:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 40px rgba(198, 154, 143, 0.4);
    border-color: var(--gold);
}

.apropos-badge {
    margin-top: 1.5rem;
    background: linear-gradient(135deg, var(--rosegold), var(--gold));
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(198, 154, 143, 0.3);
}

.apropos-badge i {
    font-size: 1rem;
}

.apropos-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.apropos-name {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.apropos-role {
    font-size: 1.1rem;
    color: var(--rosegold);
    font-weight: 500;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.apropos-description {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 2rem;
}

.apropos-description p {
    margin-bottom: 1rem;
}

.apropos-description strong {
    color: var(--text-dark);
    font-weight: 600;
}

.apropos-qualities {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: auto;
}

.quality-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(224, 195, 137, 0.1), rgba(198, 154, 143, 0.1));
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid rgba(224, 195, 137, 0.2);
}

.quality-item:hover {
    background: linear-gradient(135deg, rgba(224, 195, 137, 0.2), rgba(198, 154, 143, 0.2));
    transform: translateY(-3px);
    border-color: var(--gold);
}

.quality-item i {
    font-size: 1.5rem;
    color: var(--rosegold);
}

.quality-item span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    text-align: center;
}

/* Responsive À propos */
@media (max-width: 768px) {
    .apropos-card {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
        text-align: center;
    }
    
    .apropos-image-wrapper {
        order: -1;
    }
    
    .apropos-photo {
        max-width: 220px;
    }
    
    .apropos-qualities {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* ================================
   CONTACT SECTION (fond)
================================ */
.contact-section {
    background: var(--rosegold-light);
    padding-bottom: 4rem;
}

/* ================================
   WRAPPER (Form + Business Card)
================================ */
.contact-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

/* ================================
   FORMULAIRE DE CONTACT
================================ */
.contact-form {
    flex: 1;
    min-width: 350px;
    max-width: 700px;
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid rgba(224, 195, 137, 0.3);
    box-shadow: var(--shadow-soft);
    transition: all 0.4s ease;
}

.contact-form:hover {
    box-shadow: var(--shadow-medium);
    border-color: rgba(224, 195, 137, 0.5);
}

.form-group {
    margin-bottom: 1.5rem;
}

label {
    font-weight: 500;
    display: block;
    margin-bottom: 0.4rem;
}

input,
textarea,
select {
    width: 100%;
    padding: 0.8rem;
    border-radius: 6px;

    /* Bordure gold élégant */
    border: 1px solid rgba(224, 195, 137, 0.85);

    /* Police mariage */
    font-family: 'Lora', serif !important;
    font-style: italic;
    font-size: 1rem;

    /* Fond doux */
    background-color: #ffffff;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

/* Hauteur du message */
textarea {
    height: 160px;
}

/* Effet focus premium */
input:focus,
textarea:focus,
select:focus {
    border-color: rgba(224, 195, 137, 1);
    box-shadow: 0 0 8px rgba(224, 195, 137, 0.5);
    outline: none;
}


/* ================================
   BUSINESS CARD (carte de visite)
================================ */
.business-card {
    width: 320px;
    background: var(--white);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    border: 1px solid rgba(224, 195, 137, 0.3);
    box-shadow: var(--shadow-soft);
    transition: all 0.4s ease;
}

.business-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: rgba(224, 195, 137, 0.6);
}

.card-logo {
    width: 90px;
    margin-bottom: 1rem;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.10));
}

.card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.7rem;
    color: var(--rosegold);
    margin-bottom: 0.3rem;
}

.card-subtitle {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

/* Texte + icônes */
.card-info p {
    margin: 0.5rem 0;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.card-info i {
    margin-right: 8px;
    color: var(--rosegold);
}

/* ================================
   Liens cliquables dans la carte
================================ */
.card-info a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s ease;
}

.card-info a:hover {
    color: var(--rosegold);
}

/* ================================
   SOCIAL ICONS
================================ */
.card-socials {
    margin-top: 1.3rem;
    display: flex;
    justify-content: center;
    gap: 1.2rem;
}

.card-socials a {
    font-size: 1.5rem;
    color: var(--rosegold);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(198, 154, 143, 0.08);
}

.card-socials a:hover {
    color: var(--white);
    background: var(--gradient-rose);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 5px 15px rgba(198, 154, 143, 0.3);
}

/* ================================
   RESPONSIVE
================================ */
@media (max-width: 900px) {

    .contact-wrapper {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .business-card {
        margin-top: 2rem;
    }
}


/* ================================
   FOOTER
================================ */

.footer {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, var(--text-dark) 0%, #1a1a1a 100%);
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-rose);
}

.footer p {
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.footer a {
    color: var(--rosegold);
    text-decoration: none;
    margin: 0 10px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.footer a:hover {
    color: var(--gold);
    text-decoration: underline;
}

/* ================================
   Email.js overrides
================================ */ 
.form-status {
    margin-top: 1rem;
    font-family: 'Lora', serif;
    font-style: italic;
    font-size: 1rem;
    text-align: center;
    transition: opacity 1s ease;
}

/* ================================
   BOUTON CTA LEGACY
================================ */ 

.cta-button {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 2rem;
    background-color: var(--rosegold);
    color: var(--white);
    border-radius: 4px;
    text-decoration: none;
    transition: 0.3s;
    border: 1px solid rgba(224, 195, 137, 0.85);
}

.cta-button:hover {
    background-color: var(--rosegold-light);
    color: var(--text-dark);
}

/* ================================
   CUSTOM CURSOR (Desktop only)
================================ */

.custom-cursor,
.cursor-follower {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    transition: width 0.3s ease, height 0.3s ease, opacity 0.3s ease;
}

.custom-cursor {
    background: var(--rosegold);
    mix-blend-mode: difference;
}

.cursor-follower {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(198, 154, 143, 0.5);
    background: transparent;
    margin-left: -20px;
    margin-top: -20px;
}

.cursor-hover.custom-cursor {
    width: 20px;
    height: 20px;
    margin-left: -10px;
    margin-top: -10px;
}

.cursor-hover.cursor-follower {
    width: 60px;
    height: 60px;
    margin-left: -30px;
    margin-top: -30px;
    border-color: var(--sage-green);
}

/* ================================
   SCROLL TO TOP BUTTON
================================ */

.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-rose);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: var(--shadow-medium);
    opacity: 0;
    visibility: hidden;
    transform: translateY(100px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-strong);
}

.scroll-to-top:active {
    transform: translateY(-2px) scale(0.95);
}

/* ================================
   LOADING STATE
================================ */

body:not(.loaded) {
    overflow: hidden;
}

body.loaded .hero-video,
body.loaded .hero-content {
    animation: fadeInUp 1s ease forwards;
}

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