/* Reset et base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-gold: #d9cbc0;
    --dark-gold: #eec6a6;
    --light-gold: #F4E4BC;
    --charcoal: #2C3E50;
    --white: #FFFFFF;
    --light-gray: #F8F9FA;
    --shadow: rgba(0, 0, 0, 0.1);
    --shadow-dark: rgba(0, 0, 0, 0.2);
}

/* Preloader sophistiqué */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.preloader-content {
    text-align: center;
    z-index: 10002;
    position: relative;
}

.logo-animation {
    margin-bottom: 60px;
}

.logo-letters {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.letter {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    font-weight: 700;
    color: var(--primary-gold);
    opacity: 0;
    transform: translateY(100px) rotateX(90deg);
    animation: letterReveal 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    text-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.letter:nth-child(1) { animation-delay: 0.2s; }
.letter:nth-child(2) { animation-delay: 0.4s; }
.letter:nth-child(3) { animation-delay: 0.6s; }

@keyframes letterReveal {
    0% {
        opacity: 0;
        transform: translateY(100px) rotateX(90deg) scale(0.5);
    }
    50% {
        opacity: 0.7;
        transform: translateY(-20px) rotateX(0deg) scale(1.1);
    }
    100% {
        opacity: 1;
        transform: translateY(0) rotateX(0deg) scale(1);
    }
}

.logo-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    color: var(--white);
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeInUp 1s ease-out 1.2s forwards;
}

.loading-progress {
    margin-top: 40px;
}

.progress-bar {
    width: 300px;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin: 0 auto 20px;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-gold), var(--dark-gold));
    border-radius: 10px;
    width: 0%;
    transition: width 0.3s ease;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.loading-percentage {
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 2px;
}

/* Particules flottantes */
.preloader-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-gold);
    border-radius: 50%;
    opacity: 0.6;
    animation: particleFloat 8s infinite linear;
}

.particle:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
    animation-duration: 6s;
}

.particle:nth-child(2) {
    left: 20%;
    animation-delay: 1s;
    animation-duration: 8s;
}

.particle:nth-child(3) {
    left: 30%;
    animation-delay: 2s;
    animation-duration: 7s;
}

.particle:nth-child(4) {
    left: 60%;
    animation-delay: 1.5s;
    animation-duration: 9s;
}

.particle:nth-child(5) {
    left: 80%;
    animation-delay: 0.5s;
    animation-duration: 6.5s;
}

.particle:nth-child(6) {
    left: 90%;
    animation-delay: 2.5s;
    animation-duration: 8.5s;
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
        transform: translateY(90vh) scale(1);
    }
    90% {
        opacity: 0.6;
        transform: translateY(-10vh) scale(1);
    }
    100% {
        transform: translateY(-20vh) scale(0);
        opacity: 0;
    }
}

/* Effet rideau */
.curtain-reveal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    pointer-events: none;
}

.curtain {
    position: absolute;
    top: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    transition: transform 1.5s cubic-bezier(0.77, 0, 0.175, 1);
}

.curtain-left {
    left: 0;
    transform: translateX(0);
}

.curtain-right {
    right: 0;
    transform: translateX(0);
}

/* Animation de sortie du preloader */
.preloader.fade-out {
    opacity: 0;
    transition: opacity 0.8s ease-out;
}

.curtain-reveal.open .curtain-left {
    transform: translateX(-100%);
}

.curtain-reveal.open .curtain-right {
    transform: translateX(100%);
}

/* Masquer le contenu pendant le chargement */
body.loading {
    overflow: hidden;
}

body.loading .navbar,
body.loading .hero,
body.loading main {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease-out;
}

/* Révélation du contenu */
body.loaded .navbar,
body.loaded .hero,
body.loaded main {
    opacity: 1;
    transform: translateY(0);
}

body.loaded .navbar {
    transition-delay: 0s;
}

body.loaded .hero {
    transition-delay: 0s;
}

body.loaded main {
    transition-delay: 0s;
}

/* Animations de révélation au scroll */
.reveal-section {
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-section.animate-in {
    opacity: 1;
    transform: translateY(0);
    transition-delay: var(--delay, 0s);
}

.reveal-card {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-card.animate-in {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition-delay: var(--delay, 0s);
}

/* Animations de révélation au scroll */

/* Section Propriétaires */
.owners {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.owners-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.owners-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

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

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

.owners-text {
    padding: 40px;
}

.owners-text .section-header h2 {
    font-size: 3.5rem;
    font-weight: 300;
    color: #2c3e50;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.owners-text .subtitle {
    font-size: 1.2rem;
    color: #8b9dc3;
    font-weight: 500;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.owners-story p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
}

.owners-signature {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
}

.owners-signature p {
    font-size: 1.3rem;
    color: #8b9dc3;
    font-style: italic;
    margin-bottom: 20px;
}

.signatures span {
    font-size: 1.1rem;
    color: #2c3e50;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
}

/* Responsive */
@media (max-width: 768px) {
    .owners {
        padding: 80px 0;
    }
    
    .owners-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .owners-image {
        order: -1;
    }
    
    .owners-image img {
        height: 400px;
    }
    
    .owners-text {
        padding: 20px;
    }
    
    .owners-text .section-header h2 {
        font-size: 2.5rem;
    }
}

/* Animation spéciale pour les lettres du logo */
@keyframes logoGlow {
    0%, 100% {
        text-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    }
    50% {
        text-shadow: 0 10px 40px rgba(212, 175, 55, 0.6), 0 0 20px rgba(212, 175, 55, 0.4);
    }
}

.letter {
    animation: letterReveal 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards,
               logoGlow 3s ease-in-out 2s infinite;
}

/* Effet de morphing sur les particules */
@keyframes particleMorph {
    0%, 100% {
        border-radius: 50%;
        transform: translateY(100vh) scale(0) rotate(0deg);
    }
    25% {
        border-radius: 30%;
        transform: translateY(75vh) scale(1) rotate(90deg);
    }
    50% {
        border-radius: 0%;
        transform: translateY(50vh) scale(1.2) rotate(180deg);
    }
    75% {
        border-radius: 30%;
        transform: translateY(25vh) scale(1) rotate(270deg);
    }
}

.particle:nth-child(odd) {
    animation: particleMorph 8s infinite linear;
}

/* Animation de pulsation pour la barre de progression */
@keyframes progressPulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
    }
    50% {
        box-shadow: 0 0 30px rgba(212, 175, 55, 0.8), 0 0 40px rgba(212, 175, 55, 0.3);
    }
}

.progress-fill {
    animation: progressPulse 2s ease-in-out infinite;
}

/* Animation d'entrée GSAP */
.entrance-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 10000;
    background: #111;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 10vw;
    opacity: 1;
    transform: translateX(0);
    transition: transform 1.2s cubic-bezier(0.77, 0, 0.175, 1);
}

.entrance-animation.swipe-out {
    transform: translateX(-100%);
}

/* Animation d'entrée style DaFabio - Volets qui swipent de gauche à droite */
.entrance-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 20000;
    display: none;
    pointer-events: none;
}

.entrance-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fdf2e9;
    transform: translateX(0);
    transition: transform 1.2s cubic-bezier(0.77, 0, 0.175, 1);
}

.entrance-overlay.swipe-out::before {
    transform: translateX(100%);
}

/* Animation supprimée pour éviter les conflits avec l'overlay */


.entrance-animation h2 {
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    margin: 2rem auto;
    font-size: clamp(4rem, 8vw, 12rem);
    text-align: center;
    z-index: 999;
    max-width: 800px;
    mix-blend-mode: difference;
    pointer-events: none;
    color: white;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: grid;
    place-items: center;
    text-shadow: 0 0 50px rgba(212, 175, 55, 0.5);
}

.entrance-animation .gallery {
    z-index: 1;
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    overflow: visible;
}

@media (max-width: 768px) {
    .entrance-animation .gallery {
        width: 160%;
    }
}

.entrance-animation .col {
    display: flex;
    flex: 1;
    flex-direction: column;
    width: 100%;
    align-self: flex-start;
    justify-self: flex-start;
}

.entrance-animation .col:nth-child(2) {
    align-self: flex-end;
    justify-self: flex-end;
}

.entrance-animation .image {
    width: 100%;
    filter: saturate(0);
    padding: 1rem;
    will-change: transform;
    transform: translateZ(0);
}

.entrance-animation .image:hover {
    z-index: 99999999999 !important;
    filter: saturate(1);
}

.entrance-animation .image img {
    transition: 0.3s ease-out;
    overflow: hidden;
    box-shadow: 0 2.8px 2.2px #fdf2e9,
        0 6.7px 5.3px rgba(0, 0, 0, 0.048), 0 12.5px 10px rgba(0, 0, 0, 0.06),
        0 22.3px 17.9px rgba(0, 0, 0, 0.072), 0 41.8px 33.4px rgba(0, 0, 0, 0.086),
        0 100px 80px rgba(0, 0, 0, 0.12);
    width: 100%;
    border-radius: 8px;
    will-change: transform;
    backface-visibility: hidden;
    transform: translateZ(0);
}



/* Vidéo hero */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-video-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(8, 31, 28, 0.8) 0%, 
        rgba(212, 175, 55, 0.1) 50%, 
        rgba(8, 31, 28, 0.9) 100%
    ),
    url('https://images.unsplash.com/photo-1519741497674-611481863552?w=1920&h=1080&fit=crop') center/cover;
    animation: subtleZoom 20s ease-in-out infinite alternate;
    z-index: 0;
}

@keyframes subtleZoom {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.05);
    }
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--charcoal);
    background-color: #ffffff;
    overflow-x: hidden;
}

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

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

/* Vidéo Background Globale */
.global-video-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    background-image: url('https://images.unsplash.com/photo-1519167758481-83f550bb49b3?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80');
    background-size: cover;
    background-position: center;
}

.global-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.4), rgba(212, 175, 55, 0.2));
    z-index: 2;
    pointer-events: none;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    background: transparent;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    position: relative;
    z-index: 1001;
}

.nav-logo h1 {
    font-size: 2rem;
    color: var(--primary-gold);
    margin-bottom: -5px;
}

.nav-logo span {
    font-size: 0.8rem;
    color: var(--charcoal);
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--charcoal);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: var(--primary-gold);
}

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

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

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--charcoal);
    margin: 3px 0;
    transition: 0.3s;
}

/* Structure pour animation scroll */
.page-wrapper {
    scroll-snap-type: y mandatory;
}

.hero-wrapper {
    margin-bottom: -100vh;
    position: relative;
}

.spacer {
    height: 100vh;
}

.main-wrapper {
    position: relative;
    z-index: 15;
    scroll-snap-align: start;
}

html {
    scroll-behavior: smooth;
}

/* Section Hero avec nouveau layout */
.hero {
    height: 100vh;
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 0;
    transform-origin: center center;
}

.hero-main {
    height: 100%;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    padding-inline: clamp(1rem, 5%, 4rem);
    background-color: #fdf2e9;
    position: relative;
}

.hero-main::after {
    position: absolute;
    right: 0;
    content: "";
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(253, 242, 233, 0.76), rgba(253, 242, 233, 0.79)), url('chateau-de-la-fontaine.jpg') no-repeat 30% 50%/cover;
    z-index: -1;
}

@media screen and (min-width: 53.75rem) {
    .hero-main::after {
        width: 60%;
        background: linear-gradient(to right, rgba(253, 242, 233, 0.17), rgba(0, 0, 0, 0.08)), url('chateau-de-la-fontaine.jpg') no-repeat 77% 50%/cover;
    }
}

.hero-header,
.hero-footer {
    grid-column: span 12;
}

.hero-header {
    padding: 0 clamp(1.5rem, 5%, 3.5rem);
    align-self: center;
    padding-block: min(30vh, 3rem);
    margin-top: 10rem;
}

.hero-header h1 {
    font-size: clamp(2.375rem, 1.3825rem + 4.9624vw, 6.5rem);
    font-weight: 500;
    line-height: 1.1;
    color: var(--charcoal);
    font-family: 'Playfair Display', serif;
}

.hero-header a {
    display: inline-flex;
    align-items: center;
    font-weight: 700;
    margin-top: 1.4em;
    font-size: 1rem;
    color: var(--charcoal);
    text-decoration: none;
    transition: color 0.3s ease;
}

@media screen and (min-width: 37.5rem) {
    .hero-header a {
        font-size: 1.1rem;
    }
}

.hero-header a:hover {
    color: var(--primary-gold);
}

.hero-header a i {
    display: grid !important;
    place-items: center;
    background: var(--primary-gold);
    color: #ffffff;
    width: 2.188rem;
    height: 2.188rem;
    border-radius: 50%;
    margin-right: 0.625em;
}

@media screen and (min-width: 37.5rem) {
    .hero-header a i {
        width: 2.5rem;
        height: 2.5rem;
    }
}

.hero-header a:hover i {
    background: var(--charcoal);
}

.hero-footer {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 0 0 2.5em 0;
    flex-direction: column;
    row-gap: 2.63em;
}

@media screen and (min-width: 53.75rem) {
    .hero-footer {
        flex-direction: row;
        justify-content: space-between;
    }
}

@media screen and (min-width: 60.5rem) {
    .hero-footer {
        padding: 3.125em 0 3.125em 3.5em;
    }
}

.hero-footer .arrows {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    position: relative;
    z-index: 10;
    order: 1;
}

.hero-footer .arrows i {
    font-size: 1.3rem;
    cursor: pointer;
    color: var(--charcoal);
    transition: color 0.3s ease;
}

.hero-footer .arrows i:hover {
    color: var(--primary-gold);
}

.hero-footer .idea {
    display: flex;
    justify-content: center;
    position: relative;
    flex-direction: column;
    bottom: 0;
    left: 0;
    right: 0;
    order: 2;
    box-shadow: 0px 0.563rem 1.25rem rgba(0, 0, 0, 0.13);
}

@media screen and (min-width: 25rem) {
    .hero-footer .idea {
        flex-direction: row;
    }
}

@media screen and (min-width: 53.75rem) {
    .hero-footer .idea {
        position: absolute;
        justify-content: initial;
        max-height: 8.125rem;
        box-shadow: none;
    }
}

.hero-footer .idea .img-container {
    display: flex;
    margin-left: auto;
    overflow: hidden;
    aspect-ratio: 3/2;
    width: 100%;
    height: 100%;
}

@media screen and (min-width: 53.75rem) {
    .hero-footer .idea .img-container {
        width: 12.813rem;
    }
}

.hero-footer .idea .img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    object-position: 50% 75%;
    transition: 0.3s ease-in-out;
}

.hero-footer .idea .img-container:hover img {
    transform: scale(1.1);
}

@media screen and (min-width: 53.75rem) {
    .hero-footer .idea > div {
        flex-basis: 40%;
    }
}

.hero-footer .idea .left-col {
    text-align: right;
}

.hero-footer .idea .right-col {
    background: rgba(231, 236, 240, 0.41);
    display: grid;
    align-content: center;
    padding: 1.25em;
    max-width: 24.375em;
}

@media screen and (min-width: 60.5rem) {
    .hero-footer .idea .right-col {
        padding: 2.5em;
    }
}

.hero-footer .idea .right-col a {
    font-size: 1rem;
    font-weight: 600;
    color: var(--charcoal);
    text-decoration: none;
    transition: color 0.3s ease;
}

@media screen and (min-width: 60.5rem) {
    .hero-footer .idea .right-col a {
        font-size: 1.2rem;
    }
}

.hero-footer .idea .right-col a:hover {
    text-decoration: underline;
    color: var(--primary-gold);
}

.hero-footer .idea .right-col a span {
    font-weight: 800;
}

.hero-footer .icons {
    display: flex;
    align-items: center;
    gap: 0.938em;
    position: relative;
    z-index: 10;
    order: 3;
}

.hero-footer .icons i {
    font-size: 1.1rem;
    cursor: pointer;
    color: var(--charcoal);
    transition: color 0.3s ease;
}

.hero-footer .icons i:hover {
    color: var(--primary-gold);
}

.heading-primary {
    font-size: 3.5rem;
    color: #333;
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 1.05;
    margin-bottom: 2.5rem;
    font-family: 'Playfair Display', serif;
}

.hero-description {
    font-size: 1.4rem;
    line-height: 1.5;
    margin-bottom: 3rem;
    color: #555;
}

.hero-img-box {
    grid-column: 2/3;
    grid-row: 1 / 3;
}

.hero-img {
    width: 100%;
}

.btn:link,
.btn:visited {
    display: inline-block;
    font-size: 1.4rem;
    font-weight: 600;
    font-family: inherit;
    border: none;
    cursor: pointer;
    border-radius: 9px;
    padding: 1.2rem 2.4rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn--fill:link,
.btn--fill:visited {
    background-color: var(--primary-gold);
    color: #fff;
}

.btn--outline:link,
.btn--outline:visited {
    color: #555;
    background-color: #fff;
    border: 2px solid var(--primary-gold);
}

.btn--fill:hover,
.btn--fill:active {
    background-color: var(--dark-gold);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

.btn--outline:hover,
.btn--outline:active {
    background-color: var(--light-gold);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
}

.margin-right-btn {
    margin-right: 1.8rem;
}

.delivered-meals {
    display: flex;
    align-items: center;
    gap: 2.4rem;
}

.delivered-imgs img {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    margin-right: -1.2rem;
    border: 3px solid #fdf2e9;
    object-fit: cover;
}

.delivered-text {
    font-size: 1.4rem;
    font-weight: 600;
    color: #555;
}

.delivered-text span {
    color: var(--primary-gold);
    font-weight: 700;
}

/* Hero Section vidéo */
.hero-video-section {
    height: 100vh;
    position: relative;
    overflow: hidden;
    background: transparent;
    transform-origin: center center;
}


.hero-content {
    position: relative;
    z-index: 3;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 2rem;
}

.hero-text {
    text-align: center;
    color: var(--white);
    z-index: 1003;
    animation: fadeInUp 1s ease-out both;
}

.hero-text h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-text p {
    font-size: 1.3rem;
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out 0.3s both;
}


.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--white);
    z-index: 1004;
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: var(--white);
    margin: 0 auto 10px;
    animation: scrollPulse 2s infinite;
}

.scroll-indicator span {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.scroll-indicator a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.scroll-indicator a:hover {
    color: var(--primary-gold);
}

/* Introduction */
.introduction {
    padding: 120px 0;
    background: #ffffff;
}

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

.intro-text h2 {
    font-size: 3rem;
    color: var(--dark-gray);
    margin-bottom: 2rem;
}

.lead {
    font-size: 1.2rem;
    color: var(--primary-gold);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.intro-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #E0E0E0;
    line-height: 1.8;
}

.stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
}

.stat {
    text-align: center;
}

.stat .number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-gold);
    font-family: 'Playfair Display', serif;
}

.stat .label {
    font-size: 0.9rem;
    color: var(--dark-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.intro-image {
    position: relative;
}

.intro-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 20px 40px var(--shadow);
}

/* Sections communes */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    font-size: 3rem;
    color: var(--charcoal);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: #888;
    max-width: 600px;
    margin: 0 auto;
}

/* Galerie */
.gallery {
    background: var(--white);
    padding: 100px 0;
}

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

.venue-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.venue-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px var(--shadow-dark);
}

.venue-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.venue-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.venue-card:hover .venue-image img {
    transform: scale(1.1);
}

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

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

.btn-discover {
    background: var(--primary-gold);
    color: var(--white);
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-discover:hover {
    background: var(--dark-gold);
    transform: scale(1.05);
}

.venue-info {
    padding: 30px;
}

.venue-info h3 a {
    font-size: 1.5rem;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
    text-decoration: none;
}

.venue-location {
    color: var(--primary-gold);
    font-weight: 500;
    margin-bottom: 1rem;
}

.venue-location i {
    margin-right: 5px;
}

.venue-info p {
    color: #777;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.venue-features {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.venue-features span {
    background: var(--dark-gold);
    color: #fff;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
}

.venue-features i {
    margin-right: 5px;
    color: #fff;
}

/* Services */
.services {
    background: var(--light-gray);
    padding: 100px 0;
}

.services-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin-top: 60px;
}

.services-main {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-item {
    display: flex;
    gap: 30px;
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px var(--shadow-dark);
}

.service-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-gold);
    font-family: 'Playfair Display', serif;
    line-height: 1;
    min-width: 80px;
}

.service-details h3 {
    font-size: 1.8rem;
    color: var(--charcoal);
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.service-details p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.service-features span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--light-gold);
    color: var(--charcoal);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.service-features i {
    font-size: 0.8rem;
    color: var(--primary-gold);
}

.services-secondary {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.service-card-small {
    background: var(--white);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card-small:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px var(--shadow-dark);
}

.service-card-small h4 {
    font-size: 1.1rem;
    color: var(--charcoal);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-card-small h4 i {
    color: var(--primary-gold);
    font-size: 1rem;
}

.service-card-small p {
    color: #777;
    line-height: 1.5;
    font-size: 0.9rem;
}

/* Actualités */
.news {
    background: var(--light-gray);
    padding: 100px 0;
}

.news-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 30px;
    margin-bottom: 60px;
}

.news-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px var(--shadow-dark);
}

.news-card.featured {
    grid-row: span 2;
}

.news-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.news-card.featured .news-image {
    height: 300px;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.news-date {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-gold);
    color: var(--white);
    padding: 10px;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    min-width: 60px;
}

.news-date .day {
    display: block;
    font-size: 1.5rem;
    line-height: 1;
}

.news-date .month {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.news-content {
    padding: 25px;
}

.news-card.featured .news-content {
    padding: 35px;
}

.news-category {
    display: inline-block;
    background: var(--light-gold);
    color: var(--charcoal);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.news-content h3 {
    font-size: 1.3rem;
    color: var(--charcoal);
    margin-bottom: 15px;
    line-height: 1.3;
}

.news-card.featured .news-content h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.news-content p {
    color: #777;
    line-height: 1.6;
    margin-bottom: 20px;
}

.nav-menu a {
    color: #fff;
    font-size: 0.8rem;
    text-decoration: none;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary-gold);
}

.news-link {
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.news-link:hover {
    color: var(--dark-gold);
    gap: 12px;
}

.news-link i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.news-link:hover i {
    transform: translateX(3px);
}

.news-cta {
    text-align: center;
}

.btn-news {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
    color: var(--white);
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.btn-news:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
}

.gallery-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: start;
}

.gallery-header {
    position: sticky;
    top: 120px;
}

.gallery-header h2 {
    font-size: 3rem;
    color: var(--charcoal);
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
    line-height: 1.2;
}

.gallery-header p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 40px;
}


.gallery-grid-container {
    position: relative;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    height: 280px;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: var(--white);
    padding: 30px 20px 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    font-family: 'Playfair Display', serif;
}

.gallery-overlay p {
    font-size: 0.9rem;
    opacity: 0.8;
}

.gallery-cta {
    text-align: center;
    margin-top: 40px;
}

.btn-gallery {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
    color: var(--white);
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.btn-gallery:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
}

.btn-gallery i {
    transition: transform 0.3s ease;
}

.btn-gallery:hover i {
    transform: translateX(3px);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--white);
    padding: 30px 20px 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.gallery-overlay p {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Témoignages */
.testimonials {
    background: var(--cream);
    padding: 100px 0;
}

.testimonials-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonial {
    display: none;
    text-align: center;
}

.testimonial.active {
    display: block;
    animation: fadeIn 0.5s ease-in-out;
}

.testimonial-content p {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--charcoal);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h4 {
    color: var(--primary-gold);
    font-size: 1.1rem;
}

.testimonial-author span {
    color: #666;
    font-size: 0.9rem;
}

/* Contact */
.contact {
    background: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-info h2 {
    font-size: 2.5rem;
    color: var(--charcoal);
    margin-bottom: 1rem;
}

.contact-details {
    margin-top: 3rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-item i {
    color: var(--primary-gold);
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.contact-item h4 {
    color: var(--charcoal);
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #777;
    line-height: 1.6;
}

.contact-form {
    background: var(--light-gray);
    padding: 40px;
    border-radius: 15px;
}

.form-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.form-group.full {
    flex-direction: column;
}

.form-group input,
.form-group select,
.form-group textarea {
    flex: 1;
    padding: 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
}

.btn-submit {
    background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
    color: var(--white);
    border: none;
    padding: 15px 40px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

/* Footer */
.footer {
    background: #dbcbbe;
    color: var(--white);
    padding: 60px 0 20px;
}

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

.footer-logo h3 {
    color: var(--primary-gold);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.footer-logo p {
    color: #fff;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--primary-gold);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--dark-gold);
    transform: translateY(-2px);
}

.footer-section h4 {
    color: #fff;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-gold);
}

.footer-section ul li i {
    margin-right: 0.5rem;
    color: var(--primary-gold);
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 20px;
    text-align: center;
    color: #ccc;
}

.footer-bottom a {
    color: var(--primary-gold);
    text-decoration: none;
}

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

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

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

/* Responsive */
@media (max-width: 768px) {
    .services-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .service-item {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .service-number {
        font-size: 2.5rem;
    }
    
    .service-features {
        justify-content: center;
    }
    
    .services-secondary {
        grid-template-columns: 1fr;
    }
    
    .gallery-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .gallery-header {
        position: static;
        text-align: center;
    }
    
    .gallery-header h2 {
        font-size: 2.5rem;
    }
    
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 20px;
    }
    
    .news-card.featured {
        grid-row: span 1;
    }
    
    .news-card.featured .news-image {
        height: 200px;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        backdrop-filter: blur(15px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        z-index: 1005;
    }

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

    .nav-toggle {
        display: flex;
    }

    .slide-content h1 {
        font-size: 2.5rem;
    }

    .slide-content p {
        font-size: 1.1rem;
    }

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

    .intro-text h2 {
        font-size: 2.2rem;
    }

    .stats {
        gap: 1.5rem;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

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

    .form-group {
        flex-direction: column;
    }

}

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

    section {
        padding: 60px 0;
    }

    .slide-content h1 {
        font-size: 2rem;
    }

    .intro-text h2 {
        font-size: 1.8rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .venues-grid,
    .services-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

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