/* ==========================================
   CAMPING HAVRE DE BERNIÈRES - STYLE CSS
   ========================================== */

/* ==================== RESET & BASE ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Couleurs principales */
    --color-primary: #017840;
    --color-primary-light: #5ca929;
    --color-primary-dark: #017840;
    --color-accent: #017840;
    --color-accent-dark: #b08d4f;
    
    /* Couleurs neutres */
    --color-dark: #1a1a1a;
    --color-dark-light: #2c2c2c;
    --color-light: #fafafa;
    --color-white: #ffffff;
    --color-text: #2c3e50;
    --color-text-light: #666666;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Quicksand', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text);
    background: var(--color-white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

ul {
    list-style: none;
}

address {
    font-style: normal;
}

/* ==================== TYPOGRAPHY ==================== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
}

.text-accent {
    color: var(--color-primary);
}

/* ==================== CONTAINER ==================== */
.container-luxury {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==================== HEADER ==================== */
.header-luxury {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
    background: transparent;
    box-shadow: none;
}

.header-luxury .header-main {
    background: rgba(255, 255, 255, 1);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.header-luxury.scrolled {
    position: fixed;
    background: var(--color-white);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.header-luxury.scrolled .header-main {
    background: transparent;
    border-bottom: none;
}

.header-main {
    height: 100px;
    display: flex;
    align-items: center;
}

.header-main-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    height: 100%;
}

.header-logo {
    display: flex;
    align-items: center;
    height: 100%;
}

.header-logo img {
    height: 80px;
    width: auto;
    transition: var(--transition-normal);
}

.header-logo:hover img {
    transform: scale(1.05);
}

.header-nav {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.header-menu {
    display: flex;
    gap: 20px;
    align-items: center;
    height: 100%;
}

.menu-item {
    display: flex;
    align-items: center;
    height: 100%;
}

.menu-item a {
    color: white;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.2px;
    white-space: nowrap;
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
}

.menu-item a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent);
    transition: var(--transition-normal);
}

.menu-item:hover a,
.menu-item.current-menu-item a {
    color: var(--lac-accent);
}

.menu-item:hover a::after,
.menu-item.current-menu-item a::after {
    width: 100%;
}

.header-btn-booking {
    padding: 12px 20px;
    background: var(--color-accent);
    color: var(--color-white);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.3px;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(201, 169, 110, 0.3);
    transition: var(--transition-normal);
    border-radius: 5px;
}

.header-btn-booking:hover {
    background: var(--color-accent-dark);
    box-shadow: 0 8px 25px rgba(201, 169, 110, 0.4);
}

.header-burger {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    background: rgba(255, 255, 255, 0.18);
    border: 1.5px solid rgba(255, 255, 255, 0.45);
    border-radius: 50%;
    cursor: pointer;
    width: 44px;
    height: 44px;
    position: relative;
    z-index: 1001;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.header-burger:hover {
    background: rgba(255, 255, 255, 0.28);
}

.header-burger span {
    display: block;
    height: 2px;
    background: var(--color-white);
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.header-burger span:nth-child(1),
.header-burger span:nth-child(3) { width: 20px; }
.header-burger span:nth-child(2) { width: 13px; }

.header-burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
    background: var(--color-white);
}

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

.header-burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
    background: var(--color-white);
}

/* ==================== MOBILE MENU ==================== */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 1010;
    visibility: hidden;
    opacity: 0;
    transition: all 0.5s ease;
}

.mobile-menu.active {
    visibility: visible;
    opacity: 1;
}

.mobile-menu-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.98) 0%, rgba(44, 44, 44, 0.96) 100%);
}

.mobile-menu-content {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 50px 30px 40px;
    transform: scale(0.9);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.mobile-menu.active .mobile-menu-content {
    transform: scale(1);
    opacity: 1;
    transition-delay: 0.1s;
}

.mobile-menu-list {
    width: 100%;
    max-width: 500px;
}

.mobile-menu-list li {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.mobile-menu.active .mobile-menu-list li:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0.15s; }
.mobile-menu.active .mobile-menu-list li:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.25s; }
.mobile-menu.active .mobile-menu-list li:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.35s; }
.mobile-menu.active .mobile-menu-list li:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 0.45s; }
.mobile-menu.active .mobile-menu-list li:nth-child(5) { opacity: 1; transform: translateY(0); transition-delay: 0.55s; }
.mobile-menu.active .mobile-menu-list li:nth-child(6) { opacity: 1; transform: translateY(0); transition-delay: 0.65s; }
.mobile-menu.active .mobile-menu-list li:nth-child(7) { opacity: 1; transform: translateY(0); transition-delay: 0.75s; }

.mobile-menu-link {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 13px 18px;
    margin: 4px 0;
    color: var(--color-white);
    font-size: 15px;
    font-weight: 600;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.mobile-menu-link:hover {
    transform: translateX(10px) scale(1.02);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.mobile-menu-link i {
    font-size: 16px;
    min-width: 34px;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px;
    border-radius: 8px;
}

/* ==================== BOUTON CLOSE MENU MOBILE ==================== */
.mobile-menu-close {
    align-self: flex-end;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.12);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    width: 42px;
    height: 42px;
    color: var(--color-white);
    font-size: 17px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
    flex-shrink: 0;
}

.mobile-menu-close:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: rotate(90deg);
}

body.menu-open {
    overflow: hidden;
}

/* ==================== HERO BANNER ==================== */
.hero-banner {
    position: relative;
    margin-top: 0 !important;
    min-height: 100vh;
    height: 100vh;
    overflow: hidden;
}

.hero-carousel {
    position: relative;
    width: 100%;
    height: 100vh;
}

.carousel-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
    z-index: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: rgba(0, 0, 0, 0.18);
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    text-align: center;
    width: 90%;
    max-width: 1200px;
}

.hero-subtitle {
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    font-weight: 500;
}

.hero-title {
    font-size: clamp(48px, 8vw, 72px);
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 0;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.5);
    letter-spacing: 2px;
    line-height: 1.1;
}

.hero-title-italic {
    font-style: italic;
    font-weight: 400;
}

/* Booking Form Hero */
.booking-form-hero {
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    width: 90%;
    max-width: 1200px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    padding: 35px;
    border-radius: 15px;
}

.booking-field {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.booking-label {
    color: var(--color-white);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.booking-input {
    width: 100%;
    padding: 14px 18px;
    background: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 8px;
    color: var(--color-white);
    font-family: 'Quicksand', sans-serif;
    font-size: 14px;
    transition: var(--transition-normal);
}

.booking-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.booking-input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.booking-input option {
    background: var(--color-dark);
    color: var(--color-white);
}

.booking-submit {
    padding: 14px 30px;
    background: var(--color-primary);
    color: var(--color-white);
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition-normal);
}

.booking-submit:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(155, 123, 168, 0.4);
}

/* Carousel Controls */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    background: transparent;
    border: none;
    color: var(--color-white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    transition: var(--transition-normal);
    opacity: 0.85;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    padding: 10px;
}

.carousel-btn:hover {
    opacity: 1;
    transform: translateY(-50%) scale(1.15);
}

.carousel-prev {
    left: 30px;
}

.carousel-next {
    right: 30px;
}

/* ==================== SECTIONS ==================== */
.section {
    padding: var(--spacing-xl) 0;
    position: relative;
}

.section-intro {
    background: var(--color-white);
}

.section-activities {
    background: var(--color-light);
}

.section-services {
    background: var(--color-white);
}

.section-reviews {
    background: linear-gradient(135deg, #f5f0f7 0%, #faf8fb 100%);
}

.section-header-center {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-subtitle {
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 15px;
    font-weight: 600;
}

.section-title {
    font-size: clamp(32px, 5vw, 48px);
    color: var(--color-dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-line {
    width: 80px;
    height: 3px;
    background: var(--color-accent);
    margin: 0 auto 30px;
}

.section-text-intro {
    font-size: 18px;
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto;
}

.section-grid {
    display: grid;
    gap: 40px;
    margin: var(--spacing-md) 0;
}

.section-grid.two-cols {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    align-items: center;
}

.section-grid.three-cols {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

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

.section-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.section-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.section-text p {
    margin-bottom: var(--spacing-sm);
    line-height: 1.8;
}

.section-text a {
    color: var(--color-primary);
    text-decoration: underline;
}

.section-text a:hover {
    color: var(--color-primary-dark);
}

.section-text-center {
    text-align: center;
    max-width: 800px;
    margin: var(--spacing-lg) auto 0;
}

/* ==================== CARDS ==================== */
.card-activity {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: var(--transition-normal);
    background: var(--color-white);
}

.card-activity:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
}

.card-activity-image {
    position: relative;
    padding-top: 75%;
    overflow: hidden;
}

.card-activity-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.card-activity-content {
    padding: 25px;
}

.card-activity-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-text);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-service {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: var(--transition-normal);
    background: var(--color-white);
}

.card-service:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
}

.card-service-image {
    position: relative;
    padding-top: 70%;
    overflow: hidden;
}

.card-service-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.card-service-content {
    padding: 20px;
    text-align: center;
}

.card-service-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-text);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ==================== REVIEWS ==================== */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: var(--spacing-lg) 0;
}

.review-card {
    background: var(--color-white);
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
    transition: var(--transition-normal);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.1);
}

.review-stars {
    color: var(--color-accent);
    margin-bottom: 20px;
    font-size: 16px;
}

.review-stars i {
    margin-right: 3px;
}

.review-text {
    font-style: italic;
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.review-author {
    font-weight: 700;
    color: var(--color-primary);
}

.reviews-rating {
    text-align: center;
    padding: 40px;
    background: var(--color-white);
    border-radius: 10px;
    margin-top: var(--spacing-md);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
}

.rating-score {
    font-size: 48px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 15px;
}

.rating-stars {
    color: var(--color-accent);
    font-size: 24px;
    margin-bottom: 10px;
}

.rating-text {
    color: var(--color-text-light);
    font-size: 14px;
}

/* ==================== MAP ==================== */
.map-container {
    width: 100%;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
}

/* ==================== FOOTER ==================== */
.footer-luxury {
    background: var(--color-dark);
    color: rgba(255, 255, 255, 0.7);
}

.footer-main {
    padding: var(--spacing-xl) 0 var(--spacing-md);
}

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

.footer-title {
    font-size: 24px;
    color: var(--color-white);
    margin-bottom: 25px;
}

.footer-subtitle {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-white);
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-text p {
    line-height: 1.8;
    margin-bottom: var(--spacing-sm);
}

.footer-contact-items {
    margin: 25px 0;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.footer-contact-item i {
    color: var(--color-accent);
    font-size: 16px;
}

.footer-contact-item a {
    transition: var(--transition-normal);
}

.footer-contact-item a:hover {
    color: var(--color-accent);
}

.footer-socials {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.footer-social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-normal);
}

.footer-social-link:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-3px);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    transition: var(--transition-normal);
}

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

.footer-schedule {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom {
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.2);
}

.footer-bottom-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-copyright {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
}

.footer-copyright a {
    transition: var(--transition-normal);
}

.footer-copyright a:hover {
    color: var(--color-accent);
}

/* ==================== BACK TO TOP ==================== */
.topHome {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(155, 123, 168, 0.3);
    z-index: 999;
    transition: all 0.3s ease;
}

.topHome:hover {
    background: var(--color-primary-dark);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(155, 123, 168, 0.4);
}

/* ==================== HERO BOUTON CTA MOBILE ==================== */
.hero-mobile-logo {
    display: none;
    margin: 0 auto 16px;
    height: 75px;
    width: auto;
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.35));
}

.hero-mobile-actions {
    display: none;
    justify-content: center;
    align-items: center;
    margin-top: 22px;
}

.hero-btn-reserve {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 36px;
    background: var(--color-primary);
    border-radius: 50px;
    color: var(--color-white);
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.5px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(1, 120, 64, 0.4);
    transition: all 0.3s ease;
}

.hero-btn-reserve i {
    font-size: 18px;
}

.hero-btn-reserve:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(1, 120, 64, 0.5);
}


/* ==================== LOGO DROIT MOBILE ==================== */
.header-logo-right {
    display: none;
    align-items: center;
    height: 100%;
}

.header-logo-right img {
    height: 60px;
    width: auto;
    transition: var(--transition-normal);
}

/* ==================== BOUTON MENU FAB (mobile) ==================== */
.mobile-menu-fab {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.22);
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.3px;
    color: var(--color-dark);
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}

.mobile-menu-fab:hover,
.mobile-menu-fab:active {
    transform: scale(1.08);
    box-shadow: 0 6px 28px rgba(0, 0, 0, 0.28);
}

/* ==================== BOUTON RÉSERVATION FAB (mobile) ==================== */
.mobile-booking-fab {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 65px;
    height: 65px;
    background: var(--color-primary);
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 3px;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(1, 120, 64, 0.4);
    color: var(--color-white);
    text-decoration: none;
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 10px;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
}

.mobile-booking-fab i {
    font-size: 20px;
}

.mobile-booking-fab:hover,
.mobile-booking-fab:active {
    transform: scale(1.08);
    background: var(--color-primary-dark);
    box-shadow: 0 6px 28px rgba(1, 120, 64, 0.5);
}

/* ==================== NAVBAR TOP MOBILE ==================== */
.navbar-top-mobile {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 35px;
    background: var(--color-primary);
    z-index: 1002;
    align-items: center;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.navbar-top-mobile.hidden {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}

.header-luxury.navbar-top-hidden {
    top: 0 !important;
    transition: top 0.3s ease;
}

.navbar-top-inner {
    width: 100%;
    padding: 0 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.navbar-top-left {
    display: flex;
    align-items: center;
    min-width: 0;
}

.navbar-top-flower {
    height: 22px;
    width: auto;
    display: block;
}

.navbar-top-center {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 8px;
}

.navbar-top-title {
    color: var(--color-white);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    white-space: nowrap;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 20px;
    padding: 3px 12px;
}

.navbar-top-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    min-width: 0;
}

.navbar-top-social {
    color: var(--color-white);
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
    opacity: 0.9;
    line-height: 1;
    padding: 0;
    margin: 0;
}

.navbar-top-social i {
    line-height: 1;
    display: block;
}

.navbar-top-social:hover {
    opacity: 1;
}

/* ==================== LOGO MOBILE PRINCIPAL ==================== */
.header-logo-mobile-main {
    display: none;
    align-items: center;
    height: 100%;
}

.header-logo-mobile-main img {
    height: 75px;
    width: auto;
}

/* ==================== BURGER CONTAINER MOBILE ==================== */
.mobile-burger-container {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    cursor: pointer;
}


/* ==================== OVERLAYS MOBILE CAROUSEL ==================== */
.mobile-hero-photo {
    display: none;
    position: absolute;
    bottom: 25px;
    right: 15px;
    z-index: 15;
    background: rgba(255, 255, 255, 0.85);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--color-dark);
    font-size: 16px;
    backdrop-filter: blur(4px);
    transition: var(--transition-normal);
}

.mobile-hero-photo:hover {
    background: rgba(255, 255, 255, 0.97);
}

.mobile-hero-photo-count {
    position: absolute;
    bottom: -5px;
    right: -5px;
    background: var(--color-primary);
    color: var(--color-white);
    font-size: 10px;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    line-height: 1;
    pointer-events: none;
}

.mobile-hero-clicochic {
    display: none;
    position: absolute;
    bottom: 25px;
    left: 15px;
    z-index: 15;
    background: rgba(255, 255, 255, 0.88);
    border-radius: 8px;
    padding: 6px 10px;
    align-items: center;
    backdrop-filter: blur(4px);
}

.mobile-hero-clicochic img {
    height: 32px;
    width: auto;
}

.mobile-hero-reserver {
    display: none;
    position: absolute;
    bottom: 25px;
    left: 15px;
    z-index: 15;
    background: var(--color-primary);
    color: var(--color-white);
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 13px;
    text-decoration: none;
    letter-spacing: 0.3px;
    align-items: center;
    box-shadow: 0 4px 15px rgba(1, 120, 64, 0.4);
    transition: var(--transition-normal);
}

.mobile-hero-reserver:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
}

/* ==================== LOGO PEEK MOBILE ==================== */
.mobile-logo-peek {
    display: none;
    align-items: center;
    justify-content: center;
    background: var(--color-white);
}

.mobile-logo-peek img {
    max-height: 75%;
    width: auto;
    object-fit: contain;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1200px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

@media (max-width: 992px) {
    /* ---- Header ---- */
    .header-nav,
    .header-btn-booking,
    .header-logo-right,
    .header-logo {
        display: none;
    }

    /* Hamburger moderne visible en haut à droite */
    .header-burger {
        display: flex;
    }

    /* Fond adapté quand le header est scrollé (fond blanc) */
    .header-luxury.scrolled .header-burger {
        background: rgba(0, 0, 0, 0.06);
        border-color: rgba(0, 0, 0, 0.15);
    }

    .header-luxury.scrolled .header-burger span {
        background: var(--color-dark);
    }

    /* Hauteur du header mobile */
    .header-main {
        height: 80px;
    }

    /* Header FIXE sur mobile (jamais derrière le contenu) */
    .header-luxury,
    .header-luxury.scrolled {
        position: fixed !important;
        top: 35px;
    }

    /* Compensation body pour les deux headers fixes (35px + 80px) */
    body {
        padding-top: 115px;
    }

    /* Scroll-padding pour les ancres (liens du menu) */
    html {
        scroll-padding-top: 115px;
    }

    /* Header mobile toujours blanc */
    .header-luxury .header-main,
    .header-luxury.scrolled .header-main {
        background: var(--color-white) !important;
        backdrop-filter: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    }

    /* Logo mobile affiché */
    .header-logo-mobile-main {
        display: flex;
    }

    /* Container burger affiché */
    .mobile-burger-container {
        display: flex;
    }

    /* Navbar top verte affichée */
    .navbar-top-mobile {
        display: flex;
    }

    /* Burger : barres sombres sur fond blanc */
    .header-burger {
        background: transparent;
        border-color: rgba(0, 0, 0, 0.15);
    }

    .header-burger span {
        background: var(--color-dark);
    }

    .header-burger.active span:nth-child(1),
    .header-burger.active span:nth-child(3) {
        background: var(--color-dark);
    }

    .header-luxury.scrolled .header-burger {
        background: transparent;
        border-color: rgba(0, 0, 0, 0.15);
    }

    .header-luxury.scrolled .header-burger span {
        background: var(--color-dark);
    }

    /* ---- Hero ---- */
    /* Hero-content masqué sur mobile (remplacé par overlays positionnés) */
    .hero-content {
        display: none;
    }

    /* Supprimer l'overlay sombre */
    .carousel-overlay {
        display: none;
    }


    /* Afficher les overlays mobile du carousel */
    .mobile-hero-photo,
    .mobile-hero-clicochic,
    .mobile-hero-reserver {
        display: flex;
    }

    /* Masquer le formulaire de réservation */
    .booking-form-hero {
        display: none;
    }

    /* ---- FABs ---- */
    .mobile-menu-fab {
        display: none;
    }

    /* FAB réservation masqué (remplacé par le bouton dans le carousel) */
    .mobile-booking-fab {
        display: none;
    }

    /* Bouton retour en haut */
    .topHome {
        bottom: 20px;
        right: 20px;
        left: auto;
    }

    /* ---- Container pleine largeur ---- */
    .container-luxury {
        width: 100%;
        max-width: 100%;
        padding: 0 15px;
    }

    /* ---- Carousel : flex column 70% image + 30% logo peek ---- */
    /* margin-top géré par body padding-top: 115px */
    .hero-banner {
        height: calc(100vh - 115px);
        min-height: calc(100vh - 115px);
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }

    .hero-carousel {
        flex: 0 0 75%;
        min-height: 0;
        height: 75%;
    }

    /* Logo peek visible en bas de l'écran */
    .mobile-logo-peek {
        display: flex;
        flex: 0 0 25%;
    }

    /* ---- Footer ---- */
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .hero-banner {
        min-height: calc(100vh - 115px);
    }
    
    .hero-title {
        margin-bottom: 40px;
    }
    
    .booking-form-hero {
        grid-template-columns: 1fr;
        padding: 25px;
        bottom: 140px;
    }
    
    .section-grid.four-cols {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .topHome {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 576px) {
    .hero-banner {
        min-height: calc(100vh - 115px);
    }
    
    .hero-content {
        width: 95%;
    }
    
    .carousel-prev {
        left: 15px;
    }
    
    .carousel-next {
        right: 15px;
    }
    
    .section-grid.four-cols {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 36px;
    }
    
    .booking-form-hero {
        padding: 20px;
    }
}

/* ==================== SÉLECTEUR DE LANGUE ==================== */

.lang-flag {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.lang-flag svg {
    width: 24px;
    height: 16px;
    border-radius: 2px;
    display: block;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
}

/* --- Desktop dropdown --- */
.lang-switcher {
    position: relative;
    margin-right: 12px;
}

.lang-switcher-trigger {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 20px;
    padding: 5px 10px 5px 8px;
    cursor: pointer;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: all 0.2s ease;
    font-family: inherit;
}

.lang-switcher-trigger:hover {
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.55);
}

.lang-code {
    line-height: 1;
}

.lang-arrow {
    opacity: 0.75;
    transition: transform 0.2s ease;
    margin-left: 2px;
}

.lang-switcher.open .lang-arrow {
    transform: rotate(180deg);
}

.lang-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.16);
    overflow: hidden;
    min-width: 155px;
    z-index: 1000;
}

.lang-switcher.open .lang-dropdown {
    display: block;
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    text-decoration: none;
    color: #333;
    font-size: 13px;
    font-weight: 500;
    transition: background 0.15s ease;
}

.lang-option:hover {
    background: #f2f2f2;
}

.lang-option.lang-active {
    background: rgba(1, 120, 64, 0.07);
    color: var(--color-primary, #017840);
    font-weight: 700;
}

.lang-option .lang-flag svg {
    width: 26px;
    height: 18px;
}

.lang-name {
    white-space: nowrap;
}

/* --- Menu mobile lang switcher --- */
.mobile-menu-lang {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    margin-top: 8px;
    list-style: none;
}

.mobile-lang-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-decoration: none;
    padding: 7px 10px;
    border-radius: 8px;
    border: 2px solid transparent;
    transition: background 0.15s ease, border-color 0.15s ease;
}

.mobile-lang-option:hover {
    background: rgba(0, 0, 0, 0.05);
}

.mobile-lang-option.lang-active {
    border-color: var(--color-primary, #017840);
    background: rgba(1, 120, 64, 0.06);
}

.mobile-lang-option .lang-flag svg {
    width: 32px;
    height: 22px;
}

.mobile-lang-code {
    font-size: 10px;
    font-weight: 700;
    color: #666;
    letter-spacing: 0.5px;
}

.mobile-lang-option.lang-active .mobile-lang-code {
    color: var(--color-primary, #017840);
}

/* --- Mobile hero lang switcher (next to camera button) --- */
.mobile-hero-lang {
    display: none;
    position: absolute;
    bottom: 25px;
    right: 65px;
    z-index: 15;
}

.mobile-hero-lang-trigger {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.85);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
    transition: var(--transition-normal);
    padding: 0;
}

.mobile-hero-lang-trigger:hover {
    background: rgba(255, 255, 255, 0.97);
}

.mobile-hero-lang-trigger .lang-flag svg {
    width: 22px;
    height: 15px;
    border-radius: 2px;
}

.mobile-hero-lang-dropdown {
    display: none;
    position: absolute;
    bottom: calc(100% + 8px);
    right: 0;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    padding: 6px;
    flex-direction: column;
    gap: 2px;
}

.mobile-hero-lang.open .mobile-hero-lang-dropdown {
    display: flex;
}

.mobile-hero-lang-option {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px 7px;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.15s ease;
}

.mobile-hero-lang-option:hover {
    background: rgba(0, 0, 0, 0.08);
}

.mobile-hero-lang-option.lang-active {
    background: rgba(1, 120, 64, 0.15);
}

.mobile-hero-lang-option .lang-flag svg {
    width: 28px;
    height: 19px;
    border-radius: 2px;
}

/* Masquer le switcher desktop sur mobile */
@media (max-width: 768px) {
    .lang-switcher {
        display: none;
    }
}

/* Afficher le switcher hero sur tablette/mobile */
@media (max-width: 992px) {
    .mobile-hero-lang {
        display: block;
    }
}

/* ==================== MODAL MENTIONS LÉGALES ==================== */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.modal-overlay.modal-open {
    display: flex;
}
.modal-container {
    background: var(--color-white);
    border-radius: 8px;
    max-width: 800px;
    width: 100%;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}
.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 30px;
    border-bottom: 1px solid #e0e0e0;
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: 8px 8px 0 0;
}
.modal-header h2 {
    font-size: 20px;
    margin: 0;
    color: var(--color-white);
}
.modal-close {
    background: none;
    border: none;
    color: var(--color-white);
    font-size: 20px;
    cursor: pointer;
    padding: 5px;
    line-height: 1;
    transition: var(--transition-fast);
}
.modal-close:hover {
    opacity: 0.7;
}
.modal-body {
    padding: 30px;
    overflow-y: auto;
    flex: 1;
    line-height: 1.7;
}
.modal-cgv-link {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}
.modal-cgv-link a {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
}
.modal-cgv-link a:hover {
    text-decoration: underline;
}
@media (max-width: 768px) {
    .modal-container {
        max-height: 92vh;
    }
    .modal-header {
        padding: 15px 20px;
    }
    .modal-body {
        padding: 20px;
    }
}