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

:root {
    --primary-color: #D4AF37;
    --primary-dark: #B8941E;
    --secondary-color: #1a1a1a;
    --text-dark: #2c2c2c;
    --text-light: #666;
    --bg-light: #fafafa;
    --white: #ffffff;
    --gold-gradient: linear-gradient(135deg, #D4AF37 0%, #F4E4C1 100%);
    --dark-gradient: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
    --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.18);
    --shadow-gold: 0 8px 32px rgba(212, 175, 55, 0.3);
}

html {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

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

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation - Transparent sur le hero */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    z-index: 1000;
    transition: background 0.4s ease-in-out, box-shadow 0.4s ease-in-out, backdrop-filter 0.4s ease-in-out;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 24px;
    max-width: none;
}

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.3px;
    transition: none;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo span {
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Navbar scrolled - effets visuels (fond géré dynamiquement par JS pour transition progressive) */
.navbar.scrolled .logo {
    color: var(--white);
}

.navbar.scrolled ~ .nav-menu {
    top: 10px;
}

.navbar.scrolled .logo span {
    background: linear-gradient(135deg, #FFFFFF 0%, #F4F4F4 50%, #FFFFFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    font-weight: 700;
}

.nav-menu {
    position: fixed;
    top: 15px;
    right: 24px;
    display: flex;
    list-style: none;
    gap: 45px;
    align-items: center;
    z-index: 999;
    transition: top 0.15s ease-out;
}

.nav-menu a {
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    transition: color 0.15s ease-out, opacity 0.3s ease;
    font-size: 15px;
    position: relative;
}

.navbar.scrolled .nav-menu a {
    color: var(--white);
}

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

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

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

/* Cacher Accueil sur desktop */
.nav-menu .mobile-only {
    display: none;
}

/* Menu mobile uniquement (hors navbar) - caché sur desktop */
.mobile-menu-only {
    display: none !important;
}

/* Menu desktop (dans navbar) - visible sur desktop */
.nav-menu.desktop-only {
    display: flex;
}

.btn-reserve {
    background: var(--gold-gradient);
    color: var(--white) !important;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: var(--shadow-gold);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

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

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

.btn-reserve:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.4);
}

.burger-menu {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 10px;
}

.burger-menu span {
    width: 28px;
    height: 3px;
    background: var(--white);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.navbar.scrolled .burger-menu span {
    background: var(--white);
}

/* Hero Slider - Full Screen */
.hero-slider {
    height: 100vh;
    margin-top: 0;
    position: relative;
    z-index: 1;
}

.heroSwiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    position: relative;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    animation: kenburns 25s ease-in-out infinite alternate;
}

@keyframes kenburns {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.08);
    }
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(26, 26, 26, 0.85) 0%,
        rgba(0, 0, 0, 0.5) 50%,
        rgba(26, 26, 26, 0.7) 100%
    );
}

.slide-content {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 2;
}

.hero-title {
    font-size: clamp(32px, 8vw, 90px);
    color: var(--white);
    margin-bottom: 30px;
    font-weight: 700;
    letter-spacing: -1px;
    opacity: 0;
    animation: revealTitle 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s forwards;
    transform: translateY(50px) scale(0.95);
}

@keyframes revealTitle {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.hero-title .highlight {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
    font-weight: 700;
    opacity: 0;
    animation: revealHighlight 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.6s forwards;
    transform: translateX(-30px);
}

@keyframes revealHighlight {
    0% {
        opacity: 0;
        transform: translateX(-30px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-subtitle {
    font-size: clamp(16px, 3vw, 28px);
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 50px;
    font-weight: 300;
    letter-spacing: 0.5px;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.9s forwards;
    transform: translateY(30px);
}

.hero-buttons {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    justify-content: center;
    opacity: 0;
    animation: fadeInUp 1.2s ease-out 1.2s forwards;
    transform: translateY(30px);
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 18px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    font-size: clamp(14px, 2vw, 16px);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gold-gradient);
    color: var(--white);
    box-shadow: var(--shadow-gold);
}

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

.btn-primary:hover::before {
    width: 350px;
    height: 350px;
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(212, 175, 55, 0.5);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.1);
    color: var(--primary-color);
    border-color: var(--primary-color);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    transform: translateY(-4px);
}

.btn-large {
    padding: 22px 55px;
    font-size: 18px;
}

/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
    color: var(--primary-color);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 24px;
}

.swiper-pagination-bullet {
    background: var(--white);
    opacity: 0.4;
    width: 12px;
    height: 12px;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background: var(--primary-color);
    opacity: 1;
    width: 40px;
    border-radius: 6px;
}

/* Sections */
.section-header {
    text-align: center;
    margin-bottom: 32px;
}

.section-title {
    font-size: clamp(28px, 5vw, 64px);
    color: var(--secondary-color);
    font-weight: 700;
    letter-spacing: -1px;
}

.section-subtitle {
    font-size: clamp(12px, 2.5vw, 16px);
    color: var(--text-light);
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* Services Section - Luxury Design */
.services-section {
    padding: 60px 0;
    background: linear-gradient(180deg, var(--bg-light) 0%, #ffffff 100%);
    position: relative;
    z-index: 10;
}

/* Category Filter Menu */
.category-filter {
    margin: 40px 0 30px;
    display: flex;
    justify-content: center;
}

.category-menu {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    padding: 12px;
    background: var(--white);
    border-radius: 50px;
    box-shadow: var(--shadow-md);
    position: relative;
}

.category-btn {
    padding: 14px 32px;
    border: none;
    background: transparent;
    color: var(--text-dark);
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.3px;
}

.category-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
    border-radius: 50px;
}

.category-btn:hover::before {
    transform: scaleX(1);
}

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

.category-btn.active {
    background: var(--gold-gradient);
    color: var(--white);
    box-shadow: var(--shadow-gold);
    transform: translateY(-2px);
}

.category-btn.active::before {
    display: none;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 0;
}

/* Photo Gallery Items */
.photo-item {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    aspect-ratio: 4 / 5;
}

.photo-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.photo-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.photo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(0, 0, 0, 0.5) 50%,
        rgba(0, 0, 0, 0.9) 100%
    );
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.photo-title {
    color: var(--white);
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 600;
    display: block;
}

.service-image {
    position: relative;
    height: 350px;
    overflow: hidden;
}

.service-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(0, 0, 0, 0.3) 100%
    );
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-image img {
    transform: scale(1.12);
}

.service-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    background: var(--gold-gradient);
    color: var(--white);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    z-index: 10;
    box-shadow: var(--shadow-gold);
}

.service-content {
    padding: 40px;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    gap: 20px;
}

.service-title {
    font-size: 32px;
    color: var(--secondary-color);
    font-weight: 700;
    letter-spacing: -0.5px;
}

.service-price {
    background: var(--gold-gradient);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    white-space: nowrap;
    box-shadow: var(--shadow-gold);
}

.service-description {
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.8;
    font-size: 15px;
}

.service-details {
    display: flex;
    gap: 24px;
    padding: 24px 0;
    border-top: 1px solid #f0f0f0;
    margin-top: 24px;
}

.service-detail {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
    font-size: 14px;
    font-weight: 500;
}

.service-detail-icon {
    font-size: 20px;
}

.service-variant {
    background: var(--bg-light);
    padding: 16px 20px;
    border-radius: 12px;
    margin-top: 20px;
    border-left: 3px solid var(--primary-color);
}

.service-variant p {
    margin: 0;
    color: var(--text-dark);
    font-size: 14px;
}

.service-photos {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.service-photo-thumb {
    width: 70px;
    height: 70px;
    border-radius: 12px;
    object-fit: cover;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-photo-thumb:hover {
    transform: scale(1.15) rotate(3deg);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-gold);
}

/* Pricing Section */
.pricing-section {
    padding: 32px 0;
    background: linear-gradient(180deg, #ffffff 0%, var(--bg-light) 100%);
    position: relative;
    z-index: 10;
}

.pricing-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.pricing-card {
    background: var(--white);
    border-radius: 24px;
    padding: 50px;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 4px solid var(--primary-color);
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

/* Majorations - Elegant Text Style */
.majorations-card {
    margin-top: 70px;
    padding: 30px;
    background: transparent;
    border: none;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.majorations-title {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 15px;
    font-weight: 400;
    text-align: center;
    font-style: italic;
    opacity: 0.8;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.majorations-min-amount {
    font-size: 12px;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 20px;
    font-style: italic;
    opacity: 0.7;
}

.majorations-card .pricing-list {
    gap: 4px;
    max-width: 800px;
    margin: 0 auto;
}

.majorations-card .price-item {
    padding: 8px 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.majorations-card .price-item:hover {
    padding-left: 15px;
    background: transparent;
}

.majorations-card .price-label {
    font-size: 13px;
    color: var(--text-dark);
    font-weight: 400;
    opacity: 0.85;
    font-style: italic;
}

.majorations-card .price-value {
    font-size: 16px;
    opacity: 0.9;
    color: var(--primary-color);
    font-weight: 600;
    margin-left: 4px;
}

.pricing-card-title {
    font-size: clamp(24px, 4vw, 32px);
    color: var(--secondary-color);
    margin-bottom: 8px;
    font-weight: 700;
    text-align: center;
}

.pricing-card-subtitle {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 16px;
    text-align: center;
    font-style: italic;
}

.pricing-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.price-item:last-child {
    border-bottom: none;
}

.price-item:hover {
    padding-left: 10px;
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.05) 0%, transparent 100%);
}

.price-item.majoration {
    flex-wrap: wrap;
}

.price-label {
    font-size: 16px;
    color: var(--text-dark);
    font-weight: 500;
    flex: 1;
}

.price-label .duration {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 400;
}

.duration-label {
    font-size: 13px;
    color: var(--text-light);
    font-weight: 400;
    font-style: italic;
    display: inline-block;
    margin-top: 2px;
    line-height: 1.2;
}

.price-value {
    font-size: 20px;
    color: var(--primary-color);
    font-weight: 700;
    font-family: 'Cormorant Garamond', serif;
}

.min-amount {
    width: 100%;
    font-size: 13px;
    color: var(--text-light);
    margin-top: 8px;
    font-style: italic;
}

.price-item.with-description {
    align-items: center;
}

.price-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.price-description {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.price-extension-supp {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-accent, #c9a47b);
    margin-top: 4px;
}

.no-pricing {
    text-align: center;
    color: var(--text-light);
    font-style: italic;
    padding: 40px 20px;
}

/* About Section */
.about-section {
    padding: 32px 0;
    background: var(--white);
    position: relative;
    z-index: 10;
}

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

.about-description {
    color: var(--text-light);
    line-height: 2;
    white-space: pre-line;
    font-size: 16px;
}

.about-description p {
    margin-bottom: 20px;
}

.about-features {
    display: grid;
    gap: 30px;
}

.feature-card {
    background: #f3f3f3;
    padding: 32px;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

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

.feature-card:hover::before {
    left: 0;
}

.feature-card:hover {
    transform: translateX(12px);
}

.feature-card > * {
    position: relative;
    z-index: 1;
}

.feature-icon {
    font-size: 56px;
    margin-bottom: 20px;
    transition: transform 0.4s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.2) rotate(10deg);
}

.feature-card h3 {
    font-size: 26px;
    margin-bottom: 14px;
    transition: color 0.3s ease;
}

.feature-card p {
    transition: color 0.3s ease;
}

.feature-card:hover h3,
.feature-card:hover p {
    color: var(--white);
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: var(--dark-gradient);
    position: relative;
    overflow: hidden;
    z-index: 10;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: clamp(28px, 5vw, 64px);
    color: var(--white);
    margin-bottom: 24px;
    font-weight: 700;
    letter-spacing: -1px;
}

.cta-content p {
    font-size: clamp(16px, 3vw, 22px);
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 50px;
    font-weight: 300;
}

/* Contact Section */
.contact-section {
    padding: 32px 0;
    background: var(--bg-light);
    position: relative;
    z-index: 10;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}
.contact-info {
    padding: 16px;
    padding-bottom:0;
    padding-top:0;
}

.contact-item {
    display: flex;
    gap: 24px;
    margin-bottom: 16px;
    margin-top: 16px;
}

.contact-icon {
    font-size: 40px;
    min-width: 60px;
}

.contact-item h3 {
    font-size: clamp(18px, 3vw, 22px);
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: clamp(16px, 2vw, 18px);
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-card {
    background: var(--white);
    padding: 32px;
    border-radius: 24px;
    box-shadow: var(--shadow-md);
    text-align: center;
}

.contact-card h3 {
    font-size: clamp(24px, 4vw, 36px);
    margin-bottom: 20px;
}

.contact-card p {
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.8;
    font-size: clamp(14px, 2vw, 16px);
}

.contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.payment-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.payment-method {
    background: var(--bg-light);
    padding: 8px 10px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid #e0e0e0;
}

/* Testimonials Section */
.testimonials-section {
    padding: 32px 0;
    background: linear-gradient(to bottom, #fafafa 0%, #ffffff 100%);
    position: relative;
    z-index: 10;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    position: relative;
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    gap: 20px;
    border: 2px solid transparent;
    background-clip: padding-box;
    overflow: hidden;
}

/* Bordure dorée avec gradient */
.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, #D4AF37 0%, #F4E4C1 50%, #D4AF37 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0.3;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

/* Icône de citation dorée en arrière-plan */
.testimonial-card::after {
    content: '"';
    position: absolute;
    top: 20px;
    right: 25px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 120px;
    line-height: 1;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.08;
    pointer-events: none;
    font-weight: 700;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.25);
    border-color: rgba(212, 175, 55, 0.2);
}

.testimonial-card:hover::before {
    opacity: 0.8;
}

.testimonial-stars {
    font-size: 22px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 3px;
    filter: drop-shadow(0 2px 4px rgba(212, 175, 55, 0.3));
    position: relative;
    z-index: 1;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.9;
    color: var(--text-dark);
    font-style: italic;
    flex: 1;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding-top: 18px;
    border-top: 2px solid;
    border-image: linear-gradient(90deg, rgba(212, 175, 55, 0.4), rgba(212, 175, 55, 0.1)) 1;
    position: relative;
    z-index: 1;
}

.testimonial-author strong {
    font-size: 16px;
    font-family: 'Cormorant Garamond', serif;
    background: linear-gradient(135deg, #D4AF37 0%, #B8941E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.testimonial-author span {
    font-size: 13px;
    color: var(--text-light);
    font-weight: 400;
}

/* Footer */
.footer {
    background: var(--secondary-color);
    color: var(--white);
    padding: 40px 0 20px;
    position: relative;
    z-index: 10;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-brand h3 {
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.footer-links h4,
.footer-contact h4,
.footer-social h4 {
    font-size: 20px;
    margin-bottom: 24px;
    color: var(--primary-color);
    font-weight: 600;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    display: block;
    margin-bottom: 14px;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 14px;
}

.footer-contact a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.footer-contact .footer-social {
    margin-top: 32px;
}

.footer-social-links {
    display: flex;
    gap: 16px;
}

.footer-social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--primary-color);
    border-radius: 50%;
    color: var(--primary-color);
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social-link:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

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

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.footer-bottom p {
    margin-bottom: 10px;
}

.footer-credit {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 10px;
}

.footer-credit a {
    color: rgba(212, 175, 55, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-credit a:hover {
    color: var(--primary-color);
}

/* ========================================
   SKELETON LOADERS
   ======================================== */

/* Animation shimmer pour tous les skeletons */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

.skeleton-shimmer {
    background: linear-gradient(
        90deg,
        rgba(240, 240, 240, 0.1) 0%,
        rgba(255, 255, 255, 0.2) 50%,
        rgba(240, 240, 240, 0.1) 100%
    );
    background-size: 1000px 100%;
    animation: shimmer 2s infinite;
}

/* Skeleton Tabs */
.skeleton-tabs {
    display: flex;
    gap: 12px;
    margin-bottom: 32px;
    flex-wrap: wrap;
    justify-content: center;
}

.skeleton-tab {
    height: 48px;
    width: 150px;
    border-radius: 24px;
    background: linear-gradient(
        90deg,
        rgba(212, 175, 55, 0.1) 0%,
        rgba(244, 228, 193, 0.2) 50%,
        rgba(212, 175, 55, 0.1) 100%
    );
    background-size: 1000px 100%;
    animation: shimmer 2s infinite;
}

/* Skeleton Gallery */
.skeleton-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.skeleton-photo {
    aspect-ratio: 1;
    border-radius: 24px;
    background: linear-gradient(
        90deg,
        rgba(212, 175, 55, 0.1) 0%,
        rgba(244, 228, 193, 0.2) 50%,
        rgba(212, 175, 55, 0.1) 100%
    );
    background-size: 1000px 100%;
    animation: shimmer 2s infinite;
}

/* Skeleton Pricing */
.skeleton-pricing {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.skeleton-pricing-item {
    height: 60px;
    border-radius: 12px;
    background: linear-gradient(
        90deg,
        rgba(212, 175, 55, 0.05) 0%,
        rgba(244, 228, 193, 0.15) 50%,
        rgba(212, 175, 55, 0.05) 100%
    );
    background-size: 1000px 100%;
    animation: shimmer 2s infinite;
}

/* Skeleton Text */
.skeleton-text {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.skeleton-text-line {
    height: 20px;
    width: 100%;
    border-radius: 4px;
    background: linear-gradient(
        90deg,
        rgba(212, 175, 55, 0.05) 0%,
        rgba(244, 228, 193, 0.15) 50%,
        rgba(212, 175, 55, 0.05) 100%
    );
    background-size: 1000px 100%;
    animation: shimmer 2s infinite;
}

/* Skeleton Slider Photo */
.skeleton-slider-photo {
    width: 100%;
    height: 600px;
    border-radius: 24px;
    background: linear-gradient(
        90deg,
        rgba(212, 175, 55, 0.1) 0%,
        rgba(244, 228, 193, 0.2) 50%,
        rgba(212, 175, 55, 0.1) 100%
    );
    background-size: 1000px 100%;
    animation: shimmer 2s infinite;
}

@media (max-width: 768px) {
    .skeleton-slider-photo {
        height: 400px;
    }
}

/* Mobile: 1 photo visible */
@media (max-width: 768px) {
    .skeleton-gallery {
        grid-template-columns: 1fr;
    }

    .skeleton-photo:not(:first-child) {
        display: none;
    }

    .skeleton-tab {
        width: 120px;
        height: 40px;
    }
}

/* Tablet: 2 columns */
@media (min-width: 769px) and (max-width: 990px) {
    .skeleton-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Responsive */
@media (max-width: 990px) and (min-width: 769px) {
    .logo span {
        font-size: 18px !important;
    }

    .nav-menu {
        gap: 25px;
    }

    .nav-menu a {
        font-size: 13px;
    }

    .btn-reserve {
        padding: 8px 18px;
        font-size: 13px;
    }
}

@media (max-width: 968px) {
    .services-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }

    .category-menu {
        padding: 8px;
        gap: 12px;
    }

    .category-btn {
        padding: 12px 24px;
        font-size: 14px;
    }

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

    .pricing-card {
        padding: 32px;
    }

    .about-content,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .navbar {
        width: 100%;
        max-width: 100vw;
        background: transparent;
    }

    .navbar.scrolled {
        width: 100%;
        max-width: 100vw;
        background: rgba(0, 0, 0, 0.7);
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
        backdrop-filter: blur(10px);
    }

    .navbar .container {
        padding: 10px 15px;
        max-width: 100%;
        width: 100%;
    }

    .logo {
        font-size: 20px;
        max-width: calc(100vw - 100px);
        white-space: nowrap;
        overflow: hidden;
    }

    .logo img {
        height: 48px !important;
        margin-right: 6px !important;
        flex-shrink: 0;
    }

    .logo span {
        overflow: hidden;
        text-overflow: ellipsis;
        display: inline-block;
    }

    /* Sur mobile, le logo reste blanc */
    .navbar .logo span {
        background: linear-gradient(135deg, #FFFFFF 0%, #F4F4F4 50%, #FFFFFF 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        font-weight: 700;
    }

    .navbar.scrolled .logo span {
        background: linear-gradient(135deg, #FFFFFF 0%, #F4F4F4 50%, #FFFFFF 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        font-weight: 700;
    }

    .navbar .burger-menu span {
        background: var(--white);
    }

    .navbar.scrolled .burger-menu span {
        background: var(--white);
    }

    /* Mobile Menu Overlay - effet de transparence sur le site */
    .menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(4px);
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s ease;
        z-index: 9999;
        pointer-events: none;
    }

    .menu-overlay.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: min(320px, 85vw);
        max-width: 320px;
        height: 100vh;
        height: 100dvh;
        background: #ffffff !important;
        flex-direction: column;
        padding: 40px 30px 40px;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
        transition: right 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        gap: 0;
        overflow-y: auto;
        z-index: 10000;
    }

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

    /* Masquer complètement le menu desktop (dans navbar) sur mobile */
    .nav-menu.desktop-only {
        display: none !important;
        visibility: hidden !important;
        pointer-events: none !important;
        position: absolute !important;
        z-index: -9999 !important;
        opacity: 0 !important;
    }

    /* Afficher le menu mobile (hors navbar) sur mobile */
    .mobile-menu-only {
        display: flex !important;
    }

    /* Afficher Accueil sur mobile */
    .nav-menu .mobile-only {
        display: block;
    }

    .nav-menu li {
        width: 100%;
        padding: 0;
        margin: 0;
        border-bottom: 1px solid rgba(212, 175, 55, 0.1);
        animation: slideInMenu 0.4s ease forwards;
        opacity: 0;
    }

    .nav-menu.active li:nth-child(1) {
        animation-delay: 0.1s;
    }

    .nav-menu.active li:nth-child(2) {
        animation-delay: 0.2s;
    }

    .nav-menu.active li:nth-child(3) {
        animation-delay: 0.3s;
    }

    .nav-menu.active li:nth-child(4) {
        animation-delay: 0.4s;
    }

    .nav-menu.active li:nth-child(5) {
        animation-delay: 0.5s;
    }

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

    .nav-menu a {
        color: var(--text-dark);
        font-size: 20px;
        font-weight: 600;
        padding: 20px 16px;
        display: block;
        width: 100%;
        position: relative;
        transition: all 0.3s ease;
        background: transparent;
    }

    .nav-menu a::before {
        content: '';
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 4px;
        height: 0;
        background: var(--gold-gradient);
        transition: height 0.3s ease;
        border-radius: 0 4px 4px 0;
    }

    .nav-menu a:hover,
    .nav-menu a:active {
        color: var(--primary-color);
        background: rgba(212, 175, 55, 0.05);
        transform: translateX(8px);
    }

    .nav-menu a:hover::before {
        height: 60%;
    }

    .nav-menu a::after {
        display: none;
    }

    /* Bouton Réserver dans le menu mobile */
    .nav-menu .btn-reserve {
        background: var(--gold-gradient);
        color: var(--white) !important;
        margin: 20px 16px;
        padding: 16px 24px;
        border-radius: 50px;
        text-align: center;
        font-size: 18px;
        font-weight: 700;
        box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
        width: calc(100% - 32px);
    }

    .nav-menu .btn-reserve:hover,
    .nav-menu .btn-reserve:active {
        background: var(--gold-gradient);
        color: var(--white) !important;
        transform: translateY(-2px);
        box-shadow: 0 12px 35px rgba(212, 175, 55, 0.4);
    }

    .nav-menu .btn-reserve::before {
        display: none;
    }

    .nav-menu li:has(.btn-reserve) {
        border-bottom: none;
        margin-top: 10px;
    }

    .burger-menu {
        display: flex;
        z-index: 1003;
        flex-shrink: 0;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        text-align: center;
        width: 100%;
    }
}

/* =======================
   NOS RÉALISATIONS SECTION
   ======================= */
.realisations-section {
    padding: 32px 0 32px;
    background: linear-gradient(180deg, var(--bg-light) 0%, #ffffff 100%);
    position: relative;
}

.realisations-section .section-header {
    margin-bottom: 32px;
}

/* Tabs */
.realisations-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin: 32px auto;
    max-width: 1100px;
}

.realisation-tab {
    background: var(--white);
    color: var(--secondary-color);
    border: 2px solid var(--bg-light);
    padding: 16px 32px;
    border-radius: 50px;
    font-size: clamp(13px, 2vw, 16px);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.realisation-tab::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gold-gradient);
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

.realisation-tab span {
    position: relative;
    z-index: 1;
}

.realisation-tab:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.2);
    border-color: var(--primary-color);
}

.realisation-tab.active {
    background: var(--gold-gradient);
    color: var(--white);
    border-color: var(--primary-color);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
    transform: translateY(-2px);
}

.realisation-tab.active::before {
    left: 0;
}

/* Gallery */
.realisations-gallery {
    margin-top: 0px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

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

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
    aspect-ratio: 3/4;
    min-height: 180px;
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

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

.gallery-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.3);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    min-height: 180px;
    object-fit: cover;
    object-position: center 20%;
    display: block;
    transition: transform 0.4s ease;
}

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

.gallery-item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
    color: var(--white);
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

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

.gallery-item-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
}

.no-photos-message {
    text-align: center;
    padding: 80px 20px;
    color: var(--text-light);
    font-size: 18px;
    background: var(--bg-light);
    border-radius: 24px;
    max-width: 600px;
    margin: 0 auto;
}

/* Desktop/Mobile visibility */
.desktop-only {
    display: initial;
}

.mobile-only {
    display: none;
}

/* Force le grid à rester même avec desktop-only */
.gallery-grid.desktop-only {
    display: grid !important;
}

/* Realisations Mobile Slider */
.realisations-slider {
    margin-top: 40px;
    width: 100%;
}

/* Full width sur mobile - compenser le padding du container */
.realisations-slider.mobile-only {
    margin-left: -24px;
    margin-right: -24px;
    width: calc(100% + 48px);
}

.realisations-swiper {
    width: 100%;
    padding: 0; /* Full width - pas de padding latéral */
}

.realisations-swiper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 85%; /* Largeur des slides pour voir les adjacentes */
}

.realisation-slide-item {
    position: relative;
    width: 100%;
    height: 470px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.realisation-slide-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.realisation-slide-item:active img {
    transform: scale(1.05);
}

.realisations-swiper .swiper-button-next,
.realisations-swiper .swiper-button-prev {
    color: var(--white);
    background: var(--gold-gradient);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: all 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.realisations-swiper .swiper-button-next::after,
.realisations-swiper .swiper-button-prev::after {
    font-size: 20px;
}

.realisations-swiper .swiper-button-next:active,
.realisations-swiper .swiper-button-prev:active {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

/* Masquer les boutons désactivés */
.realisations-swiper .swiper-button-disabled {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

/* Responsive */
@media (max-width: 768px) {
    .desktop-only {
        display: none !important;
    }

    .gallery-grid.desktop-only {
        display: none !important;
    }

    .mobile-only {
        display: block;
    }

    .realisations-slider.mobile-only {
        display: block;
    }
    /* Réduire les paddings des sections sur mobile pour cohérence */
    .services-section {
        padding: 40px 0;
    }

    .realisations-section {
        padding: 32px 0 32px;
    }

    .pricing-section {
        padding: 32px 0;
    }

    .about-section {
        padding: 32px 0;
    }

    .cta-section {
        padding: 50px 0;
    }

    .contact-section {
        padding: 32px 0;
    }

    .testimonials-section {
        padding: 32px 0;
        padding-top: 0px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }

    .testimonial-card.mobile-hidden {
        display: none;
    }

    .testimonial-card {
        padding: 30px 25px;
    }

    .testimonial-card::after {
        font-size: 90px;
        top: 15px;
        right: 20px;
    }

    .testimonial-stars {
        font-size: 20px;
        letter-spacing: 2px;
    }

    .gallery-slider-section {
        padding: 32px 16px;
    }

    .realisations-tabs {
        gap: 8px;
    }

    .realisation-tab {
        padding: 12px 24px;
        font-size: 14px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* =======================
   GALLERY SLIDER SECTION
   ======================= */
.gallery-slider-section {
    padding: 32px 0 32px;
    background: rgba(0, 0, 0, 0.85);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.gallery-slider-section .section-header {
    margin-bottom: 32px;
}

.gallery-slider-section .section-title {
    color: var(--white);
}

.gallery-slider-section .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.gallerySwiper {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 60px;
}

.gallerySwiper .swiper-slide {
    height: 750px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.gallerySwiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallerySwiper .swiper-slide:hover img {
    transform: scale(1.05);
}

.gallerySwiper .swiper-button-next,
.gallerySwiper .swiper-button-prev {
    color: var(--white);
    background: var(--gold-gradient);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.gallerySwiper .swiper-button-next::after,
.gallerySwiper .swiper-button-prev::after {
    font-size: 24px;
}

.gallerySwiper .swiper-button-next:hover,
.gallerySwiper .swiper-button-prev:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.gallerySwiper .swiper-pagination {
    bottom: 20px;
}

.gallerySwiper .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    width: 12px;
    height: 12px;
    margin: 0 6px;
}

.gallerySwiper .swiper-pagination-bullet-active {
    background: var(--primary-color);
    width: 36px;
    border-radius: 6px;
}

@media (max-width: 768px) {
    .realisations-grid {
        gap: 40px;
    }

    .realisation-header {
        padding: 30px 24px 16px;
    }

    .realisation-title {
        font-size: 24px;
    }

    .realisation-photos {
        padding: 24px;
    }

    .photos-swiper .swiper-slide {
        height: 300px;
    }

    .gallerySwiper {
        padding: 0 20px;
    }

    .gallerySwiper .swiper-slide {
        height: 470px;
    }

    .gallerySwiper .swiper-button-next,
    .gallerySwiper .swiper-button-prev {
        width: 45px;
        height: 45px;
    }

    .gallerySwiper .swiper-button-next::after,
    .gallerySwiper .swiper-button-prev::after {
        font-size: 18px;
    }
}

/* Très petits écrans (en dessous de 365px) */
@media (max-width: 365px) {
    .hero-title {
        font-size: clamp(26px, 7vw, 32px);
    }
}

/* =======================
   IMAGE MODAL
   ======================= */

/* Animations pour la modal - version douce */
@keyframes modalOverlayFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes modalImageFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

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

@keyframes modalImageFadeOut {
    from {
        opacity: 1;
        transform: scale(1);
    }
    to {
        opacity: 0;
        transform: scale(0.95);
    }
}

.image-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
}

.image-modal.active {
    display: flex;
}

.image-modal.closing .image-modal-overlay {
    animation: modalOverlayFadeOut 0.3s ease forwards;
}

.image-modal.closing .image-modal-img {
    animation: modalImageFadeOut 0.25s ease forwards;
}

.image-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    animation: modalOverlayFadeIn 0.25s ease forwards;
}

.image-modal-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px 20px;
    z-index: 1;
}

.image-modal-img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.7);
    animation: modalImageFadeIn 0.3s ease forwards;
}

.image-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: var(--white);
    font-size: 32px;
    font-weight: 300;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 2;
    animation: modalCloseFadeIn 0.3s ease 0.1s backwards;
}

.image-modal-close:hover {
    background: var(--gold-gradient);
    border-color: var(--primary-color);
    transform: rotate(90deg);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
}

@media (max-width: 768px) {
    .image-modal-close {
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
        font-size: 28px;
    }

    .image-modal-content {
        padding: 50px 10px 10px;
    }

    .image-modal-img {
        max-width: 95%;
        max-height: 95%;
    }
}

/* Très petits écrans - ajuster la taille du logo */
@media (max-width: 365px) {
    .logo {
        font-size: 18px;
    }

    .logo span {
        font-size: 18px !important;
    }

    .navbar .container {
        padding: 8px 12px;
    }
}
