/* Variables CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-teal: #2d5a5a;
    --secondary-teal: #4a7c7c;
    --light-teal: #7ba8a8;
    --accent-gold: #d4af37;
    --light-gold: #f4e58c;
    --cream: #f8f6f0;
    --white: #ffffff;
    --text-dark: #2c3e50;
    --text-light: #6c7b7f;
    --shadow: rgba(45, 90, 90, 0.15);
}

/* Base styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: linear-gradient(135deg, var(--cream) 0%, #f0f4f4 100%);
}

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

/* Header amélioré */
header {
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--secondary-teal) 50%, var(--light-teal) 100%);
    color: white;
    padding: 3rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-20px, -20px) rotate(180deg); }
}

.logo-container {
  position: absolute;
  top: 7%;
}

.logo {
    width: 180px;
    height: 180px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 50%;
    padding: 15px;
    box-shadow: 0 10px 30px var(--shadow);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.logo img {
  object-fit: contain;
  width: auto;
  height: 180px;
}
.logo::before {
    content: '';
    position: absolute;
    inset: 10px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--primary-teal), var(--accent-gold));
    opacity: 0.1;
}

.logo-text {
    font-weight: bold;
    font-size: 1.2rem;
    color: var(--primary-teal);
    z-index: 1;
}

h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    font-weight: 300;
    letter-spacing: 3px;
    position: relative;
    z-index: 2;
}

.subtitle {
    font-size: 1.3rem;
    opacity: 0.95;
    font-style: italic;
    color: var(--light-gold);
    position: relative;
    z-index: 2;
}

/* Navigation améliorée */
nav {
    background: rgba(45, 90, 90, 0.98);
    backdrop-filter: blur(15px);
    padding: 0.5rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    transition: all 0.3s ease;
}

nav.scrolled {
    padding: 0.3rem 0;
    background: rgba(45, 90, 90, 0.98);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.nav-logo {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--accent-gold);
    text-decoration: none;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
}

nav li {
    display: inline-block;
}

nav a {
    color: white;
    text-decoration: none;
    padding: 0.6rem 1rem;
    border-radius: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
    font-size: 0.9rem;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

nav a i {
    font-size: 0.8rem;
}

nav a:hover,
nav a.active {
    background: var(--accent-gold);
    color: var(--primary-teal);
    transform: translateY(-1px);
}

/* Menu hamburger pour mobile */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-btn:hover {
    color: var(--accent-gold);
}

/* Menu mobile */
@media (max-width: 768px) {
    nav {
        padding: 0.8rem 0;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    nav ul {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(45, 90, 90, 0.98);
        backdrop-filter: blur(15px);
        flex-direction: column;
        gap: 0;
        transform: translateY(-10px);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 5px 20px var(--shadow);
        max-height: 0;
        overflow: hidden;
    }
    
    nav ul.mobile-open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        max-height: 400px;
        padding: 1rem 0;
    }
    
    nav li {
        display: block;
        width: 100%;
    }
    
    nav a {
        padding: 1rem 2rem;
        border-radius: 0;
        justify-content: flex-start;
        font-size: 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    nav a:last-child {
        border-bottom: none;
    }
    
    nav a i {
        font-size: 1rem;
        width: 20px;
    }
    
    nav a:hover {
        background: rgba(212, 175, 55, 0.2);
        transform: none;
        box-shadow: none;
    }
}

/* Sections */
section {
    padding: 5rem 0;
    margin: 2rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 4rem;
    color: var(--primary-teal);
    font-weight: 300;
    letter-spacing: 2px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-gold), var(--light-gold));
    margin: 1.5rem auto;
    border-radius: 2px;
}

/* Hero Section améliorée */
.hero {
    background: linear-gradient(135deg, 
        rgba(45, 90, 90, 0.9) 0%, 
        rgba(74, 124, 124, 0.8) 50%, 
        rgba(212, 175, 55, 0.9) 100%);
    color: white;
    text-align: center;
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    animation: drift 30s linear infinite;
}

@keyframes drift {
    0% { transform: translateX(0); }
    100% { transform: translateX(60px); }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.4);
    font-weight: 300;
    line-height: 1.2;
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

.btn-reservation {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-gold), var(--light-gold));
    color: var(--primary-teal);
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    position: relative;
    overflow: hidden;
}

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

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

.btn-reservation:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.6);
}

/* Services Grid améliorée */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px var(--shadow);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(212, 175, 55, 0.1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-teal), var(--accent-gold));
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(45, 90, 90, 0.2);
}

.service-card h3 {
    color: var(--primary-teal);
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-card h3::before {
    content: '🌿';
    font-size: 1.2rem;
}

.service-card p {
    margin-bottom: 2rem;
    color: var(--text-light);
    line-height: 1.7;
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.price::before {
    content: '';
    width: 30px;
    height: 2px;
    background: var(--accent-gold);
}

/* Pricing amélioré */
.pricing-section {
    background: var(--white);
    border-radius: 25px;
    padding: 4rem;
    margin: 3rem 0;
    box-shadow: 0 15px 50px var(--shadow);
    position: relative;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-teal), var(--accent-gold), var(--primary-teal));
    border-radius: 25px 25px 0 0;
}

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

.pricing-table {
    background: linear-gradient(135deg, var(--cream), #fafafa);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 8px 25px rgba(45, 90, 90, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.pricing-table h3 {
    color: var(--primary-teal);
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

.pricing-table h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--accent-gold);
    border-radius: 2px;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(45, 90, 90, 0.1);
    transition: background 0.3s;
}

.price-item:hover {
    background: rgba(212, 175, 55, 0.05);
    margin: 0 -1rem;
    padding-left: 1rem;
    padding-right: 1rem;
    border-radius: 10px;
}

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

.price-item span:last-child {
    font-weight: 700;
    color: var(--accent-gold);
    font-size: 1.2rem;
}

/* Forfaits améliorés */
.forfait-card {
    background: linear-gradient(135deg, var(--primary-teal), var(--secondary-teal));
    color: white;
    padding: 2rem 3rem;
    border-radius: 20px;
    margin: 1.5rem 0;
    box-shadow: 0 15px 40px rgba(45, 90, 90, 0.3);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s;
}

.forfait-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
}

.forfait-card:hover {
    transform: translateY(-5px);
}

.forfait-card h4 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--light-gold);
    position: relative;
    z-index: 1;
}

.forfait-card p {
    position: relative;
    z-index: 1;
    line-height: 1.7;
}

.forfait-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin: 2rem 0;
    position: relative;
    z-index: 1;
    margin-bottom: 0;
}

/* Horaires améliorées */
.horaires {
    background: var(--white);
    border-radius: 25px;
    padding: 4rem;
    box-shadow: 0 15px 50px var(--shadow);
    text-align: center;
}

.horaires-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.horaire-item {
    padding: 2rem 1rem;
    background: linear-gradient(135deg, var(--cream), #fafafa);
    border-radius: 15px;
    border-left: 5px solid var(--accent-gold);
    transition: all 0.3s;
    position: relative;
}

.horaire-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(45, 90, 90, 0.1);
}

.jour {
    font-weight: 700;
    color: var(--primary-teal);
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.heure {
    color: var(--text-dark);
    font-size: 1.1rem;
    font-weight: 500;
}

.ferme {
    color: #e74c3c;
    font-weight: 700;
}

/* Conditions section */
.conditions-section {
    margin-top: 3rem;
    padding: 3rem;
    background: linear-gradient(135deg, var(--primary-teal), var(--secondary-teal));
    border-radius: 20px;
    color: white;
}

.conditions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    text-align: left;
}

.conditions-section h3 {
    color: var(--light-gold);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.conditions-section h4 {
    color: var(--accent-gold);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.conditions-section ul {
    list-style: none;
    padding: 0;
}

.conditions-section li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.conditions-section li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-weight: bold;
}

/* Footer amélioré */
footer {
    background: linear-gradient(135deg, var(--primary-teal), #1a3a3a);
    color: white;
    text-align: center;
    padding: 4rem 0 2rem;
    margin-top: 5rem;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-gold), var(--light-gold), var(--accent-gold));
}

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

.footer-section h3 {
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
}

.footer-section p,
.footer-section a {
    color: #bdc3c7;
    text-decoration: none;
    margin-bottom: 0.8rem;
    display: block;
    transition: color 0.3s;
}

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

.footer-section i {
    margin-right: 0.5rem;
    color: var(--accent-gold);
}

/* Bouton réservation footer - version corrigée */
.footer-section .btn-reservation {
    background: var(--white);
    color: var(--primary-teal);
    border: 2px solid var(--accent-gold);
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.footer-section .btn-reservation:hover {
    background: var(--accent-gold);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

/* Responsive amélioré */
@media (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
    }
    
    .hero h2 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-section,
    .horaires {
        padding: 1.2rem;
    }
    #forfaits .pricing-grid {
        gap: 0rem;
        display: block;
    }
    .pricing-table {
        padding: 1.5rem;
        max-width: 81vw;
    }
    .forfait-card {
        max-width: 90vw;
        padding: 2rem 2rem;
    }
    .service-card {
        padding: 2rem;
    }
    .conditions-section {
        padding: 2rem;
    }
    .horaire-item {
        padding: 1rem;
    }
    .conditions-section h4 {
        margin-top: 3rem;
    }
    .scrolled .container {
        padding: 0;
    }
    .logo-container {
    position: relative;
    z-index: 2;
    margin-bottom: 2rem;
    }
    /* Menu mobile déjà géré dans la section navigation */
    
    .footer-section .btn-reservation {
        font-size: 0.9rem;
        padding: 0.8rem 1.5rem;
    }
    section {
    margin: 0;
    }
}

/* Animations d'entrée */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-in {
    animation: fadeInUp 0.8s ease-out forwards;
}