/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

:root {
    --primary: #FFD700;
    --primary-dark: #f0c000;
    --secondary: #FF6B6B;
    --dark: #1a1a2e;
    --dark-light: #2d2d44;
    --light: #f8f9fa;
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(0,0,0,0.1);
    --shadow-hover: 0 15px 40px rgba(0,0,0,0.2);
    --radius: 15px;
    --transition: all 0.3s ease;
    --font-primary: 'Playfair Display', serif;
    --font-secondary: 'Poppins', sans-serif;
}

body {
    font-family: var(--font-secondary);
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
    transition: background 0.3s ease, color 0.3s ease;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes floatParticle {
    0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-10vh) rotate(720deg); opacity: 0; }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* ===== PARTICULES ===== */
.particle {
    position: absolute;
    background: rgba(255, 215, 0, 0.3);
    border-radius: 50%;
    pointer-events: none;
    animation: floatParticle linear infinite;
    z-index: 1;
}

/* ===== CONFETTIS ===== */
.confetti {
    position: fixed;
    z-index: 99999;
    pointer-events: none;
    animation: confettiFall linear forwards;
}

@keyframes confettiFall {
    0% { transform: translateY(0) rotate(0deg); opacity: 1; }
    100% { transform: translateY(100vh) rotate(720deg); opacity: 0; }
}

/* ===== HEADER / NAVBAR ===== */
header {
    background: var(--dark);
    color: var(--white);
    padding: 0 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.4rem;
    font-weight: bold;
    font-family: var(--font-primary);
}

.logo-img {
    height: 45px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    color: var(--white);
}

.logo-highlight {
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}
.nav-links a {
    font-size: 0.95rem;
    padding: 0.5rem 0;
    transition: var(--transition);
    border-bottom: 2px solid transparent;
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
}
.nav-links a i {
    font-size: 1rem;
    color: var(--primary);
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}
.nav-links a:hover::after {
    width: 100%;
}
.nav-links a:hover {
    color: var(--primary);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}
.menu-toggle .bar {
    width: 25px;
    height: 3px;
    background: var(--white);
    margin: 4px 0;
    transition: var(--transition);
}

/* ===== BOUTONS FLOTTANTS ===== */
.theme-btn, .music-btn, .back-to-top {
    position: fixed;
    z-index: 9999;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    transition: var(--transition);
    font-size: 1.3rem;
}
.theme-btn { top: 80px; right: 20px; background: var(--dark); color: var(--primary); }
.music-btn { bottom: 80px; right: 20px; background: var(--primary); color: var(--dark); animation: pulse 2s infinite; }
.back-to-top { bottom: 20px; right: 20px; background: var(--primary); color: var(--dark); opacity: 0; visibility: hidden; }
.back-to-top.show { opacity: 1; visibility: visible; }
.theme-btn:hover, .music-btn:hover, .back-to-top:hover {
    transform: translateY(-3px) scale(1.05);
}

/* ===== SHARE FLOATING ===== */
.share-floating {
    position: fixed;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9998;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.share-floating button {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: none;
    background: var(--dark);
    color: var(--white);
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}
.share-floating button:hover {
    transform: scale(1.1) translateX(5px);
    background: var(--primary);
    color: var(--dark);
}

/* ===== TOP BANNER ===== */
.top-banner {
    background: var(--dark);
    color: var(--white);
    padding: 10px 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 0.9rem;
    position: sticky;
    top: 70px;
    z-index: 999;
    border-bottom: 2px solid var(--primary);
}
#weather, #countdown {
    display: flex;
    align-items: center;
    gap: 10px;
}
#countdown {
    color: var(--primary);
    font-weight: bold;
}
#weather i {
    color: var(--primary);
    font-size: 1.2rem;
}

/* ===== HERO AVEC CARROUSEL ===== */
.hero {
    height: 90vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding: 2rem;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    transition: background-image 1s ease-in-out;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.6));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    animation: fadeInUp 1s ease;
}

.hero-content h1 {
    font-size: 3.8rem;
    margin-bottom: 1rem;
    font-family: var(--font-primary);
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
    min-height: 100px;
}
.hero-content p {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.5);
}

.carousel-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 2;
}
.carousel-indicators .dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: var(--transition);
}
.carousel-indicators .dot.active {
    background: var(--primary);
    transform: scale(1.3);
}
.carousel-indicators .dot:hover {
    background: var(--primary);
}

/* ===== BOUTONS ===== */
.btn-primary {
    display: inline-block;
    background: var(--primary);
    color: var(--dark);
    padding: 0.9rem 2.5rem;
    border-radius: 50px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-family: var(--font-secondary);
}
.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.4);
}

.btn-secondary {
    display: inline-block;
    background: var(--dark);
    color: var(--white);
    padding: 0.6rem 1.8rem;
    border-radius: 50px;
    font-weight: bold;
    transition: var(--transition);
    border: 2px solid var(--dark);
    cursor: pointer;
}
.btn-secondary:hover {
    background: transparent;
    color: var(--dark);
    transform: translateY(-2px);
}

/* ===== SECTIONS ===== */
.section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}
.section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 2.5rem;
    color: var(--dark);
    position: relative;
    font-family: var(--font-primary);
}
.section h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    margin: 0.5rem auto 0;
    border-radius: 2px;
}
.alt-bg {
    background: var(--light);
    padding: 4rem 2rem;
    border-radius: 30px 30px 0 0;
}

/* ===== WIDGET RÉSERVATION ===== */
.booking-widget {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-bottom: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    transition: var(--transition);
}
.booking-widget:hover {
    box-shadow: var(--shadow-hover);
}
.booking-widget h3 {
    text-align: center;
    color: var(--dark);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-family: var(--font-primary);
}
#booking-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    align-items: end;
}
.form-group {
    display: flex;
    flex-direction: column;
}
.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.3rem;
}
.form-group input, .form-group select {
    padding: 0.7rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition);
}
.form-group input:focus, .form-group select:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.2);
}
#booking-form .btn-primary {
    padding: 0.7rem 1.5rem;
    font-size: 0.95rem;
    align-self: end;
}

/* ===== CARDS - 4 CARTES SUR UNE LIGNE SANS SCROLL ===== */
.card-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    padding: 0.5rem 0;
    max-width: 1200px;
    margin: 0 auto;
}

.card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    flex: 1 1 220px;
    max-width: 280px;
    min-width: 200px;
    transition: var(--transition);
    opacity: 0;
    transform: translateY(30px);
}

.card.visible {
    opacity: 1;
    transform: translateY(0);
    animation: slideIn 0.6s ease;
}

.card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-hover);
}

.card-image {
    height: 220px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e8e8e8;
    transition: var(--transition);
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: var(--transition);
}

.card:hover .card-image img {
    transform: scale(1.05);
}

.chambre1 { background-image: url('assets/chambre1.jpg'); }
.chambre2 { background-image: url('assets/chambre2.jpg'); }
.chambre3 { background-image: url('assets/chambre3.jpg'); }

.card-content {
    padding: 1.2rem;
}

.card-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
    font-family: var(--font-primary);
}

.card-content p {
    color: #666;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.price {
    display: block;
    font-weight: bold;
    color: var(--dark);
    margin-bottom: 0.8rem;
    font-size: 1rem;
}

/* ===== SERVICES ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    text-align: center;
}
.service-item {
    background: var(--white);
    padding: 2rem 1.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    opacity: 0;
    transform: translateY(30px);
}
.service-item.visible {
    opacity: 1;
    transform: translateY(0);
    animation: slideIn 0.6s ease;
}
.service-item:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: var(--shadow-hover);
}
.service-item i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1rem;
}
.service-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
    font-family: var(--font-primary);
}
.service-item p {
    color: #555;
}

/* ===== GALERIE ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
}
.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}
.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
}
.gallery-item:hover img {
    transform: scale(1.05);
}
.gallery-item::after {
    content: '🔍';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    font-size: 3rem;
    color: var(--white);
    text-shadow: 0 0 20px rgba(0,0,0,0.8);
    transition: var(--transition);
}
.gallery-item:hover::after {
    transform: translate(-50%, -50%) scale(1);
}

/* LIGHTBOX */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    z-index: 99999;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}
.lightbox.active {
    display: flex;
}
.lightbox img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 10px;
}
.lightbox .close-btn {
    position: absolute;
    top: 20px;
    right: 30px;
    color: var(--white);
    font-size: 3rem;
    cursor: pointer;
    transition: var(--transition);
}
.lightbox .close-btn:hover {
    transform: rotate(90deg);
}

/* ===== POINTS D'INTÉRÊT ===== */
.nearby-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
}
.nearby-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}
.nearby-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}
.nearby-item i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}
.nearby-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    color: var(--dark);
}
.nearby-item p {
    color: #888;
    font-size: 0.9rem;
}

/* ===== À PROPOS ===== */
.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}
.about-content p {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}
.about-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}
.stat {
    text-align: center;
}
.stat .number {
    display: block;
    font-size: 2.8rem;
    font-weight: bold;
    color: var(--primary);
    font-family: var(--font-primary);
}
.stat .label {
    font-size: 0.95rem;
    color: #666;
}

/* ===== NEWSLETTER ===== */
.newsletter-section {
    background: linear-gradient(135deg, var(--dark), var(--dark-light));
    color: var(--white);
    border-radius: 30px;
    padding: 4rem 2rem !important;
    margin: 2rem auto;
}
.newsletter-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}
.newsletter-container h2 {
    color: var(--white);
}
.newsletter-container h2::after {
    background: var(--primary);
}
.newsletter-container p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}
.newsletter-container form {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}
.newsletter-container input {
    flex: 1;
    min-width: 200px;
    padding: 0.8rem 1.2rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
}
.newsletter-container input:focus {
    outline: 2px solid var(--primary);
}

/* ===== CONTACT ===== */
.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: center;
    align-items: flex-start;
    margin-bottom: 3rem;
}
.contact-info {
    flex: 1 1 300px;
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}
.contact-info:hover {
    box-shadow: var(--shadow-hover);
}
.contact-info h3, .contact-info h4 {
    color: var(--dark);
    margin-bottom: 1.5rem;
    font-family: var(--font-primary);
}
.contact-info p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
}
.contact-info i {
    width: 30px;
    color: var(--primary);
}
.directions {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e0e0e0;
}
#directions-result {
    margin-top: 1rem;
    padding: 1rem;
    background: var(--light);
    border-radius: 8px;
    font-size: 0.95rem;
}

.social-icons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--dark);
    color: var(--white);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    transition: var(--transition);
}
.social-icons a:hover {
    background: var(--primary);
    color: var(--dark);
    transform: translateY(-3px) rotate(10deg);
}

.contact-form {
    flex: 1 1 350px;
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: var(--transition);
}
.contact-form:hover {
    box-shadow: var(--shadow-hover);
}
.contact-form h3 {
    color: var(--dark);
    margin-bottom: 0.5rem;
    font-family: var(--font-primary);
}
.contact-form input, .contact-form textarea {
    padding: 0.8rem 1.2rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: var(--font-secondary);
    transition: var(--transition);
}
.contact-form input:focus, .contact-form textarea:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.2);
}
.contact-form button {
    align-self: flex-start;
}
#form-status {
    margin-top: 10px;
    font-weight: bold;
}

/* ===== MAPS ===== */
.map-container {
    max-width: 1200px;
    margin: 0 auto;
}
.map-container h3 {
    text-align: center;
    color: var(--dark);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-family: var(--font-primary);
}
.map-container iframe {
    transition: var(--transition);
}
.map-container iframe:hover {
    transform: scale(1.01);
    box-shadow: var(--shadow-hover);
}

/* ===== WELCOME TOAST ===== */
.welcome-toast {
    position: fixed;
    top: 80px;
    right: 20px;
    background: var(--dark);
    color: var(--primary);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: bold;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    z-index: 99999;
    transition: transform 0.5s ease, opacity 0.5s ease;
    border: 2px solid var(--primary);
}

/* ===== FOOTER ===== */
footer {
    background: var(--dark);
    color: #ccc;
    padding: 3rem 2rem 1rem;
    margin-top: 3rem;
}
.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}
.footer-section h3, .footer-section h4 {
    color: var(--white);
    margin-bottom: 1rem;
    font-family: var(--font-primary);
}
.footer-section h3 i {
    color: var(--primary);
    margin-right: 8px;
}
.footer-section p {
    color: #aaa;
    line-height: 1.6;
}
.footer-section a {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #aaa;
    margin-bottom: 0.5rem;
    transition: var(--transition);
    cursor: pointer;
}
.footer-section a:hover {
    color: var(--primary);
    padding-left: 5px;
}
.footer-section a i {
    color: var(--primary);
    font-size: 0.85rem;
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}
.footer-bottom i.fa-heart {
    color: #ff4757;
}

/* ===== MODE SOMBRE ===== */
body.dark-mode {
    background: #0f0f1a;
    color: #f0f0f0;
}
body.dark-mode .section,
body.dark-mode .card,
body.dark-mode .contact-info,
body.dark-mode .contact-form,
body.dark-mode .booking-widget,
body.dark-mode .service-item,
body.dark-mode .nearby-item {
    background: #1a1a2e;
    color: #f0f0f0;
}
body.dark-mode .alt-bg {
    background: #16162a;
}
body.dark-mode .section h2 {
    color: #f0f0f0;
}
body.dark-mode .card-content p,
body.dark-mode .service-item p,
body.dark-mode .about-content p,
body.dark-mode .nearby-item p {
    color: #bbb;
}
body.dark-mode .form-group label {
    color: #f0f0f0;
}
body.dark-mode .form-group input,
body.dark-mode .form-group select,
body.dark-mode .contact-form input,
body.dark-mode .contact-form textarea {
    background: #2d2d44;
    color: #f0f0f0;
    border-color: #444;
}
body.dark-mode .form-group input:focus,
body.dark-mode .form-group select:focus,
body.dark-mode .contact-form input:focus,
body.dark-mode .contact-form textarea:focus {
    border-color: var(--primary);
}
body.dark-mode .stat .label {
    color: #aaa;
}
body.dark-mode .contact-info p {
    color: #ddd;
}
body.dark-mode .price {
    color: var(--primary);
}
body.dark-mode .card-content h3,
body.dark-mode .service-item h3,
body.dark-mode .contact-info h3,
body.dark-mode .nearby-item h3 {
    color: #f0f0f0;
}
body.dark-mode .newsletter-section {
    background: linear-gradient(135deg, #0a0a15, #1a1a2e);
}
body.dark-mode .top-banner {
    background: #0f0f1a;
}
body.dark-mode #directions-result {
    background: #2d2d44;
    color: #f0f0f0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .hero-content h1 { font-size: 2.8rem; }
    .about-stats { gap: 2rem; }
    .share-floating { left: 10px; }
    .share-floating button { width: 38px; height: 38px; font-size: 0.9rem; }
    .logo-text { font-size: 1.1rem; }
    .logo-img { height: 35px; }
    
    /* Ajustement des cartes sur tablette */
    .card {
        flex: 1 1 200px;
        max-width: 240px;
        min-width: 180px;
    }
    
    .card-image {
        height: 180px;
    }
}

@media (max-width: 768px) {
    .navbar { height: 60px; }
    .nav-links {
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        background: var(--dark);
        flex-direction: column;
        align-items: center;
        padding: 2rem 0;
        gap: 1.5rem;
        transform: translateX(-100%);
        transition: transform 0.4s ease;
        box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        z-index: 999;
    }
    .nav-links.active { transform: translateX(0); }
    .menu-toggle { display: flex; }
    .nav-links a i {
        font-size: 1.1rem;
    }

    .top-banner {
        top: 60px;
        flex-direction: column;
        align-items: center;
        gap: 5px;
        font-size: 0.8rem;
        padding: 8px 1rem;
    }

    .hero { height: 70vh; min-height: 400px; }
    .hero-content h1 { font-size: 2rem; min-height: 60px; }
    .hero-content p { font-size: 1.1rem; }

    .section { padding: 2rem 1rem; }
    .section h2 { font-size: 2rem; }
    .alt-bg { padding: 2rem 1rem; }

    /* ===== CARDS SUR MOBILE : 2 par ligne ===== */
    .card-container {
        gap: 1rem;
        justify-content: center;
    }
    
    .card {
        flex: 1 1 170px;
        max-width: 200px;
        min-width: 150px;
    }
    
    .card-image {
        height: 160px;
    }
    
    .card-content h3 {
        font-size: 1rem;
    }
    
    .card-content p {
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
    }
    
    .price {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
    
    .btn-secondary {
        padding: 0.4rem 1rem;
        font-size: 0.8rem;
    }

    #booking-form { grid-template-columns: 1fr; }
    #booking-form .btn-primary { align-self: center; width: 100%; }

    .contact-wrapper { flex-direction: column; align-items: center; }
    .contact-form button { align-self: center; width: 100%; }
    .about-stats { flex-direction: column; gap: 1.5rem; }

    .theme-btn, .music-btn, .back-to-top {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    .theme-btn { top: 75px; right: 10px; }
    .music-btn { bottom: 75px; right: 10px; }
    .back-to-top { bottom: 15px; right: 10px; }

    .share-floating { display: none; }
    .welcome-toast { top: 70px; right: 10px; padding: 0.8rem 1.5rem; font-size: 0.9rem; }

    .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); }
    .logo-text { font-size: 0.9rem; }
    .logo-img { height: 30px; }
    .logo { gap: 6px; }
}

@media (max-width: 480px) {
    /* ===== CARDS SUR TRÈS PETIT ÉCRAN : 2 par ligne ===== */
    .card {
        flex: 1 1 140px;
        max-width: 170px;
        min-width: 130px;
    }
    
    .card-image {
        height: 130px;
    }
    
    .card-content {
        padding: 0.8rem;
    }
    
    .card-content h3 {
        font-size: 0.85rem;
    }
    
    .card-content p {
        font-size: 0.75rem;
        display: none; /* Cache la description sur très petit écran */
    }
    
    .price {
        font-size: 0.8rem;
    }
    
    .btn-secondary {
        padding: 0.3rem 0.8rem;
        font-size: 0.7rem;
    }
}