/* Variables CSS pour éviter les doublons */
:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #27ae60;
    --winter-color: #3498db;
    --text-dark: #2c3e50;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --shadow: 0 5px 15px rgba(0,0,0,0.1);
    --shadow-hover: 0 10px 25px rgba(0,0,0,0.15);
    --border-radius: 10px;
    --transition: all 0.3s ease;
    --font-primary: 'Montserrat', sans-serif;
    --font-heading: 'Yeseva One', serif;
}

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

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

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

/* Styles de boutons unifiés */
.btn {
    padding: 15px 30px;
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
    text-align: center;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary {
    background-color: #2c3e50;
    color: #ffffff;
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: #ffffff;
    color: #2c3e50;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background-color: white;
    color: #2c3e50;
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: #2c3e50;
    color: white;
}

.btn-accent {
    background-color: var(--accent-color);
    color: var(--white);
    border: 2px solid var(--accent-color);
}

.btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-accent.winter {
    background-color: var(--winter-color);
    border-color: var(--winter-color);
}

/* Top Bar */
.top-bar {
    background-color: var(--primary-color);
    color: rgba(255, 255, 255, 0);
    padding: 10px 0;
    font-size: 14px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    margin-left: 20px;
}

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

.social-link img {
    width: 20px;
    height: 20px;
    opacity: 0.8;
    transition: var(--transition);
}

.social-link:hover img {
    opacity: 1;
    transform: scale(1.1);
}

/* Header amélioré */
header {
    background: transparent;
    backdrop-filter: none;
    padding: 12px 0;
    box-shadow: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: none;
    transition: all 0.3s ease;
}

/* Navigation container */
nav {
    background: #25d36500;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.navtransparent {
    background-color: transparent !important;
    
    -webkit-backdrop-filter: blur(10px);
}
/* Logo amélioré */
.logo {
    transition: transform 0.3s ease;
    z-index: 10 ;
}

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

.logo img {
    margin-top: 20px;
    height: 190px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
    transition: height 0.3s ease;
}

/* Navigation links CORRIGÉE - SANS transform sur hover */
.nav-links {
    display: flex;
    list-style: none;
    gap: 25px; /* Espacement augmenté pour éviter les conflits */
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-links li {
    position: relative;
    animation: fadeInNav 0.6s ease-out forwards;
    opacity: 0;
    /* Padding pour séparer les hitboxes */
    padding: 0 5px;
}

.nav-links li:nth-child(1) { animation-delay: 0.1s; }
.nav-links li:nth-child(2) { animation-delay: 0.2s; }
.nav-links li:nth-child(3) { animation-delay: 0.3s; }
.nav-links li:nth-child(4) { animation-delay: 0.4s; }
.nav-links li:nth-child(5) { animation-delay: 0.5s; }
.nav-links li:nth-child(6) { animation-delay: 0.6s; }

/* Style UNIFORME pour tous les liens de navigation */
.nav-links a {
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    color: rgba(255, 255, 255, 0) !important;
    background: rgba(255, 255, 255, 0) !important;
    padding: 12px 20px;
    border-radius: 25px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(44, 62, 80, 0.2);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    display: block;
}

/* Effet de survol SANS transform pour éviter les bugs de hitbox */
.nav-links a:hover {
    color: var(--white) !important;
    background: linear-gradient(135deg, var(--primary-color), #34495e) !important;
    border-color: var(--primary-color);
    /* PAS de transform - juste ombre plus prononcée */
    box-shadow: 0 8px 25px rgba(44, 62, 80, 0.4);
    border-width: 2px;
}

/* Page active - style UNIFORME */
.nav-links a.active {
    background: var(--primary-color) !important;
    color: var(--white) !important;
    box-shadow: 0 4px 15px rgba(44, 62, 80, 0.2);
    border-color: var(--primary-color);
}

/* Indicateur de page active */
.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: var(--white);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

/* Effet de brillance au survol */
.nav-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0), transparent);
    transition: left 0.5s ease;
    z-index: 1;
}

.nav-links a:hover::before {
    left: 100%;
}

/* IMPORTANT : Surcharger tous les styles existants */
.nav-links a,
.nav-links a:link,
.nav-links a:visited {
    color: var(--primary-color) !important;
    background: rgba(255, 255, 255, 0.9) !important;
    border: 1px solid rgba(44, 62, 80, 0.2) !important;
}

.nav-links a:hover,
.nav-links a:focus {
    color: var(--white) !important;
    background: linear-gradient(135deg, var(--primary-color), #34495e) !important;
    border-color: var(--primary-color) !important;
}

/* Mobile menu amélioré */
.mobile-menu {
    display: none;
    background: var(--primary-color);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 8px;
    cursor: pointer;
    color: var(--white);
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(44, 62, 80, 0.2);
}

.mobile-menu:hover {
    background: #34495e;
    transform: scale(1.05);
}

.mobile-menu.active {
    background: #e74c3c;
    transform: rotate(90deg);
}

/* Effet de scroll sur le header */
.header-scrolled {
    background: rgba(255, 255, 255, 0);
    backdrop-filter: blur(0px);
    box-shadow: 0 4px 30px rgba(44, 62, 80, 0);
}



.header-scrolled .nav-links a {
    padding: 10px 18px;
    font-size: 0.9rem;
}

/* Animations */
@keyframes fadeInNav {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: translateX(-50%) scale(1);
        opacity: 1;
    }
    50% {
        transform: translateX(-50%) scale(1.2);
        opacity: 0.7;
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Amélioration de l'accessibilité */
.nav-links a:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.mobile-menu:focus {
    outline: 2px solid var(--white);
    outline-offset: 2px;
}

/* Responsive Design pour navigation */
@media (max-width: 768px) {
    .mobile-menu {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: calc(100% + 10px);
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 25px 20px;
        border-radius: 15px;
        box-shadow: 0 15px 35px rgba(44, 62, 80, 0.15);
        gap: 15px;
        border: 1px solid rgba(44, 62, 80, 0.1);
        animation: slideDown 0.3s ease-out;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links li {
        padding: 0; /* Pas de padding sur mobile */
    }
    
    .nav-links a {
        width: 100%;
        text-align: center;
        padding: 15px 25px;
        border-radius: 12px;
        font-size: 1rem;
        background: rgba(255, 255, 255, 0.9) !important;
        color: var(--primary-color) !important;
        border: 1px solid rgba(44, 62, 80, 0.1) !important;
    }
    
    .nav-links a:hover {
        /* Pas de transform sur mobile non plus */
        background: var(--primary-color) !important;
        color: var(--white) !important;
        box-shadow: 0 4px 15px rgba(44, 62, 80, 0.3);
    }
}

/* Responsive design pour tablettes */
@media (max-width: 1024px) and (min-width: 769px) {
    .nav-links {
        gap: 15px;
    }
    
    .nav-links a {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
    
    .logo img {
        height: 65px;
    }
}

/* Style pour les écrans très larges */
@media (min-width: 1400px) {
    .nav-links {
        gap: 30px;
    }
    
    .nav-links a {
        padding: 14px 24px;
        font-size: 1rem;
    }
}

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

.bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(44, 62, 80, 0), rgba(44, 62, 80, 0.4));
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    padding: 40px;
    background: rgba(87, 87, 87, 0.527);
    border-radius: 20px;
    z-index: 2;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 500;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.95;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Section Styles */
.section {
    padding: 80px 0;
}

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

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Concept Section */
.concept-section {
    background-color: var(--primary-color);
}

.concept-section .section-header h2,
.concept-section .section-header p {
    color: var(--white);
}

.tabs-container {
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.tabs-header {
    display: flex;
    background-color: #4b6988;
}

.tab-button {
    flex: 1;
    padding: 25px 20px;
    background: none;
    border: none;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.tab-button.active {
    background-color: var(--white);
    color: var(--primary-color);
}

.tab-button:not(.active):hover {
    background-color: var(--primary-color);
}

.tab-icon {
    display: block;
    font-size: 3rem;
    margin-bottom: 10px;
}

.tab-title {
    display: block;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.tab-period {
    display: block;
    font-size: 0.9rem;
    opacity: 0.8;
}

.tab-content {
    display: none;
    padding: 50px;
}

.tab-content.active {
    display: block;
}

.tab-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.tab-image {
    position: relative;
}

.tab-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--border-radius);
}

.image-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
}

.tab-text h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.period-badge {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 30px;
}

.period-badge.winter {
    background-color: var(--winter-color);
}

.features-list {
    margin-bottom: 30px;
}

.feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    gap: 15px;
}

.feature-icon {
    font-size: 2rem;
    min-width: 40px;
}

.feature strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.feature p {
    color: var(--text-light);
    line-height: 1.5;
}

/* Terroir Section */
.terroir-section {
    background-color: var(--bg-light);
}

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

.terroir-text h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.terroir-intro {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 40px;
    line-height: 1.6;
}

.terroir-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-label {
    display: block;
    font-size: 14px;
    color: var(--text-dark);
    margin-top: 5px;
    font-weight: 500;
}

.terroir-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.terroir-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background-color: var(--primary-color);
    border-radius: var(--border-radius);
    color: var(--white);
    transition: var(--transition);
}

.terroir-feature:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.terroir-icon {
    font-size: 2rem;
}

/* Slideshow optimisé */
.terroir-slideshow {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.slide {
    display: none;
    width: 100%;
    height: 400px;
}

.slide.active {
    display: block;
}

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

.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-color);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    color: var(--white);
    transition: var(--transition);
    z-index: 10;
}

.nav-arrow:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
}

.prev { left: 15px; }
.next { right: 15px; }

.dots-container {
    text-align: center;
    padding: 15px 0;
    background: rgba(255,255,255,0.9);
}

.dot {
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background-color: var(--text-light);
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background-color: var(--primary-color);
    transform: scale(1.2);
}

/* Location Section */
.location-section {
    background-color: #e8f4fd;
}

.location-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.location-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.location-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.location-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 600;
}

.distance {
    color: #8B4513;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.carte-container {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.carte-container iframe {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

/* Social Section */
.social-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
}

.social-section .section-header h2,
.social-section .section-header p {
    color: var(--white);
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.social-card {
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: var(--transition);
}

.social-card:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.15);
}

.social-card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.social-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.social-card p {
    margin-bottom: 20px;
    opacity: 0.9;
}

.social-btn {
    background: var(--white);
    color: var(--primary-color);
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
}

.social-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(255,255,255,0.3);
}

/* Reservation Section */
.reservation-section {
    background-color: var(--bg-light);
}

.reservation-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

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

.reservation-buttons h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.contact-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 30px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.contact-btn.whatsapp {
    background: #25D366;
    color: var(--white);
}

.contact-btn.phone {
    background: var(--primary-color);
    color: var(--white);
}

.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.contact-icon {
    font-size: 1.5rem;
}

.horaires-info {
    margin-top: 30px;
    padding: 20px;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.horaires-info h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.reservation-note {
    margin-top: 15px;
    font-style: italic;
    color: var(--text-light);
}

.tripadvisor-widget {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
}

.tripadvisor-widget h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.rating-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
}

.stars {
    font-size: 2rem;
    color: #00AA6C;
}

.rating-score {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.avis-count {
    margin-bottom: 15px;
    color: var(--text-light);
}

.testimonial {
    background: var(--bg-light);
    padding: 15px;
    border-radius: var(--border-radius);
    margin-bottom: 15px;
}

.testimonial p {
    font-style: italic;
    color: var(--text-dark);
}

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

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

.footer-section h3 {
    margin-bottom: 20px;
    font-size: 1.3rem;
    font-weight: 600;
}

.footer-section p,
.footer-section li {
    color: #bdc3c7;
    line-height: 1.6;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: var(--transition);
}

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

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

.footer-social img {
    width: 30px;
    height: 30px;
    opacity: 0.7;
    transition: var(--transition);
}

.footer-social a:hover img {
    opacity: 1;
    transform: scale(1.1);
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: #95a5a6;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .top-bar .container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .tabs-header {
        flex-direction: column;
    }
    
    .tab-layout,
    .terroir-content,
    .reservation-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .tab-content {
        padding: 30px 20px;
    }
    
    .terroir-stats {
        justify-content: space-around;
        gap: 20px;
    }
    
    .terroir-features {
        grid-template-columns: 1fr;
    }
    
    .location-grid,
    .social-grid {
        grid-template-columns: 1fr;
    }
    
    .carte-container iframe {
        width: 100%;
        height: 300px;
    }
    
    .contact-btn {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

/* CSS SUPPLÉMENTAIRE pour la page Bulles  */

/* Hero spécifique aux Bulles */
.bulles-hero {
    background: linear-gradient(rgba(39, 174, 96, 0.3), rgba(39, 174, 96, 0.1));
}

.bulles-hero .hero-overlay {
    background: linear-gradient(rgba(39, 174, 96, 0.4), rgba(44, 62, 80, 0.6));
}

/* Section Concept Détaillé */
.concept-detail-section {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: var(--white);
}

.concept-detail-section .section-header h2,
.concept-detail-section .section-header p {
    color: var(--white);
}

.concept-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.concept-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.concept-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.concept-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.concept-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--white);
}

.concept-card p {
    opacity: 0.9;
    line-height: 1.6;
}

/* Section Horaires */
.horaires-section {
    background-color: var(--bg-light);
}

.horaires-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    margin-top: 50px;
    align-items: start;
}

.horaires-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.horaires-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.main-hours {
    grid-row: span 2;
    background: linear-gradient(135deg, var(--accent-color), #2ecc71);
    color: var(--white);
}

.season-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.season-badge.summer {
    background: rgba(255, 255, 255, 0.2);
}

.main-hours h3 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.period-text {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.dates-detail {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 1.1rem;
    opacity: 0.9;
}

.horaires-grid {
    display: grid;
    gap: 20px;
}

.horaires-card h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.time-text {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 10px;
}

/* Section Carte */
.carte-section {
    background: var(--white);
}

.carte-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.carte-btn {
    background: rgba(44, 62, 80, 0.1);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 12px 20px;
    border-radius: 25px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
    font-size: 16px;
}

.carte-btn.active,
.carte-btn:hover {
    background: var(--primary-color);
    color: var(--white);
}

.carte-content {
    margin-top: 50px;
}

.carte-category {
    display: none;
}

.carte-category.active {
    display: block;
}

.carte-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.carte-header h3 {
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: 700;
}

.carte-subtitle {
    font-style: italic;
    color: var(--text-light);
    margin-top: 10px;
}

.pdf-link {
    background: #e74c3c;
    color: var(--white);
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    font-size: 14px;
}

.pdf-link:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

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

.carte-item {
    background: var(--bg-light);
    padding: 25px;
    border-radius: 15px;
    border-left: 4px solid var(--accent-color);
    transition: var(--transition);
    position: relative;
}

.carte-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.carte-item.featured {
    background: linear-gradient(135deg, #fff3cd, #ffeaa7);
    border-left-color: #f39c12;
}

.featured-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: #f39c12;
    color: var(--white);
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
}

.carte-item h4 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.carte-item p {
    color: var(--text-light);
    line-height: 1.5;
    margin-bottom: 15px;
}

.price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent-color);
    float: right;
}

/* Section Avis */
.avis-section {
    background: var(--bg-light);
}

.avis-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.avis-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.avis-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.avis-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: var(--accent-color);
    opacity: 0.3;
    font-family: serif;
}

.avis-rating {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #f39c12;
}

.avis-text {
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 20px;
    color: var(--text-dark);
    padding-left: 20px;
}

.avis-author {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.avis-date {
    font-size: 0.9rem;
    color: var(--text-light);
}

.avis-footer {
    margin-top: 50px;
    text-align: center;
}

.avis-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.avis-stats .stat {
    text-align: center;
}

.avis-stats .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
}

.avis-stats .stat-label {
    display: block;
    font-size: 14px;
    color: var(--text-dark);
    margin-top: 5px;
    font-weight: 500;
}

/* Responsive pour page Bulles */
@media (max-width: 768px) {
    .concept-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .horaires-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .carte-nav {
        gap: 8px;
    }
    
    .carte-btn {
        padding: 10px 15px;
        font-size: 14px;
    }
    
    .carte-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .carte-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .avis-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .avis-stats {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .concept-card {
        padding: 20px;
    }
    
    .carte-nav {
        flex-direction: column;
        align-items: center;
    }
    
    .carte-btn {
        width: 80%;
        text-align: center;
    }
}