/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Optimisation GPU pour animations */
.space-item,
.service-card,
.event-image,
.preview-item,
.stat-item,
.gallery-item {
    transform: translateZ(0);
    will-change: transform;
    backface-visibility: hidden;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
    overflow-x: hidden;
}

/* Navigation moderne */
.modern-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    z-index: 9999;
    padding: 1rem 2rem;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(139, 115, 85, 0.1);
}

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

.nav-logo {
    font-family: 'Dancing Script', cursive;
    font-size: 1.8rem;
    color: #8b7355;
    text-decoration: none;
    font-weight: 600;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a:hover,
.nav-links a.active {
    color: #8b7355;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #8b7355;
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: #8b7355;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

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

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Navigation mobile responsive */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 2rem;
        padding: 2rem 0;
        transition: left 0.3s ease;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links a {
        font-size: 1.2rem;
        padding: 1rem 0;
    }
    
    .nav-logo {
        font-size: 1.5rem;
    }
}

/* GSAP Base Setup */
.gsap-element {
    will-change: transform, opacity;
}

/* Qualité d'image optimisée pour les animations */
img {
    image-rendering: auto;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: high-quality;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    will-change: transform;
    transform-style: preserve-3d;
}

/* Smooth transitions pour tous les éléments */
* {
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    color: #2c2c2c;
    margin-bottom: 1rem;
    line-height: 1.2;
}


h1 {
    font-size: 3.2rem;
    font-weight: 400;
    letter-spacing: 2px;
    font-family: 'Dancing Script', cursive;
}

h2 {
    font-size: 2.5rem;
    font-weight: 500;
    text-align: center;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

h3 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

h4 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.hero-content p {
    font-family: 'Dancing Script', cursive;
    font-size: 3rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    font-weight: 400;
    letter-spacing: 0.5px;
}

.lead {
    font-size: 1.3rem;
    font-weight: 300;
    color: #666;
    text-align: center;
    margin-bottom: 2rem;
    line-height: 1.8;
    font-style: italic;
    letter-spacing: 0.5px;
}

/* Buttons */
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 16px 35px;
    text-decoration: none;
    border-radius: 50px;
    font-family: 'Dancing Script', cursive;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 2px solid;
    cursor: pointer;
    font-size: 18px;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background-color: #8b7355;
    color: white;
    border-color: #8b7355;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background-color: transparent;
    color: #8b7355;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: #8b7355;
    border-color: #8b7355;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: #8b7355;
    transition: width 0.4s ease;
    z-index: -1;
}

.btn-secondary:hover::before {
    width: 100%;
}

.btn-secondary:hover {
    color: white;
    transform: translateY(-2px);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(139, 115, 85, 0.1);
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    padding: 15px 0;
}

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

.logo h1 {
    font-family: 'Dancing Script', cursive;
    font-size: 2.2rem;
    font-weight: 600;
    color: #8b7355;
    margin: 0;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-menu li {
    margin-left: 2rem;
}

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

.nav-menu a:hover {
    color: #8b7355;
}

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

.hamburger span {
    width: 25px;
    height: 2px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

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

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

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
    transform: translateZ(0);
    will-change: transform;
    backface-visibility: hidden;
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 2;
    max-width: 600px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 0.8rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    color: white;
}

.hero-content p {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

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

/* Introduction */
.introduction {
    padding: 60px 0;
    background-color: #fafafa;
}

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

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    position: relative;
    margin-bottom: 1rem;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background-color: #8b7355;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    margin: 0;
}

.header-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.decoration-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #8b7355, transparent);
    border-radius: 1px;
}

.header-decoration i {
    font-size: 1.2rem;
    color: #8b7355;
    padding: 0.5rem;
    background: rgba(139, 115, 85, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.header-decoration:hover i {
    transform: scale(1.1);
    background: rgba(139, 115, 85, 0.2);
}

/* Le Domaine */
.domaine {
    padding: 80px 0;
}

/* Statistiques clés - Version améliorée */
.domaine-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin: 5rem 0 6rem;
    padding: 3rem 2rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    background: linear-gradient(135deg, rgba(255,255,255,0.8) 0%, rgba(248,249,250,0.9) 100%);
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(139, 115, 85, 0.08);
}

.stat-item {
    text-align: center;
    background: white;
    padding: 3rem 2rem;
    border-radius: 25px;
    box-shadow: 0 20px 40px rgba(139, 115, 85, 0.12);
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 1;
    transform: scale(1);
    border: 1px solid rgba(139, 115, 85, 0.1);
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(135deg, #8b7355, #a68b5b, #d4af37);
}

.stat-item::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(139, 115, 85, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    transition: all 0.5s ease;
}

.stat-item:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 35px 70px rgba(139, 115, 85, 0.25);
    border-color: rgba(139, 115, 85, 0.3);
}

.stat-item:hover::after {
    bottom: -30px;
    right: -30px;
    background: radial-gradient(circle, rgba(139, 115, 85, 0.1) 0%, transparent 70%);
}

.stat-number {
    font-size: 4.5rem;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    color: #8b7355;
    margin-bottom: 1rem;
    line-height: 1;
    display: block;
    text-shadow: 0 2px 4px rgba(139, 115, 85, 0.1);
}

.stat-label {
    font-size: 1rem;
    color: #555;
    font-weight: 500;
    line-height: 1.4;
    margin: 0;
    letter-spacing: 0.5px;
    text-transform: none;
}

/* Hero du domaine */
.domaine-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin: 4rem 0;
    padding: 0 2rem;
}

.domaine-hero-content h3 {
    font-size: 2.8rem;
    color: #8b7355;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.domaine-hero-content .lead {
    text-align: left;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: #555;
}

.domaine-hero-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
}

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

.domaine-hero-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.5s ease;
    transform: translateZ(0);
    will-change: transform;
    backface-visibility: hidden;
}

.domaine-hero-image:hover img {
    transform: scale(1.02);
}

/* Espaces détaillés */
.domaine-spaces {
    margin: 5rem 0;
}

.space-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    margin-bottom: 5rem;
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(139, 115, 85, 0.08);
    transition: all 0.4s ease;
    min-height: 500px;
}

.space-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 80px rgba(139, 115, 85, 0.12);
}

.space-item:nth-child(even) {
    direction: rtl;
}

.space-item:nth-child(even) .space-content {
    direction: ltr;
}

.space-item.featured {
    border: 3px solid #8b7355;
    position: relative;
}

.space-image {
    position: relative;
    height: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.space-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    transform: translateZ(0);
    will-change: transform;
    backface-visibility: hidden;
}

.space-item:hover .space-image img {
    transform: scale(1.03);
}

.space-content {
    padding: 3rem;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.space-badge {
    display: inline-block;
    background: #8b7355;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.space-content h3 {
    font-size: 2.4rem;
    color: #8b7355;
    margin-bottom: 0.5rem;
}

.space-subtitle {
    font-size: 1.1rem;
    color: #999;
    font-style: italic;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.space-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.space-features {
    margin-top: 2rem;
}

.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem;
    background: #f8f8f8;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.feature:hover {
    background: #8b7355;
    color: white;
    transform: translateX(5px);
}

.feature i {
    color: #8b7355;
    font-size: 1.1rem;
    min-width: 20px;
}

.feature:hover i {
    color: white;
}

.feature span {
    font-size: 0.95rem;
    font-weight: 500;
}

/* Espaces additionnels */
.additional-spaces {
    margin: 5rem 0;
    padding: 4rem 2rem;
    background: white;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(139, 115, 85, 0.08);
}

.additional-spaces h3 {
    text-align: center;
    font-size: 2.5rem;
    color: #8b7355;
    margin-bottom: 3rem;
}

.additional-spaces-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.additional-space {
    text-align: center;
    padding: 2rem 1.5rem;
    background: #fafafa;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.additional-space:hover {
    background: white;
    border-color: #8b7355;
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(139, 115, 85, 0.1);
}

.additional-space i {
    font-size: 2.5rem;
    color: #8b7355;
    margin-bottom: 1rem;
}

.additional-space h4 {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 0.8rem;
}

.additional-space p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

/* Certifications */
.certifications {
    margin: 4rem 0;
    text-align: center;
}

.certifications h3 {
    font-size: 2.2rem;
    color: #8b7355;
    margin-bottom: 2rem;
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.certification {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(139, 115, 85, 0.08);
    transition: all 0.3s ease;
}

.certification:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(139, 115, 85, 0.15);
}

.certification i {
    font-size: 1.8rem;
    color: #8b7355;
}

.certification span {
    font-weight: 600;
    color: #333;
    font-size: 0.95rem;
}

/* Responsive Design pour le domaine */
@media (max-width: 968px) {
    .domaine-hero {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .space-item {
        grid-template-columns: 1fr;
        grid-template-rows: 250px 1fr;
        gap: 0;
        min-height: 450px;
    }
    
    .space-item:nth-child(even) {
        direction: ltr;
    }
    
    .space-image {
        height: 250px;
    }
    
    .feature-row {
        grid-template-columns: 1fr;
    }
    
    .domaine-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .stat-item {
        padding: 2rem 1rem;
        min-height: 160px;
    }
    
    .stat-number {
        font-size: 2.8rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .domaine-stats {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
        padding: 0 1rem;
        margin: 2rem auto 3rem;
    }
    
    .stat-item {
        padding: 1.5rem 1rem;
        min-height: 140px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
        letter-spacing: 0.5px;
    }
    
    .additional-spaces-grid {
        grid-template-columns: 1fr;
    }
    
    .certifications-grid {
        grid-template-columns: 1fr;
    }
    
    .domaine-hero-content h3 {
        font-size: 2.2rem;
    }
    
    .space-content {
        padding: 2rem;
    }
    
    .space-item {
        grid-template-rows: 200px 1fr;
        min-height: 380px;
    }
    
    .space-image {
        height: 200px;
    }
}

/* Événements avec plus d'images */
.evenements {
    padding: 70px 0;
    background-color: #fafafa;
}

/* Galerie d'ambiances événements */
.events-gallery {
    margin: 3rem 0;
}

.main-event-image {
    position: relative;
    height: 500px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.main-event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    transform: translateZ(0);
    will-change: transform;
    backface-visibility: hidden;
}

.main-event-image:hover img {
    transform: scale(1.02);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 4rem 3rem 3rem;
    text-align: center;
}

.image-overlay h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.image-overlay h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: white;
}

.image-overlay p {
    font-size: 1.2rem;
    margin: 0;
    color: rgba(255,255,255,0.9);
}

/* Grille d'images événements */
.event-images-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 3rem 0;
}

.event-image {
    position: relative;
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.event-image:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    transform: translateZ(0);
    will-change: transform;
    backface-visibility: hidden;
}

.event-image:hover img {
    transform: scale(1.03);
}

.event-image .image-overlay {
    background: linear-gradient(transparent, rgba(139, 115, 85, 0.9));
    padding: 2rem 1.5rem 1.5rem;
}

/* Services showcase */
.services-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin: 4rem 0;
}

.service-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

.service-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 250px;
}

.service-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    transform: translateZ(0);
    will-change: transform;
    backface-visibility: hidden;
}

.service-card:hover .service-images img {
    transform: scale(1.02);
}

.service-content {
    padding: 2rem;
}

.service-content h3 {
    color: #8b7355;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-content p {
    color: #666;
    line-height: 1.6;
}

/* Galerie Photo Améliorée */
.galerie {
    padding: 80px 0;
    background: linear-gradient(135deg, #fafafa 0%, #f8f8f8 100%);
}

/* Image Principale de la Galerie */
.gallery-hero {
    margin-bottom: 4rem;
}

.main-gallery-image {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    background: #000;
}

.main-gallery-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.main-gallery-image:hover img {
    transform: scale(1.02);
}

/* Overlay et Navigation */
.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 3rem 2rem 2rem;
    z-index: 2;
}

.fullscreen-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255,255,255,0.2);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.fullscreen-btn:hover {
    background: rgba(139, 115, 85, 0.8);
    transform: scale(1.1);
}

.image-info h3 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    color: white;
}

.image-info p {
    font-size: 1.1rem;
    margin: 0;
    color: rgba(255,255,255,0.9);
}

/* Boutons de Navigation */
.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: #8b7355;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 3;
    opacity: 0;
    pointer-events: none;
}

.main-gallery-image:hover .nav-btn {
    opacity: 1;
    pointer-events: auto;
}

.nav-btn:hover {
    background: #8b7355;
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.nav-prev {
    left: 20px;
}

.nav-next {
    right: 20px;
}

/* Catégories de la Galerie */
.gallery-categories {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.category-btn {
    padding: 12px 24px;
    background: transparent;
    border: 2px solid #8b7355;
    color: #8b7355;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-btn:hover,
.category-btn.active {
    background: #8b7355;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(139, 115, 85, 0.3);
}

/* Grille de Vignettes */
.gallery-thumbnails {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.gallery-item {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

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

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

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

.item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(139, 115, 85, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .item-overlay {
    opacity: 1;
}

.item-overlay i {
    color: white;
    font-size: 2rem;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.gallery-item:hover .item-overlay i {
    transform: scale(1);
}

/* Lightbox Modal */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-container {
    position: relative;
    max-width: 95vw;
    max-height: 95vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.lightbox-caption {
    background: rgba(255,255,255,0.95);
    padding: 20px 30px;
    border-radius: 15px;
    margin-top: 20px;
    text-align: center;
    max-width: 600px;
    backdrop-filter: blur(10px);
}

.lightbox-title {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.lightbox-description {
    color: #666;
    font-size: 1rem;
    margin: 0;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: rgba(255,255,255,0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: #333;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10001;
}

.lightbox-close {
    top: 20px;
    right: 20px;
}

.lightbox-prev {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: #8b7355;
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.lightbox-close:hover {
    transform: scale(1.1);
}

/* Animation pour les éléments filtrés */
.gallery-item.filtered-out {
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none;
}

.gallery-item.filtered-in {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

/* Galerie Preview Simple */
.gallery-preview {
    margin-top: 2rem;
}

.preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.preview-item {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 8px 25px rgba(139, 115, 85, 0.1);
    background: white;
}

.preview-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(139, 115, 85, 0.2);
}

.preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    transform: translateZ(0);
    will-change: transform;
    backface-visibility: hidden;
}

.preview-item:hover img {
    transform: scale(1.02);
}

.preview-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(139, 115, 85, 0.9));
    color: white;
    padding: 1.5rem;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

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

.preview-overlay h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    margin: 0;
    color: white;
}

/* Responsive Design pour la Galerie */
@media (max-width: 1024px) {
    .main-gallery-image img {
        height: 500px;
    }
    
    .gallery-thumbnails {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 15px;
    }
    
    .preview-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 15px;
    }
    
    .image-info h3 {
        font-size: 1.8rem;
    }
    
    .nav-btn {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .galerie {
        padding: 60px 0;
    }
    
    .main-gallery-image {
        border-radius: 15px;
    }
    
    .main-gallery-image img {
        height: 400px;
    }
    
    .gallery-categories {
        gap: 10px;
        margin-bottom: 2rem;
    }
    
    .category-btn {
        padding: 10px 18px;
        font-size: 0.8rem;
    }
    
    .gallery-thumbnails {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 12px;
        padding: 0 15px;
    }
    
    .preview-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 12px;
        padding: 0 15px;
    }
    
    .image-overlay {
        padding: 2rem 1.5rem 1.5rem;
    }
    
    .image-info h3 {
        font-size: 1.5rem;
    }
    
    .image-info p {
        font-size: 1rem;
    }
    
    .nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .nav-prev {
        left: 15px;
    }
    
    .nav-next {
        right: 15px;
    }
    
    .fullscreen-btn {
        width: 45px;
        height: 45px;
        top: 15px;
        right: 15px;
        font-size: 1.1rem;
    }
    
    /* Lightbox sur mobile */
    .lightbox-image {
        max-height: 70vh;
    }
    
    .lightbox-caption {
        padding: 15px 20px;
        margin-top: 15px;
    }
    
    .lightbox-title {
        font-size: 1.3rem;
    }
    
    .lightbox-description {
        font-size: 0.9rem;
    }
    
    .lightbox-close,
    .lightbox-prev,
    .lightbox-next {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .lightbox-close {
        top: 15px;
        right: 15px;
    }
    
    .lightbox-prev {
        left: 15px;
    }
    
    .lightbox-next {
        right: 15px;
    }
}

@media (max-width: 480px) {
    .main-gallery-image img {
        height: 300px;
    }
    
    .gallery-categories {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
    
    .category-btn {
        width: 100%;
        max-width: 200px;
        text-align: center;
    }
    
    .gallery-thumbnails {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        padding: 0 10px;
    }
    
    .image-overlay {
        padding: 1.5rem 1rem 1rem;
    }
    
    .image-info h3 {
        font-size: 1.3rem;
    }
    
    .image-info p {
        font-size: 0.9rem;
    }
    
    .nav-btn {
        display: none; /* Masquer les boutons de navigation sur très petits écrans */
    }
    
    .lightbox-image {
        max-height: 60vh;
    }
    
    .lightbox-caption {
        padding: 12px 15px;
        margin-top: 10px;
    }
}

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

.thumbnail:hover img {
    transform: scale(1.03);
}

.thumbnail::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 32px;
    height: 32px;
    background: rgba(139, 115, 85, 0.85);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.3s ease;
    z-index: 3;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 24 24'%3E%3Cpath d='M12 4.5C7 4.5 2.73 7.61 1 12c1.73 4.39 6 7.5 11 7.5s9.27-3.11 11-7.5c-1.73-4.39-6-7.5-11-7.5zM12 17c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5zm0-8c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3z'/%3E%3C/svg%3E");
    background-size: 16px;
    background-repeat: no-repeat;
    background-position: center;
}

.thumbnail:hover::after {
    transform: translate(-50%, -50%) scale(1);
}

/* Hébergement */
.hebergement {
    padding: 70px 0;
    background-color: #fafafa;
}

.hebergement-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hebergement-text h2 {
    text-align: left;
    margin-bottom: 1rem;
}

.hebergement-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.feature i {
    color: #8b7355;
    font-size: 1.5rem;
    margin-right: 1rem;
}

.hebergement-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}



/* Contact */
.contact {
    padding: 70px 0;
    background-color: #fafafa;
}

.contact-content {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 600px;
    margin: 0 auto;
}

.contact-info h2 {
    text-align: left;
    margin-bottom: 1rem;
}

.contact-details {
    margin: 2rem 0;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-item i {
    color: #8b7355;
    font-size: 1.5rem;
    margin-right: 1rem;
    margin-top: 0.5rem;
}

.contact-item h4 {
    color: #8b7355;
    margin-bottom: 0.5rem;
}

.contact-item p {
    margin: 0;
    color: #666;
}

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: #8b7355;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: #6d5a42;
    transform: translateY(-3px);
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #eee;
    border-radius: 25px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.3px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(10px);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8b7355;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    border-radius: 15px;
}



/* Hébergement - Version Alternative */
.hebergement {
    padding: 4rem 0;
    background: #faf9f7;
}

.hebergement-alternative {
    margin-top: 3rem;
}

.hebergement-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
    padding: 3rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(139, 115, 85, 0.1);
}

.hebergement-section:last-child {
    grid-template-columns: 1fr;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.section-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.section-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 1.5rem;
}

.section-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 2rem;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: #f8f7f5;
    border-radius: 12px;
    border-left: 4px solid #8b7355;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: #f0ede8;
    transform: translateX(5px);
}

.feature-item i {
    font-size: 1.3rem;
    color: #8b7355;
    width: 25px;
    text-align: center;
}

.feature-item span {
    font-size: 1rem;
    font-weight: 500;
    color: #333;
}

.maison-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}

.maison-gallery .gallery-item {
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.maison-gallery .gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

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

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

.proximity-simple {
    text-align: center;
    margin-top: 2rem;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(139, 115, 85, 0.08);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.proximity-simple p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    margin: 0;
    font-style: italic;
}

/* Responsive pour l'hébergement alternatif */
@media (max-width: 968px) {
    .hebergement-section {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }
    
    .hebergement-section:last-child {
        max-width: 100%;
    }
    
    .section-image img {
        height: 300px;
    }
    
    .maison-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hebergement-section {
        padding: 1.5rem;
        margin-bottom: 4rem;
    }
    
    .section-content h3 {
        font-size: 1.8rem;
    }
    
    .features-list {
        gap: 0.8rem;
    }
    
    .feature-item {
        padding: 0.8rem 1rem;
    }
    
    .maison-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    
    .proximity-simple {
        padding: 1.5rem;
        margin-top: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hebergement {
        padding: 3rem 0;
    }
    
    .hebergement-section {
        padding: 1rem;
        border-radius: 15px;
    }
    
    .section-content h3 {
        font-size: 1.6rem;
    }
    
    .section-image img {
        height: 250px;
    }
    
    .maison-gallery {
        grid-template-columns: 1fr;
    }
    
    .proximity-simple {
        padding: 1rem;
        margin-top: 1rem;
    }
    
    .proximity-simple p {
        font-size: 1rem;
    }
}

/* Footer */
.footer {
    background-color: #2c2c2c;
    color: white;
    padding: 60px 0 20px;
}

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

.footer-section h3,
.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
}

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

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

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

.footer-section ul li a:hover {
    color: #8b7355;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #8b7355;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
    }

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

    .nav-menu li {
        margin: 1rem 0;
    }

    .hamburger {
        display: flex;
    }

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

    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

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

    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

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

    .event-images-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .service-images {
        height: 200px;
    }

    .carousel-wrapper {
        height: 400px;
    }

    .carousel-caption {
        padding: 2rem 1.5rem 1.5rem;
    }

    .carousel-caption h3 {
        font-size: 1.5rem;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .carousel-prev {
        left: 10px;
    }

    .carousel-next {
        right: 10px;
    }

    .thumbnail-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 10px;
    }

    .contact-content,
    .hebergement-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .hebergement-features {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

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

    .container {
        padding: 0 15px;
    }

    .hero, 
    .introduction,
    .domaine,
    .evenements,
    .galerie,
    .hebergement,
    .contact {
        padding: 50px 0;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 12px 20px;
        font-size: 12px;
    }

    .event-images-grid {
        grid-template-columns: 1fr;
    }

    .thumbnail-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .carousel-wrapper {
        height: 300px;
    }

    .carousel-caption h3 {
        font-size: 1.2rem;
    }

    .carousel-caption p {
        font-size: 0.9rem;
    }

    .main-event-image {
        height: 300px;
    }

    .image-overlay {
        padding: 2rem 1rem 1rem;
    }

    .image-overlay h3 {
        font-size: 1.8rem;
    }

    .service-images {
        grid-template-columns: 1fr;
        height: 150px;
    }

    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
}

@media (max-width: 400px) {
    .domaine-stats {
        grid-template-columns: 1fr;
        gap: 0.8rem;
        padding: 0 0.5rem;
    }
    
    .stat-item {
        padding: 1.2rem 0.8rem;
        min-height: 120px;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
        letter-spacing: 0.3px;
    }
} 

/* Styles pour la section des images futures */
.image-spaces {
    margin-top: 4rem;
    padding: 3rem 0;
}

.image-spaces h3 {
    text-align: center;
    margin-bottom: 3rem;
    font-family: 'Dancing Script', cursive;
    font-size: 2.5rem;
    color: #8b7355;
}

.image-spaces-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.image-space {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(139, 115, 85, 0.1);
}

.image-space:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.placeholder-image {
    height: 200px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #8b7355;
    border-bottom: 1px solid rgba(139, 115, 85, 0.1);
}

.placeholder-image i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.6;
}

.placeholder-image p {
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.8;
}

.image-space h4 {
    padding: 1.5rem;
    margin: 0;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    color: #333;
    text-align: center;
    font-weight: 600;
}

/* Responsive pour la section des images */
@media (max-width: 768px) {
    .image-spaces-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .image-space h4 {
        padding: 1rem;
        font-size: 1.1rem;
    }
    
    .placeholder-image {
        height: 150px;
    }
    
    .placeholder-image i {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .image-spaces-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .image-space h4 {
        padding: 0.8rem;
        font-size: 1rem;
    }
    
    .placeholder-image {
        height: 120px;
    }
    
    .placeholder-image i {
        font-size: 2rem;
    }
} 

/* Style pour le sous-titre avec la même police que le titre */
.subtitle-wedding {
    font-family: 'Dancing Script', cursive !important;
    font-size: 1.8rem !important;
    color: #8b7355 !important;
    font-weight: 600 !important;
    margin-top: 1rem !important;
}

/* Styles pour la nouvelle section description du domaine */
.domaine-description {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin: 4rem 0;
    padding: 3rem 0;
}

.description-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    color: #8b7355;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.description-content .lead {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.description-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 1rem;
}

.description-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

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

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

/* Amélioration de la section domaine */
.domaine {
    padding: 6rem 0;
    background: linear-gradient(135deg, #fafafa 0%, #f8f9fa 100%);
}

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

/* Responsive pour la description du domaine */
@media (max-width: 768px) {
    .domaine-description {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin: 2rem 0;
        padding: 2rem 0;
    }
    
    .description-content h3 {
        font-size: 1.8rem;
        text-align: center;
    }
    
    .description-image img {
        height: 300px;
    }
    
    .subtitle-wedding {
        font-size: 1.4rem !important;
        text-align: center !important;
    }
} 

/* Responsive pour les statistiques du domaine */
@media (max-width: 1200px) {
    .domaine-stats {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
        margin: 4rem 0 5rem;
        padding: 2.5rem 1.5rem;
    }
    
    .stat-item {
        padding: 2.5rem 1.5rem;
        min-height: 200px;
    }
    
    .stat-number {
        font-size: 4rem;
    }
}

@media (max-width: 768px) {
    .domaine-stats {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 1.5rem;
        margin: 3rem 0 4rem;
        padding: 2rem 1rem;
        border-radius: 20px;
    }
    
    .stat-item {
        padding: 2rem 1.5rem;
        min-height: 180px;
        border-radius: 20px;
    }
    
    .stat-number {
        font-size: 3.5rem;
        margin-bottom: 0.8rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
        line-height: 1.3;
    }
}

@media (max-width: 480px) {
    .domaine-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 2rem 0 3rem;
        padding: 1.5rem 1rem;
    }
    
    .stat-item {
        padding: 2rem 1rem;
        min-height: 160px;
    }
    
    .stat-number {
        font-size: 3rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
} 

/* Cards de données améliorées */
.domaine-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
    padding: 0 1rem;
}

.data-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 15px 40px rgba(139, 115, 85, 0.1);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.data-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #8b7355, #a68b5b);
}

.data-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(139, 115, 85, 0.2);
    border-color: rgba(139, 115, 85, 0.2);
}

.card-icon {
    background: linear-gradient(135deg, #8b7355, #a68b5b);
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.card-icon i {
    font-size: 1.8rem;
    color: white;
}

.card-number {
    font-size: 3rem;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    color: #8b7355;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.card-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.8rem;
}

.card-description {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

/* Espaces extérieurs - Version simple */
.espaces-exterieurs {
    margin: 4rem 0;
    text-align: center;
}

.espaces-exterieurs h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    color: #8b7355;
    margin-bottom: 3rem;
    font-weight: 600;
}

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

.espace-item {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 15px 35px rgba(139, 115, 85, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.espace-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(139, 115, 85, 0.2);
    border-color: rgba(139, 115, 85, 0.2);
}

.espace-icon {
    background: linear-gradient(135deg, #8b7355, #a68b5b);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.espace-icon i {
    font-size: 2rem;
    color: white;
}

.espace-item h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: #8b7355;
    margin-bottom: 1rem;
    font-weight: 600;
}

.espace-item p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 1.5rem;
}

.espace-image-placeholder {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 10px;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #8b7355;
    border: 2px dashed rgba(139, 115, 85, 0.3);
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.espace-image-placeholder:hover {
    background: linear-gradient(135deg, #f0f1f2, #e1e4e7);
    border-color: rgba(139, 115, 85, 0.5);
}

.espace-image-placeholder i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    opacity: 0.6;
}

.espace-image-placeholder span {
    font-size: 0.85rem;
    font-weight: 500;
    opacity: 0.8;
}

/* Responsive pour les espaces extérieurs */
@media (max-width: 768px) {
    .domaine-cards {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
        margin: 3rem 0;
    }
    
    .data-card {
        padding: 1.5rem;
    }
    
    .card-number {
        font-size: 2.5rem;
    }
    
    .espaces-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .espace-item {
        padding: 1.5rem;
    }
    
    .espace-icon {
        width: 60px;
        height: 60px;
    }
    
    .espace-icon i {
        font-size: 1.8rem;
    }
    
    .espace-item h4 {
        font-size: 1.3rem;
    }
    
    .espace-image-placeholder {
        height: 100px;
    }
    
    .espace-image-placeholder i {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .espaces-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .espace-item {
        padding: 1.2rem;
    }
    
    .espace-item h4 {
        font-size: 1.2rem;
    }
    
    .espace-item p {
        font-size: 0.9rem;
    }
    
    .espace-image-placeholder {
        height: 80px;
    }
} 

/* Styles pour la carte extérieur avec images */
.exterieur-card {
    position: relative;
}

.exterieur-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 8px;
    height: 120px;
    margin-bottom: 1.5rem;
    border-radius: 15px;
    overflow: hidden;
}

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

.exterieur-images img:first-child {
    grid-row: span 2;
}

.exterieur-card:hover .exterieur-images img {
    transform: scale(1.05);
}

/* Responsive pour les stats */
@media (max-width: 1200px) {
    .domaine-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .domaine-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 2rem 1rem;
    }
    
    .stat-item {
        padding: 2rem 1.5rem;
        min-height: 180px;
    }
    
    .exterieur-images {
        height: 100px;
    }
}

/* Carrousel d'images pour les extérieurs avec transition fluide */
.exterieur-carousel {
    position: relative;
    overflow: hidden;
}

.carousel-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.05);
    transition: all 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-image.active {
    opacity: 1;
    transform: scale(1);
}

.carousel-image.fade-out {
    opacity: 0;
    transform: scale(0.95);
}

.carousel-image.fade-in {
    opacity: 1;
    transform: scale(1);
}

/* Partenaires Footer */
.footer-partenaires {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-partenaires h4 {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}

.partenaires-footer-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
}

.partenaire-footer-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 120px;
    padding: 0.5rem;
    transition: all 0.3s ease;
}

.partenaire-footer-item:hover {
    transform: translateY(-2px);
}

.partenaire-name {
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    line-height: 1.2;
}

.partenaire-role {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.75rem;
    margin-bottom: 0.5rem;
    font-style: italic;
}

.partenaire-footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    padding: 0.25rem 0.5rem;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.1);
}

.partenaire-footer-link:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.partenaire-footer-link i {
    font-size: 0.7rem;
}

/* Responsive pour les partenaires footer */
@media (max-width: 768px) {
    .partenaires-footer-grid {
        gap: 1rem;
    }
    
    .partenaire-footer-item {
        min-width: 100px;
        padding: 0.4rem;
    }
    
    .partenaire-name {
        font-size: 0.8rem;
    }
    
    .partenaire-role {
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .partenaires-footer-grid {
        gap: 0.8rem;
    }
    
    .partenaire-footer-item {
        min-width: 80px;
        padding: 0.3rem;
    }
    
    .partenaire-name {
        font-size: 0.75rem;
    }
    
    .partenaire-role {
        font-size: 0.65rem;
    }
    
    .partenaire-footer-link {
        font-size: 0.7rem;
        padding: 0.2rem 0.4rem;
    }
}

