/* css/style.css - GENERATED FROM INDEX.PHP + STYLE.CSS MERGE */

/* --- CSS DU DESIGN LUXE --- */
:root {
    --gold-gradient: linear-gradient(135deg, #bf953f 0%, #fcf6ba 40%, #b38728 70%, #fbf5b7 100%);
    --gold-text: #c5a059;
    --navy-deep: #050914;
    --navy-light: #121b33;
    --white-soft: #f9f9f9;
}

html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--white-soft);
    color: #333;
    overflow-x: hidden;
    line-height: 1.8;
}

body.loading {
    overflow: hidden;
    height: 100vh;
}

h1,
h2,
h3,
h4 {
    font-family: 'Cinzel', serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--navy-deep);
}

.subtitle {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--gold-text);
    font-size: 1.5rem;
    margin-bottom: 10px;
    display: block;
}

section {
    padding: 100px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

/* --- INTRO OVERLAY --- */
#intro-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--navy-deep);
    background-image: radial-gradient(circle at center, #0a1128 0%, #050914 100%);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: opacity 1.5s ease-in-out, visibility 1.5s;
}

#intro-overlay.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.intro-stars-wrapper {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.intro-star-svg {
    width: 30px;
    height: 30px;
    fill: url(#goldGradientSvg);
    opacity: 0;
    transform: scale(0.5) rotate(-30deg);
    filter: drop-shadow(0 0 10px rgba(197, 160, 89, 0.3));
}

.intro-line {
    height: 2px;
    width: 100%;
    max-width: 400px;
    background: var(--gold-gradient);
    margin: 0 auto;
    transform: scaleX(0);
    opacity: 0;
}

.intro-line-top {
    margin-bottom: 40px;
    transform-origin: center left;
}

.intro-line-bottom {
    margin-top: 40px;
    transform-origin: center right;
}

.intro-main-title {
    font-family: 'Cinzel', serif;
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: 8px;
    text-transform: uppercase;
    color: transparent;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    opacity: 0;
    transform: translateY(40px);
    position: relative;
    margin: 0;
    line-height: 1.2;
}

.intro-shimmer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent 0%, transparent 40%, rgba(255, 255, 255, 0.6) 50%, transparent 60%, transparent 100%);
    transform: translateX(-100%);
    pointer-events: none;
}

.intro-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 4px;
    color: var(--gold-text);
    text-transform: uppercase;
    margin-top: 20px;
    opacity: 0;
    text-align: center;
    width: 100%;
}

.animate .intro-line-top {
    animation: drawLine 1.5s cubic-bezier(0.23, 1, 0.32, 1) 0.5s forwards;
}

.animate .intro-line-bottom {
    animation: drawLine 1.5s cubic-bezier(0.23, 1, 0.32, 1) 0.7s forwards;
}

.animate .intro-main-title {
    animation: revealTitle 2s cubic-bezier(0.23, 1, 0.32, 1) 1.2s forwards;
}

.animate .intro-star-svg {
    animation: popStar 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) 2.5s forwards;
}

.animate .intro-subtitle {
    animation: fadeSubtitle 2s ease-out 3.8s forwards;
}

.animate .intro-shimmer {
    animation: shimmerMove 2.5s ease-in-out 4.5s forwards;
}

@keyframes drawLine {
    0% {
        transform: scaleX(0);
        opacity: 0;
    }

    100% {
        transform: scaleX(1);
        opacity: 1;
    }
}

@keyframes revealTitle {
    0% {
        transform: translateY(40px);
        opacity: 0;
        filter: blur(10px);
    }

    100% {
        transform: translateY(0);
        opacity: 1;
        filter: blur(0px);
    }
}

@keyframes popStar {
    0% {
        transform: scale(0.5) rotate(-30deg);
        opacity: 0;
    }

    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

@keyframes fadeSubtitle {
    0% {
        opacity: 0;
        letter-spacing: 8px;
    }

    100% {
        opacity: 1;
        letter-spacing: 4px;
    }
}

@keyframes shimmerMove {
    0% {
        transform: translateX(-100%) skewX(-20deg);
    }

    100% {
        transform: translateX(100%) skewX(-20deg);
    }
}

/* --- HEADER --- */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: 0.4s ease;
    padding: 20px 0;
    background: rgba(5, 9, 20, 0.2);
    opacity: 0;
    animation: fadeInHeader 1s ease-out 6.5s forwards;
}

@keyframes fadeInHeader {
    to {
        opacity: 1;
    }
}

header.scrolled {
    background: rgba(5, 9, 20, 0.98);
    padding: 10px 0;
    border-bottom: 1px solid rgba(197, 160, 89, 0.3);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

nav {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
}

.logo {
    font-size: 1.4rem;
    color: white;
    font-weight: 700;
    display: flex;
    flex-direction: column;
    line-height: 1;
    z-index: 1001;
}

.logo span {
    font-size: 0.7rem;
    color: var(--gold-text);
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 4px;
    margin-top: 5px;
}

.nav-links {
    display: flex;
    gap: 3rem;
    list-style: none;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold-text);
    transition: 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--gold-text);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}

.bar {
    width: 30px;
    height: 2px;
    background-color: var(--gold-text);
    transition: 0.3s;
}

/* --- HERO --- */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.video-background {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: 177.777vh;
    height: 56.25vw;
    z-index: 0;
    pointer-events: none;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* C'est la propriété magique pour le plein écran */
    object-position: center;
}

.mobile-fallback {
    display: block; /* Toujours visible au chargement */
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1613490493576-7fde63acd811?w=1600') center/cover no-repeat;
    z-index: -1; /* Placée derrière l'iframe vidéo */
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(5, 9, 20, 0.4), rgba(5, 9, 20, 0.7));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 0 20px;
    opacity: 0;
    animation: fadeInHero 2s ease-out 7s forwards;
}

@keyframes fadeInHero {
    to {
        opacity: 1;
    }
}

.hero-badge {
    display: inline-block;
    border: 1px solid var(--gold-text);
    padding: 10px 20px;
    margin-bottom: 30px;
    font-family: 'Cinzel', serif;
    letter-spacing: 3px;
    color: var(--gold-text);
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
}

.hero h1 {
    font-size: 4rem;
    color: white;
    margin-bottom: 20px;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.btn-gold {
    padding: 15px 40px;
    background: var(--gold-gradient);
    color: var(--navy-deep);
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    transition: 0.3s;
    display: inline-block;
    border: none;
    cursor: pointer;
    margin-top: 20px;
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(197, 160, 89, 0.4);
}

/* --- SECTION EXPERIENCE & MONTAGE PHOTO --- */
.experience-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.stats-row {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 30px;
}

.stat-item h4 {
    font-size: 2.5rem;
    color: var(--gold-text);
    margin-bottom: 5px;
}

.stat-item span {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888;
}

/* Nouveau CSS pour l'image unique (Montage) */
.villa-visual {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(197, 160, 89, 0.2);
}

.villa-visual img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s ease;
}

.villa-visual:hover img {
    transform: scale(1.02);
}

.amenities-section {
    background: var(--navy-light);
    color: white;
}

.amenities-section h2 {
    color: white;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.amenity-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    transition: 0.4s;
    text-align: center;
}

.amenity-box:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--gold-text);
    transform: translateY(-10px);
}

.amenity-icon {
    font-size: 2.5rem;
    color: var(--gold-text);
    margin-bottom: 20px;
}

.pricing-container {
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    background: white;
    transition: 0.3s;
}

.pricing-row:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-color: transparent;
}

.pricing-row.featured {
    background: var(--navy-deep);
    color: white;
    border: none;
    margin: 20px 0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.pricing-row.featured h3,
.pricing-row.featured .price {
    color: var(--gold-text);
}

.price {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--navy-deep);
}

.unit {
    font-size: 0.8rem;
    text-transform: uppercase;
}

/* --- SECTION RÉSERVATION --- */
#reservation {
    background: #f4f4f4;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}

.booking-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.calendar-side {
    padding: 40px;
    background: white;
    border-right: 1px solid #eee;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.month-label {
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    color: var(--navy-deep);
    font-weight: bold;
}

.cal-nav {
    background: none;
    border: 1px solid #eee;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.cal-nav:hover {
    background: var(--navy-deep);
    color: white;
}

.days-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
    text-align: center;
    font-size: 0.9rem;
}

.day-label {
    color: #999;
    font-size: 0.75rem;
    margin-bottom: 10px;
}

.day-cell {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.2s;
    font-weight: 500;
}

.day-cell:hover:not(.disabled) {
    background: #f0f0f0;
}

.day-cell.disabled {
    color: #ccc;
    cursor: not-allowed;
    text-decoration: line-through;
}

.day-cell.selected {
    background: var(--gold-gradient);
    color: var(--navy-deep);
    font-weight: bold;
}

.day-cell.range {
    background: rgba(197, 160, 89, 0.2);
    border-radius: 0;
}

.day-cell.range-start {
    border-radius: 50% 0 0 50%;
}

.day-cell.range-end {
    border-radius: 0 50% 50% 0;
}

.form-side {
    padding: 40px;
    background: #fafafa;
}

.form-title {
    font-family: 'Cinzel', serif;
    color: var(--navy-deep);
    margin-bottom: 20px;
    font-size: 1.4rem;
}

.summary-box {
    background: white;
    padding: 20px;
    border-left: 3px solid var(--gold-text);
    margin-bottom: 30px;
    font-size: 0.9rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

.lux-input {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    background: white;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
}

.lux-input:focus {
    border-color: var(--gold-text);
    outline: none;
}

.option-check {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    margin-bottom: 20px;
    color: #555;
}

.option-check input {
    width: 18px;
    height: 18px;
    accent-color: var(--gold-text);
}

.contact-section {
    background: url('https://images.unsplash.com/photo-1519681393784-d120267933ba?w=1600') center/cover fixed;
    position: relative;
    color: white;
}

.contact-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(5, 9, 20, 0.9);
}

.contact-wrapper {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-details h2 {
    color: white;
    margin-bottom: 30px;
}

.contact-item {
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-item span {
    color: var(--gold-text);
    font-size: 1.5rem;
}

/* --- NOUVEAU FOOTER LUXE --- */
footer#footer-luxe {
    background-color: var(--navy-deep);
    color: #ccc;
    padding-top: 80px;
    font-family: 'Montserrat', sans-serif;
    border-top: 5px solid var(--gold-text);
    position: relative;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-col h3 {
    font-family: 'Cinzel', serif;
    color: white;
    font-size: 1.2rem;
    margin-bottom: 25px;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 1px;
    background: var(--gold-text);
}

.footer-logo {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    color: white;
    line-height: 1;
    margin-bottom: 20px;
}

.footer-logo span {
    display: block;
    font-size: 0.7rem;
    color: var(--gold-text);
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-top: 5px;
}

.footer-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 350px;
    opacity: 0.8;
}

.social-link {
    color: white;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-right: 20px;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: 0.3s;
}

.social-link:hover {
    color: var(--gold-text);
    border-color: var(--gold-text);
}

.links-col ul,
.contact-list {
    list-style: none;
}

.links-col li {
    margin-bottom: 15px;
}

.links-col a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.95rem;
    transition: 0.3s;
    display: inline-block;
}

.links-col a:hover {
    color: var(--gold-text);
    transform: translateX(5px);
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.contact-list .icon {
    color: var(--gold-text);
    font-size: 1.1rem;
}

.contact-list a {
    color: #ccc;
    text-decoration: none;
    transition: 0.3s;
}

.contact-list a:hover {
    color: white;
}

.btn-footer {
    display: inline-block;
    margin-top: 10px;
    padding: 12px 25px;
    border: 1px solid rgba(197, 160, 89, 0.5);
    color: var(--gold-text);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    transition: 0.3s;
}

.btn-footer:hover {
    background: var(--gold-text);
    color: var(--navy-deep);
    border-color: var(--gold-text);
}

.footer-bottom {
    background: #02040a;
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.legal-links a {
    color: #666;
    text-decoration: none;
    transition: 0.3s;
}

.legal-links a:hover {
    color: var(--gold-text);
}

.separator {
    margin: 0 10px;
    color: #444;
}

.signature {
    font-family: 'Cinzel', serif;
    color: #444;
    letter-spacing: 1px;
}

@media (max-width: 900px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-col h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .contact-list li {
        justify-content: center;
    }

    .footer-desc {
        margin: 0 auto 25px auto;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
    }
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-card {
    background: white;
    padding: 50px;
    border-radius: 8px;
    text-align: center;
    max-width: 500px;
    width: 90%;
    position: relative;
    border-top: 5px solid var(--gold-text);
}

.success-icon {
    width: 60px;
    height: 60px;
    background: #e8f5e9;
    color: #2e7d32;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin: 0 auto 20px;
}

@media (max-width: 900px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .experience-grid,
    .contact-wrapper,
    .booking-layout {
        grid-template-columns: 1fr;
    }

    .calendar-side,
    .form-side {
        padding: 20px;
    }

    /*.video-background {*/
    /*    display: none;*/
    /*}*/

    /*.mobile-fallback {*/
    /*    display: block;*/
    /*}*/

    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: var(--navy-deep);
        flex-direction: column;
        justify-content: center;
        transition: 0.4s;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
        padding: 50px;
    }

    .nav-links.active {
        right: 0;
    }
}

/* --- AJOUTS RESTAURATION (PMR, AVIS, ETC) --- */
.access-section {
    background-color: #fff;
    border-top: 1px solid rgba(197, 160, 89, 0.1);
    padding: 100px 5%;
    position: relative;
    overflow: hidden;
}

.access-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 80px;
}

.access-visual-side {
    flex: 0 0 45%;
    position: relative;
    display: flex;
    justify-content: center;
}

.pmr-slideshow {
    width: 100%;
    aspect-ratio: 4 / 3;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(5, 9, 20, 0.2);
    border: 1px solid rgba(197, 160, 89, 0.3);
}

.pmr-slideshow .pmr-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.5s ease-in-out, transform 6s ease;
    transform: scale(1.0);
    z-index: 1;
}

.pmr-slideshow .pmr-slide.active {
    opacity: 1;
    transform: scale(1.05);
    z-index: 2;
}

.pmr-frame-overlay {
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    z-index: 10;
    pointer-events: none;
}

/* --- CLONE POUR DIAPORAMA FAMILLE --- */
.family-slideshow {
    width: 100%;
    aspect-ratio: 4 / 3;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(5, 9, 20, 0.2);
    border: 1px solid rgba(197, 160, 89, 0.3);
}

.family-slideshow .family-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.5s ease-in-out, transform 6s ease;
    transform: scale(1.0);
    z-index: 1;
}

.family-slideshow .family-slide.active {
    opacity: 1;
    transform: scale(1.05);
    z-index: 2;
}

.access-content {
    flex: 1;
}

.access-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: var(--white-soft);
    padding: 20px;
    border-radius: 8px;
    border-left: 3px solid var(--gold-text);
    margin-bottom: 20px;
}

.access-item p {
    margin: 0;
    font-size: 0.95rem;
    color: #444;
}

.check-gold {
    color: var(--gold-text);
    font-weight: bold;
    font-size: 1.2rem;
}

.access-footer {
    font-size: 0.9rem;
    color: #888;
    font-style: italic;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

@media (max-width: 900px) {
    .access-container {
        flex-direction: column;
        gap: 40px;
    }

    .access-visual-side {
        width: 100%;
        flex: auto;
        max-width: 500px;
    }

    .access-content .section-header {
        text-align: center !important;
    }
}

.reviews-section {
    background-color: #f9f9f9;
    padding: 100px 5%;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.review-card {
    background: white;
    padding: 40px 30px;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid transparent;
    position: relative;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(197, 160, 89, 0.3);
}

.review-card.featured {
    border-top: 3px solid var(--gold-text);
}

.review-stars {
    color: var(--gold-text);
    font-size: 1.2rem;
    margin-bottom: 20px;
    letter-spacing: 5px;
}

.review-quote-icon {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    color: rgba(197, 160, 89, 0.2);
    line-height: 1;
    margin-bottom: 10px;
}

.review-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    color: #555;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 25px;
}

.review-author {
    font-family: 'Cinzel', serif;
    font-size: 0.8rem;
    color: var(--navy-deep);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-gold-outline {
    display: inline-block;
    padding: 15px 40px;
    border: 1px solid var(--gold-text);
    color: var(--gold-text);
    text-decoration: none;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 2px;
    transition: 0.3s;
}

.btn-gold-outline:hover {
    background: var(--gold-text);
    color: white;
}

/* --- NOTIFICATIONS (TOASTS) LUXE --- */
#toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.toast {
    background: white;
    color: #333;
    padding: 20px 25px;
    min-width: 300px;
    max-width: 400px;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-left: 4px solid var(--navy-deep);
    /* Couleur par défaut */
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    position: relative;
    opacity: 0;
    transform: translateX(100%);
    animation: slideInToast 0.5s forwards;
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Types de messages */
.toast.error {
    border-left-color: #d32f2f;
    /* Rouge élégant pour les erreurs */
}

.toast.success {
    border-left-color: var(--gold-text);
    /* Or pour le succès */
}

.toast.info {
    border-left-color: var(--navy-deep);
    /* Bleu pour l'info */
}

/* Animation de sortie */
.toast.hide {
    animation: slideOutToast 0.5s forwards;
}

@keyframes slideInToast {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutToast {
    from {
        transform: translateX(0);
        opacity: 1;
    }

    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* --- PROTECTION CONTRE LA COPIE --- */
/* 1. On désactive la sélection de texte partout par défaut */
body {
    -webkit-user-select: none;
    /* Safari */
    -moz-user-select: none;
    /* Firefox */
    -ms-user-select: none;
    /* IE10+/Edge */
    user-select: none;
    /* Standard */
}

/* 2. EXCEPTIONS (Zones où la copie reste autorisée) */

/* Vital : Pour que les clients puissent écrire dans le formulaire ! */
input,
textarea,
select {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

/* Pratique : On autorise la sélection sur les coordonnées (Contact & Footer) */
.contact-item,
.contact-details,
footer,
.booking-summary {
    /* Pour copier le récapitulatif si besoin */
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
    cursor: text;
    /* Change le curseur pour montrer que c'est sélectionnable */
}

/* --- MODALE CONCIERGERIE --- */
.contact-card {
    max-width: 700px; /* Plus large que la modale standard */
    background: var(--navy-deep); /* Fond Bleu Nuit */
    color: white;
    padding: 60px 40px;
    border: 1px solid var(--gold-text);
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 2rem;
    color: var(--gold-text);
    cursor: pointer;
    transition: 0.3s;
}
.close-modal:hover { transform: rotate(90deg); color: white; }

.modal-header { margin-bottom: 50px; }
.modal-header h3 { color: white; margin-top: 10px; }

.concierge-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.concierge-item {
    background: rgba(255,255,255,0.05); /* Légère transparence */
    padding: 30px;
    border-radius: 4px;
    border: 1px solid transparent;
    transition: 0.3s;
}

.concierge-item:hover {
    border-color: var(--gold-text);
    transform: translateY(-5px);
}

.icon-gold { font-size: 2.5rem; margin-bottom: 15px; }

.concierge-item h4 {
    color: var(--gold-text);
    font-size: 1rem;
    margin-bottom: 10px;
    font-family: 'Cinzel', serif;
}

.concierge-item p {
    font-size: 0.9rem;
    color: #ccc;
    margin-bottom: 25px;
    min-height: 40px; /* Pour aligner les boutons */
}

.concierge-footer {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    font-size: 0.85rem;
    color: #888;
    font-style: italic;
}

/* Mobile */
@media (max-width: 768px) {
    .concierge-grid { grid-template-columns: 1fr; }
    .contact-card { padding: 40px 20px; }
}