/* ============================================================
   KAMBANA RÉSIDENCE — REDESIGN COMPLET
   Palette tropicale festive · Architecture HTML intacte
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400;1,600&family=Jost:wght@300;400;500;600&display=swap');

/* ── RESET ── */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ── VARIABLES ── */
:root {
    /* Palette tropicale gaie */
    --primary:      /*#00897b original*/#2d5016;   /* turquoise forêt */
    --primary-dark: #00695c;   /* turquoise profond */
    --secondary:    #43a047;   /* vert lime vif */
    --accent:       #ffb300;   /* ambre mangue */
    --coral:        #ef5350;   /* corail festif */
    --pink:         #ec407a;   /* rose tropical */
    --sky:          #29b6f6;   /* ciel bleu lagon */
    --lime:         #9ccc65;   /* lime tendre */

    /* Fonds colorés */
    --bg-sun:       #fffde7;   /* jaune soleil doux */
    --bg-sky:       #e0f7fa;   /* bleu ciel pâle */
    --bg-mint:      #e8f5e9;   /* menthe claire */
    --bg-peach:     #fff3e0;   /* pêche chaude */
    --bg-rose:      #fce4ec;   /* rose pastel */
    --bg-lime:      #f1f8e9;   /* lime pâle */

    /* UI */
    --white:        #ffffff;
    --dark:         #1b3a35;   /* vert très sombre */
    --mid:          #37474f;
    --light:        #546e7a;

    /* Typo */
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body:    'Jost', 'Segoe UI', sans-serif;

    /* Espacement */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

    /* Transitions */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* ── BASE ── */
body {
    font-family: var(--font-body);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--bg-sun);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    /*border-bottom: 3px solid var(--accent);*/
    z-index: 1000;
    transition: var(--transition-smooth);
    box-shadow: 0 2px 20px rgba(0, 137, 123, 0.12);
}

.navbar.scrolled {
    box-shadow: 0 4px 30px rgba(0, 137, 123, 0.2);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.85rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    font-family: var(--font-display);
    text-decoration: none;
}

.logo img {
    border-radius: 50%;
    border: 3px solid transparent/*var(--accent)*/;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 0.25rem;
    align-items: center;
}

.nav-link {
    color: var(--mid);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.45rem 0.9rem;
    border-radius: 50px;
    position: relative;
    transition: var(--transition-smooth);
}

.nav-link::after {
    display: none;
}

.nav-link:hover {
    background: var(--bg-mint);
    color: var(--primary);
}

.nav-link.active {
    background: var(--primary);
    color: var(--white);
    font-weight: 600;
}

#englishButton button,
#frenchButton button {
    background: none;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 0.3rem 0.5rem;
    cursor: pointer;
    font-size: 1.1rem;
    transition: var(--transition-smooth);
}

#englishButton button:hover,
#frenchButton button:hover {
    border-color: var(--accent);
    transform: scale(1.1);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-toggle span {
    width: 26px;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
    transition: var(--transition-smooth);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
    height: 100vh;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Cercles décoratifs — no gradient */
.hero::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: var(--secondary);
    border-radius: 50%;
    top: -200px;
    right: -150px;
    opacity: 0.25;
}

.hero::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: var(--accent);
    border-radius: 50%;
    bottom: -160px;
    left: -100px;
    opacity: 0.2;
}

.hero-content {
    text-align: center;
    color: var(--white);
    z-index: 2;
    animation: fadeInUp 1s ease-out;
    padding: 2rem;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-family: var(--font-display);
    font-weight: 900;
    margin-bottom: 1rem;
    letter-spacing: 1px;
    line-height: 1.05;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    /*font-size: clamp(1.1rem, 2.5vw, 1.6rem);*/
    font-size: clamp(1.2rem,3vw,1.8rem);
    margin-bottom: 2.5rem;
    opacity: 0.95;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.cta-button {
    padding: 1rem 3rem;
    font-size: 1.05rem;
    background: var(--accent);
    color: var(--dark);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 700;
    font-family: var(--font-body);
    transition: var(--transition-smooth);
    box-shadow: 0 8px 28px rgba(255, 179, 0, 0.45);
    letter-spacing: 0.3px;
}

.cta-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(255, 179, 0, 0.55);
    background: var(--white);
    color: var(--primary);
}

.scroll-indicator {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.7);
    border-radius: 13px;
    position: relative;
}

.mouse::before {
    content: '';
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0%, 100% { opacity: 0; top: 8px; }
    50%       { opacity: 1; top: 16px; }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
    padding: var(--spacing-xl) 0;
    background: var(--bg-sun);
}

.about-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
    text-align: center;
    line-height: 1.2;
}

.section-subtitle {
    text-align: center;
    color: var(--light);
    font-size: 1.05rem;
    margin-bottom: 3rem;
    font-style: italic;
}

.about-text h1.section-title,
.about-text h3 {
    text-align: left;
    color: var(--primary);
    font-family: var(--font-display);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.about-text h3 {
    font-size: 1.25rem;
    color: var(--coral);
    margin-top: 1.5rem;
    padding-left: 0.8rem;
    border-left: 4px solid var(--accent);
}

.about-text p {
    margin-bottom: 1.2rem;
    color: var(--mid);
    font-size: /*1rem original*/ 1.15rem;
    line-height: 1.8;
}

.about-text em {
    color: var(--primary);
    font-style: normal;
    font-weight: 600;
}

.about-text strong {
    color: var(--coral);
}

.localisationImg1,
.localisationImg2 {
    max-width: 90%;
    border-radius: 16px;
    margin: 0.75rem 0;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
    border: 3px solid var(--accent);
    display: block;
}

/* Stats */
.about-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.stat-item {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 6px 24px rgba(0, 137, 123, 0.1);
    transition: var(--transition-smooth);
    border-top: 5px solid;
    position: relative;
    overflow: hidden;
}

.stat-item:nth-child(1) { border-color: var(--primary); }
.stat-item:nth-child(2) { border-color: var(--accent); }
.stat-item:nth-child(3) { border-color: var(--coral); }

.stat-item::before {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    opacity: 0.07;
}

.stat-item:nth-child(1)::before { background: var(--primary); }
.stat-item:nth-child(2)::before { background: var(--accent); }
.stat-item:nth-child(3)::before { background: var(--coral); }

.stat-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 40px rgba(0, 137, 123, 0.18);
}

.stat-number {
    display: block;
    font-size: 3.2rem;
    font-weight: 700;
    font-family: var(--font-display);
    line-height: 1;
    margin-bottom: 0.4rem;
}

.stat-item:nth-child(1) .stat-number { color: var(--primary); }
.stat-item:nth-child(2) .stat-number { color: var(--accent); }
.stat-item:nth-child(3) .stat-number { color: var(--coral); }

.stat-label {
    display: block;
    font-size: 0.8rem;
    color: var(--light);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
}

/* ============================================================
   ROOMS
   ============================================================ */
.rooms {
    padding: var(--spacing-xl) 0;
    background: var(--bg-sky);
}

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

.room-card {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: var(--transition-smooth);
    border: 2px solid transparent;
}

.room-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 56px rgba(0, 137, 123, 0.18);
    border-color: var(--accent);
}

.room-image {
    height: 250px;
    background: url("./image/laguna.jpg") center/cover;
    position: relative;
    overflow: hidden;
}

.room-image-2 {
    background: url("./image/tequila.jpg") center/cover;
}

.room-image-3 {
    background: url("./image/vinho.jpg") center/cover;
}

.room-image-4 {
    background: url("./image/cuisine.jpg") center/cover;
}

.room-image-5 {
    background: url("./image/complet.jpg") center/cover;
}

.room-image::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(255,255,255,0.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255,255,255,0.05) 0%, transparent 50%);
}

.room-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: var(--accent);
    color: var(--dark);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: 0 4px 14px rgba(255, 179, 0, 0.4);
}

.room-badge.eco {
    background: var(--secondary);
    color: var(--white);
}

.room-content {
    padding: 1.8rem;
}

.room-content h3 {
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 0.6rem;
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: 0.5px;
}

.room-description {
    color: var(--mid);
    margin-bottom: 1.2rem;
    line-height: 1.6;
    font-size: 1.2rem;
}

.room-features {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
}

.room-features li {
    color: var(--mid);
    font-size: 0.88rem;
    padding-left: 1.4rem;
    position: relative;
}

.room-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: 700;
}

.room-price {
    margin-bottom: 1.4rem;
    padding-top: 1rem;
    border-top: 2px dashed var(--bg-sky);
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--coral);
    font-family: var(--font-display);
}

.price-label {
    color: var(--light);
    font-size: 0.85rem;
    margin-left: 0.3rem;
}

.btn-secondary {
    width: 100%;
    padding: 0.85rem;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    font-family: var(--font-body);
    cursor: pointer;
    transition: var(--transition-smooth);
    letter-spacing: 0.3px;
}

.btn-secondary:hover {
    background: var(--accent);
    color: var(--dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 179, 0, 0.35);
}

/* ============================================================
   SERVICES
   ============================================================ */
.services {
    padding: var(--spacing-xl) 0;
    background: var(--bg-peach);
}

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

.service-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
    transition: var(--transition-smooth);
    border-bottom: 5px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card:nth-child(1) { border-color: var(--primary); }
.service-card:nth-child(2) { border-color: var(--accent); }
.service-card:nth-child(3) { border-color: var(--coral); }

.service-card::after {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    opacity: 0.06;
    transition: var(--transition-smooth);
}

.service-card:nth-child(1)::after { background: var(--primary); }
.service-card:nth-child(2)::after { background: var(--accent); }
.service-card:nth-child(3)::after { background: var(--coral); }

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.12);
}

.service-card:hover::after {
    transform: scale(2);
    opacity: 0.1;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: inline-block;
    transition: var(--transition-bounce);
}

.service-card:hover .service-icon {
    transform: scale(1.2) rotate(8deg);
}

.service-card h3 {
    font-size: 1.25rem;
    color: var(--primary);
    margin-bottom: 0.75rem;
    font-family: var(--font-display);
    font-weight: 700;
}

.service-card p {
    color: var(--mid);
    line-height: 1.65;
    font-size: 0.95rem;
}

.service-card p strong {
    color: var(--coral);
}

.service-card p em {
    color: var(--primary);
    font-style: normal;
}

.service-card ul {
    list-style: none;
    text-align: left;
    margin-top: 0.75rem;
}

.service-card ul li {
    color: var(--mid);
    font-size: 0.9rem;
    padding: 0.3rem 0 0.3rem 1.4rem;
    position: relative;
    border-bottom: 1px dashed #e0f2f1;
}

.service-card ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: 700;
}

/* ============================================================
   ACTIVITIES
   ============================================================ */
.activities {
    padding: var(--spacing-xl) 0;
    background: var(--bg-mint);
}

.activities-slider {
    position: relative;
    margin-top: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.activities-container {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 16px 56px rgba(0, 137, 123, 0.16);
    border: 3px solid var(--white);
}

.activity-slide {
    display: none;
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
}

.activity-slide.active {
    display: block;
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.activity-image {
    height: 400px;
    position: relative;
}

.activity-1 {
    background: url("./image/nature.jpg") center/cover;
}

.activity-2 {
    background: url("./image/piscine.jpg") center/cover;
}

.activity-3 {
    background: url("./image/village.jpg") center/cover;
}

.activity-4 {
    background: url("./image/parc2.jpeg") center/cover;
}

.activity-info {
    padding: 2.5rem;
    background: var(--white);
}

.activity-info h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 1rem;
    font-family: var(--font-display);
    font-weight: 700;
}

.activity-info p {
    color: var(--mid);
    line-height: 1.75;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.activity-info p em {
    color: var(--primary);
    font-style: normal;
    font-weight: 600;
}

.activity-distance {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: var(--bg-mint);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 600;
    border: 2px solid var(--secondary);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--white);
    border: 2px solid var(--accent);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    font-size: 1.4rem;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.14);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: var(--accent);
    color: var(--dark);
    border-color: var(--accent);
    transform: translateY(-50%) scale(1.12);
    box-shadow: 0 8px 28px rgba(255, 179, 0, 0.4);
}

.slider-btn.prev { left: -26px; }
.slider-btn.next { right: -26px; }

.slider-dots {
    text-align: center;
    margin-top: 1.8rem;
}

.dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #b2dfdb;
    margin: 0 5px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.dot.active,
.dot:hover {
    background: var(--primary);
    transform: scale(1.4);
    box-shadow: 0 0 0 3px rgba(0, 137, 123, 0.2);
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
    padding: var(--spacing-xl) 0;
    background: var(--bg-peach);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info h2 {
    font-size: 2.4rem;
    color: var(--primary);
    margin-bottom: 0.8rem;
    font-family: var(--font-display);
    font-weight: 700;
}

.contact-info > p {
    color: var(--mid);
    margin-bottom: 2.5rem;
    font-size: 1rem;
    font-style: italic;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
}

.contact-item {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
    padding: 1.2rem;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 3px 14px rgba(0, 0, 0, 0.06);
    transition: var(--transition-smooth);
    border-left: 4px solid transparent;
}

.contact-item:hover {
    transform: translateX(6px);
    border-left-color: var(--accent);
    box-shadow: 0 6px 20px rgba(0, 137, 123, 0.12);
}

.contact-icon {
    font-size: 1.6rem;
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: var(--bg-mint);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.contact-item h4 {
    color: var(--primary);
    margin-bottom: 0.25rem;
    font-size: 1rem;
    font-weight: 600;
    font-family: var(--font-display);
}

.contact-item p {
    color: var(--mid);
    line-height: 1.6;
    font-size: 0.92rem;
}

.contact-item a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px dashed var(--accent);
    transition: var(--transition-smooth);
}

.contact-item a:hover {
    color: var(--coral);
    border-color: var(--coral);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 3.5rem 0 1.5rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    /*background: var(--accent);*/
}

.footer::after {
    content: '';
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 280px;
    height: 280px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0.08;
}

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

.footer-section h4 {
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 0.5px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    font-size: 0.92rem;
}

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

.footer-section ul li {
    margin-bottom: 0.7rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 0.92rem;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

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

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.45rem 1rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: 0.88rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: var(--transition-smooth);
    text-decoration: none;
    width: fit-content;
}

.social-link:hover {
    background: var(--accent) !important;
    color: var(--dark) !important;
    border-color: var(--accent);
    padding-left: 1rem !important;
    transform: scale(1.03);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    position: relative;
    z-index: 1;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (min-width: 968px) {
    .activity-1, .activity-2, .activity-3, .activity-4 {
        height: 750px;
    }
    .activity-1 {
        background: url("./image/nature_ordi.jpg") center/contain no-repeat;
        height: 400px;
    }
}

@media (max-width: 968px) {
    .activity-1, .activity-2, .activity-3, .activity-4 {
        width: 100%;
        height: 500px;
    }
    .activity-1 { height: 600px; }
    .activity-4 { height: 600px; }

    .nav-links {
        position: fixed;
        top: 70px;
        right: -100%;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        padding: 2rem;
        gap: 0.5rem;
        box-shadow: 0 8px 32px rgba(0, 137, 123, 0.15);
        transition: var(--transition-smooth);
        border-top: 3px solid var(--accent);
    }

    .nav-links.active { right: 0; }

    .nav-link {
        width: 100%;
        padding: 0.7rem 1.2rem;
        border-radius: 12px;
    }

    .menu-toggle { display: flex; }

    .menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(7px, 7px); }
    .menu-toggle.active span:nth-child(2) { opacity: 0; }
    .menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(7px, -7px); }

    .about-content { grid-template-columns: 1fr; gap: 2.5rem; }
    .contact-grid  { grid-template-columns: 1fr; gap: 2.5rem; }

    .slider-btn.prev { left: 8px; }
    .slider-btn.next { right: 8px; }
}

@media (max-width: 640px) {
    .activity-1, .activity-4 { height: 500px; }

    :root {
        --spacing-lg: 3rem;
        --spacing-xl: 4rem;
    }

    .hero-title    { font-size: 2.5rem; }
    .hero-subtitle { font-size: 1rem; }

    .rooms-grid    { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }

    .footer-content { grid-template-columns: 1fr; gap: 2rem; }
}
