/* ================================
   PREMIER HERO STYLES (FIXED)
================================ */

.menu-hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}


/* HERO SLIDER CONTAINER */

.hero-slider {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}


/* SLIDES */

.slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    /* ✅ FIXED IMAGE FIT */
    background-size: contain;
    /* changed from cover */
    background-position: center center;
    background-repeat: no-repeat;
    background-color: #000;
    /* fills empty space nicely */
    opacity: 0;
    transform: scale(1.05);
    transition: opacity 1.2s ease-in-out, transform 6s ease-in-out;
}


/* ACTIVE SLIDE */

.slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
    animation: kenburns 8s ease-in-out forwards;
}


/* Ken Burns effect */

@keyframes kenburns {
    from {
        transform: scale(1.05);
    }
    to {
        transform: scale(1);
    }
}


/* ================================
   OVERLAY GRADIENT
================================ */

.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( to bottom, rgba(0, 0, 0, 0.35) 0%, rgba(26, 60, 52, 0.65) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 2;
}


/* ================================
   TYPOGRAPHY
================================ */

.premier-title {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 10px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
}

.premier-divider {
    width: 60px;
    height: 3px;
    background: #ff7b00;
    margin: 15px auto;
    border-radius: 2px;
}

.premier-subtitle {
    font-size: 0.9rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    font-weight: 500;
    opacity: 0.9;
}


/* ================================
   THEME TOGGLE
================================ */

.theme-toggle {
    position: absolute;
    top: 30px;
    right: 30px;
    z-index: 100;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 10px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.theme-toggle:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: rotate(15deg);
}


/* ================================
   REVIEW BUTTON
================================ */

.review-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
    padding: 14px 28px;
    background: #ffffff;
    color: #1a3c34;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
}

.review-btn:hover {
    transform: translateY(-5px);
    background: #ff7b00;
    color: #fff;
}


/* ================================
   SCROLL INDICATOR
================================ */

.scroll-down {
    position: absolute;
    bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 5;
}

.scroll-text {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.mouse {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: #fff;
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
    0% {
        opacity: 1;
        top: 6px;
    }
    100% {
        opacity: 0;
        top: 20px;
    }
}


/* STICKY WRAPPER */

.menu-tabs-wrapper {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #ffffff;
    padding: 12px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: background 0.3s ease;
}


/* HORIZONTAL SCROLL CONTAINER */

.tabs-scroll-container {
    overflow-x: auto;
    white-space: nowrap;
    display: flex;
    justify-content: flex-start;
    padding: 0 15px;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE/Edge */
}

.tabs-scroll-container::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}






/* THE BUTTON TRACK */

.menu-tabs {
    display: flex;
    position: relative;
    background: #f1f5f4;
    /* Light gray-green tint */
    padding: 6px;
    border-radius: 50px;
    margin: 0 auto;
    /* Center on desktop */
}


/* INDIVIDUAL TAB BUTTON */

.tab {
    position: relative;
    z-index: 2;
    padding: 10px 24px;
    border: none;
    background: transparent;
    color: #555;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: color 0.3s ease;
    border-radius: 50px;
    outline: none;
}

.tab.active {
    color: #ffffff;
}


/* THE SLIDING PILL (INDICATOR) */

.tab-indicator {
    position: absolute;
    height: calc(100% - 12px);
    /* Matches padding of menu-tabs */
    top: 6px;
    left: 6px;
    background: #1a3c34;
    /* De Rain Resort Green */
    border-radius: 50px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
    box-shadow: 0 4px 10px rgba(26, 60, 52, 0.25);
}


/* DARK MODE STYLES */

body.dark-mode .menu-tabs-wrapper {
    background: #121212;
}

body.dark-mode .menu-tabs {
    background: #1e1e1e;
}

body.dark-mode .tab {
    color: #aaa;
}

body.dark-mode .tab-indicator {
    background: #ff7b00;
    /* Orange indicator for Dark Mode */
    box-shadow: 0 4px 15px rgba(255, 123, 0, 0.4);
}


/*Mobile style*/


/* =========================
   MENU HERO MOBILE FIX
   ========================= */

@media (max-width: 768px) {
    .menu-hero {
        height: 90vh;
        padding: 0 15px;
    }
    .premier-title {
        font-size: 2.2rem;
        line-height: 1.2;
    }
    .premier-subtitle {
        font-size: 0.75rem;
        letter-spacing: 3px;
    }
    .premier-divider {
        width: 45px;
        height: 2px;
    }
    .review-btn {
        padding: 12px 22px;
        font-size: 0.9rem;
        margin-top: 20px;
    }
    .theme-toggle {
        top: 15px;
        right: 15px;
        padding: 8px;
    }
    .scroll-down {
        bottom: 15px;
    }
}


/* =========================
   MENU TABS MOBILE FIX
   ========================= */

@media (max-width: 768px) {
    .menu-tabs-wrapper {
        padding: 10px 0;
    }
    .menu-tabs {
        width: max-content;
        padding: 5px;
    }
    .tab {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
    .tabs-scroll-container {
        padding: 0 10px;
    }
}

@media (max-width: 768px) {
    .slide {
        background-size: cover;
        background-position: center top;
    }
}


/*Menu section */


/* STICKY NAVIGATION WRAPPER */

.menu-modal {
    display: none;
    /* JS will change this to flex */
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}


/* This is what the JS triggers */

.menu-modal.modal-active {
    opacity: 1;
}

.modal-content-wrapper {
    max-width: 90%;
    max-height: 90vh;
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal-active .modal-content-wrapper {
    transform: scale(1);
}

#fullMenuImg {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.close-modal {
    position: absolute;
    top: 30px;
    right: 30px;
    color: rgb(253, 90, 15);
    font-size: 40px;
    cursor: pointer;
}

.menu-tabs-wrapper {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    /* Luxury glass effect */
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 10px 0;
}


/* HORIZONTAL SCROLL CONTAINER */

.tabs-scroll-container {
    overflow-x: auto;
    scrollbar-width: none;
    /* Hide scrollbar Firefox */
    -ms-overflow-style: none;
    /* Hide scrollbar IE/Edge */
    display: flex;
    justify-content: flex-start;
}

.tabs-scroll-container::-webkit-scrollbar {
    display: none;
    /* Hide scrollbar Chrome/Safari */
}


/* THE TAB BUTTONS */

.menu-tabs {
    display: flex;
    position: relative;
    padding: 0 15px;
    gap: 10px;
}

.tab {
    padding: 12px 24px;
    border: none;
    background: transparent;
    font-size: 0.95rem;
    font-weight: 600;
    color: rgb(253, 90, 15);
    cursor: pointer;
    white-space: nowrap;
    transition: color 0.3s ease;
    position: relative;
    z-index: 1;
}

.tab.active {
    color: #1a3c34;
    /* De Rain Green */
}


/* THE SLIDING INDICATOR */

.tab-indicator {
    position: absolute;
    bottom: 0;
    height: 100%;
    background: rgba(26, 60, 52, 0.08);
    /* Soft pill-shaped background */
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 0;
}


/* Hide everything by default */

.tab-content {
    display: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}


/* Only show the one with the .active class */

.tab-content.active {
    display: block;
    /* or 'grid' depending on your layout */
    opacity: 1;
}


/* DARK MODE ADJUSTMENTS */

body.dark-mode .menu-tabs-wrapper {
    background: rgba(18, 18, 18, 0.85);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

body.dark-mode .tab {
    color: #ff7b00;
}

body.dark-mode .tab.active {
    color: #ff7b00;
    /* De Rain Orange for Dark Mode contrast */
}

body.dark-mode .tab-indicator {
    background: #ff7b00;
}


/*Menu mobile*/


/* =========================
   MENU MODAL MOBILE FIX
   ========================= */

@media (max-width: 768px) {
    .modal-content-wrapper {
        max-width: 95%;
        max-height: 85vh;
    }
    #fullMenuImg {
        border-radius: 10px;
    }
    .close-modal {
        top: 15px;
        right: 15px;
        font-size: 32px;
    }
}


/* =========================
   MENU TABS MOBILE FIX
   ========================= */

@media (max-width: 768px) {
    .menu-tabs-wrapper {
        padding: 8px 0;
    }
    .tabs-scroll-container {
        padding: 0 10px;
    }
    .menu-tabs {
        gap: 8px;
        padding: 0 10px;
    }
    .tab {
        padding: 10px 16px;
        font-size: 0.85rem;
    }
    .tab-indicator {
        border-radius: 10px;
    }
}


/* Extra small phones */

@media (max-width: 480px) {
    .modal-content-wrapper {
        max-width: 98%;
        max-height: 80vh;
    }
    .close-modal {
        font-size: 28px;
    }
    .tab {
        padding: 8px 14px;
        font-size: 0.8rem;
    }
}


/*food section */


/* PREMIER MENU GRID */

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}


/* CARD LUXURY STYLING */

.menu-card {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.menu-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}


/* IMAGE WRAPPER REFINEMENT */

.card-img-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
    cursor: zoom-in;
}

.card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.menu-card:hover .card-img-wrapper img {
    transform: scale(1.1);
}


/* TEXT CONTENT */

.card-info {
    padding: 25px;
}

.card-tag {
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #ff7b00;
    /* De Rain Orange */
    margin-bottom: 10px;
}

.card-info h3 {
    font-size: 1.4rem;
    color: #1a3c34;
    margin-bottom: 10px;
}

.card-info p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 20px;
}


/* BUTTON REFINEMENT */

.view-btn {
    width: 100%;
    background: #1a3c34;
    color: white;
    border: none;
    padding: 14px;
    border-radius: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-btn:hover {
    background: #ff7b00;
}


/* ENTRANCE ANIMATION */

.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* STAGGERED LOADING (Add to first 6 cards) */

.menu-card:nth-child(1) {
    animation-delay: 0.1s;
}

.menu-card:nth-child(2) {
    animation-delay: 0.2s;
}

.menu-card:nth-child(3) {
    animation-delay: 0.3s;
}

.menu-card:nth-child(4) {
    animation-delay: 0.4s;
}

.menu-card:nth-child(5) {
    animation-delay: 0.5s;
}

.menu-card:nth-child(6) {
    animation-delay: 0.6s;
}


/*Food mobile*/


/* =========================
   MENU GRID MOBILE FIX
   ========================= */

@media (max-width: 768px) {
    .menu-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 20px;
        padding: 30px 15px;
    }
    .card-img-wrapper {
        height: 180px;
    }
    .card-info {
        padding: 20px;
    }
    .card-info h3 {
        font-size: 1.2rem;
    }
    .card-info p {
        font-size: 0.9rem;
    }
}


/* Small phones */

@media (max-width: 480px) {
    .menu-grid {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 25px 12px;
    }
    .card-img-wrapper {
        height: 170px;
    }
    .menu-card:hover {
        transform: none;
        /* disables hover lift on mobile */
    }
    .menu-card:hover .card-img-wrapper img {
        transform: none;
        /* disables zoom on mobile */
    }
    .card-info h3 {
        font-size: 1.1rem;
    }
    .card-info p {
        font-size: 0.85rem;
    }
    .view-btn {
        padding: 12px;
        font-size: 0.9rem;
    }
}


/*drinks sections*/


/* Specific Drink Tab Adjustments */

#drinks .menu-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

#drinks .card-img-wrapper img {
    object-fit: cover;
    background: #f0f0f0;
}


/* Entrance delays for the 4 drink cards */

#drinks .menu-card:nth-child(1) {
    animation-delay: 0.1s;
}

#drinks .menu-card:nth-child(2) {
    animation-delay: 0.2s;
}

#drinks .menu-card:nth-child(3) {
    animation-delay: 0.3s;
}

#drinks .menu-card:nth-child(4) {
    animation-delay: 0.4s;
}


/*Drinks mobile*/


/* =========================
   FIX IMAGE CROPPING (DRINKS)
   ========================= */


/* Default image behavior */

#drinks .card-img-wrapper img {
    object-fit: cover;
    object-position: center;
}


/* =========================
   TABLET + SMALL LAPTOP FIX
   ========================= */

@media (max-width: 768px) {
    #drinks .menu-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 18px;
    }
    #drinks .card-img-wrapper {
        height: 180px;
    }
    #drinks .card-img-wrapper img {
        object-position: center top;
        /* 👈 keeps heads visible */
    }
}


/* =========================
   SMALL PHONE FIX
   ========================= */

@media (max-width: 480px) {
    #drinks .menu-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    #drinks .card-img-wrapper {
        height: 190px;
    }
    #drinks .card-img-wrapper img {
        object-position: center top;
        /* best for portrait images */
    }
    /* Disable hover effects on mobile */
    #drinks .menu-card:hover {
        transform: none;
    }
    #drinks .menu-card:hover .card-img-wrapper img {
        transform: none;
    }
}


/*Spa section*/


/* SPA CONTAINER */

.spa-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

.spa-header {
    text-align: center;
    margin-bottom: 30px;
}

.spa-header h2 {
    color: #1a3c34;
    font-size: 2rem;
    margin-bottom: 10px;
}


/* THE TABLE LIST */

.menu-table {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    padding: 18px 25px;
    border-bottom: 1px solid #f1f1f1;
    align-items: center;
    transition: all 0.3s ease;
}

.row.header {
    background: #1a3c34;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.row.clickable {
    cursor: pointer;
}

.row.clickable:hover {
    background-color: #f0f7f4;
    transform: scale(1.01);
}

.col-service {
    font-weight: 600;
    color: #2d3436;
}

.col-price {
    font-weight: 800;
    color: #ff7b00;
    /* De Rain Orange */
}

.col-duration {
    font-size: 0.85rem;
    color: #888;
    display: flex;
    align-items: center;
    gap: 6px;
}

.spa-footer {
    text-align: center;
    margin-top: 20px;
    color: #999;
    font-size: 0.85rem;
}


/* DARK MODE */

body.dark-mode .menu-table {
    background: #1e1e1e;
    border-color: #333;
}

body.dark-mode .row {
    border-bottom-color: #2a2a2a;
}

body.dark-mode .col-service {
    color: #eee;
}

body.dark-mode .row.clickable:hover {
    background-color: #262626;
}


/*Spa mobile*/


/* =========================
   SPA SECTION MOBILE FIX
   ========================= */

@media (max-width: 768px) {
    .spa-container {
        padding: 30px 15px;
    }
    .spa-header h2 {
        font-size: 1.6rem;
    }
    .row {
        grid-template-columns: 1.5fr 1fr;
        gap: 10px;
        padding: 15px 15px;
    }
    .col-duration {
        grid-column: span 2;
        margin-top: 5px;
    }
    .row.header {
        font-size: 0.75rem;
    }
}


/* Small phones */

@media (max-width: 480px) {
    .spa-container {
        padding: 25px 12px;
    }
    .row {
        grid-template-columns: 1fr;
        text-align: left;
        gap: 5px;
        padding: 14px 12px;
    }
    .row.header {
        display: none;
        /* cleaner on mobile */
    }
    .col-service {
        font-size: 0.95rem;
    }
    .col-price {
        font-size: 0.9rem;
    }
    .col-duration {
        font-size: 0.8rem;
        justify-content: flex-start;
    }
    /* Disable hover effects on mobile */
    .row.clickable:hover {
        transform: none;
    }
}


/* LAUNDRY  LAYOUT */


/* LAUNDRY SECTION STYLING */

.laundry-container {
    max-width: 700px;
    /* Narrower for focus */
    margin: 0 auto;
    padding: 40px 20px;
}

#laundry .section-header {
    text-align: center;
    margin-bottom: 30px;
}

#laundry .section-header h2 {
    color: #1a3c34;
    font-size: 1.8rem;
}


/* TABLE OVERRIDE FOR 2 COLUMNS */

#laundry .row {
    grid-template-columns: 1fr 1fr;
    /* Equal split */
    padding: 18px 25px;
}

#laundry .col-item {
    font-weight: 600;
    color: #1a3c34;
    display: flex;
    align-items: center;
    gap: 12px;
}

#laundry .col-rate {
    text-align: right;
    font-weight: 800;
    color: #ff7b00;
    /* De Rain Orange */
}


/* SERVICE NOTE */

.table-note {
    text-align: center;
    margin-top: 25px;
    padding: 15px;
    background: rgba(26, 60, 52, 0.05);
    border-radius: 15px;
    color: #666;
    font-size: 0.85rem;
}


/* DARK MODE */

body.dark-mode #laundry .col-item {
    color: #eee;
}

body.dark-mode .table-note {
    background: rgba(255, 255, 255, 0.05);
    color: #bbb;
}


/*Laundry mobile*/


/* =========================
   LAUNDRY SECTION MOBILE FIX
   ========================= */

@media (max-width: 768px) {
    .laundry-container {
        padding: 30px 15px;
    }
    #laundry .section-header h2 {
        font-size: 1.5rem;
    }
    #laundry .row {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 15px 15px;
    }
    #laundry .col-rate {
        text-align: left;
        font-size: 0.95rem;
    }
    #laundry .col-item {
        font-size: 0.95rem;
    }
}


/* Small phones */

@media (max-width: 480px) {
    .laundry-container {
        padding: 25px 12px;
    }
    #laundry .section-header h2 {
        font-size: 1.3rem;
    }
    #laundry .row {
        padding: 14px 12px;
    }
    #laundry .col-item {
        font-size: 0.9rem;
    }
    #laundry .col-rate {
        font-size: 0.9rem;
    }
    .table-note {
        font-size: 0.8rem;
        padding: 12px;
    }
}


/* ACTIVITIES section */


/* Container & Header */

.activities-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.sub-title {
    color: #ff7b00;
    /* De Rain Orange */
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    font-size: 0.8rem;
    display: block;
    margin-bottom: 10px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #1a3c34;
    /* De Rain Green */
    margin-bottom: 15px;
}


/* Grid Logic */
.activities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}


/* Luxury Card Styling */

.activity-card {
    background: #ffffff;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.07);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
    border: 1px solid rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
}

.activity-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}


/* Image Handling */

.activity-img-wrapper {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.activity-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.activity-card:hover .activity-img-wrapper img {
    transform: scale(1.1);
}


/* Hover Overlay */

.activity-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 60, 52, 0.6);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.activity-card:hover .activity-overlay {
    opacity: 1;
}

.book-btn {
    background: #fff;
    color: #1a3c34;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}


/* Card Body */

.activity-body {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.activity-body h3 {
    font-size: 1.5rem;
    color: #1a3c34;
    margin-bottom: 12px;
}

.activity-body p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.rate-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255, 123, 0, 0.1);
    color: #ff7b00;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
}


/* Dark Mode Support */

body.dark-mode .activity-card {
    background: #1e1e1e;
    border-color: #333;
}

body.dark-mode .activity-body h3 {
    color: #eee;
}

body.dark-mode .activity-body p {
    color: #aaa;
}


/* ACTIVITIES Mobile */


/* =========================
   FIX IMAGE CROPPING (ACTIVITIES)
   ========================= */

.activity-img-wrapper img {
    object-fit: cover;
    object-position: center;
}


/* =========================
   TABLET + MOBILE FIX
   ========================= */

@media (max-width: 768px) {
    .activities-container {
        padding: 50px 15px;
    }
    .section-header h2 {
        font-size: 2rem;
    }
    
    .activity-img-wrapper {
        height: 210px;
    }
    /* 🔥 FIX: keep heads visible */
    .activity-img-wrapper img {
        object-position: center top;
    }
    .activity-body {
        padding: 22px;
    }
    .activity-body h3 {
        font-size: 1.3rem;
    }
    .activity-body p {
        font-size: 0.9rem;
    }
}


/* =========================
   SMALL PHONE FIX
   ========================= */

@media (max-width: 480px) {
    .activities-container {
        padding: 40px 12px;
    }
    .section-header h2 {
        font-size: 1.6rem;
    }
    
    .activity-img-wrapper {
        height: 220px;
    }
    /* 🔥 BEST FIX FOR PORTRAIT IMAGES */
    .activity-img-wrapper img {
        object-position: center top;
    }
    .activity-body {
        padding: 18px;
    }
    .activity-body h3 {
        font-size: 1.2rem;
    }
    .activity-body p {
        font-size: 0.85rem;
    }
    /* Disable hover effects on mobile */
    .activity-card:hover {
        transform: none;
    }
    .activity-card:hover .activity-img-wrapper img {
        transform: none;
    }
    .activity-overlay {
        opacity: 0.8;
    }
}


@media (max-width: 992px) {
    .activities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .activities-grid {
        grid-template-columns: 1fr;
    }
}


/* CONTACT SECTION */

.contact-container {
    max-width: 600px;
    margin: 60px auto;
    padding: 0 20px;
}

.contact-card {
    background: #ffffff;
    padding: 50px 40px;
    border-radius: 40px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.02);
    position: relative;
}


/* Status Badge */

.status-badge {
    position: absolute;
    top: 25px;
    right: 25px;
    background: #e8f5e9;
    color: #2e7d32;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.status-badge .dot {
    width: 8px;
    height: 8px;
    background: #4caf50;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(76, 175, 80, 0.2);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.7;
    }
    100% {
        transform: scale(0.95);
        opacity: 1;
    }
}

.contact-icon-wrapper {
    width: 80px;
    height: 80px;
    background: rgba(26, 60, 52, 0.05);
    color: #1a3c34;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 25px;
}

.contact-card h2 {
    font-size: 2rem;
    color: #1a3c34;
    margin-bottom: 15px;
}

.contact-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 35px;
}


/* BUTTONS */

.contact-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-btn {
    padding: 18px 30px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.whatsapp-btn {
    background: #25d366;
    color: white;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
}

.call-btn {
    background: #1a3c34;
    color: white;
    box-shadow: 0 10px 20px rgba(26, 60, 52, 0.2);
}

.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.contact-footer-info {
    margin-top: 30px;
    font-size: 0.85rem;
    color: #aaa;
}


/* DARK MODE */

body.dark-mode .contact-card {
    background: #1e1e1e;
    border-color: #333;
}

body.dark-mode .contact-card h2 {
    color: #fff;
}

body.dark-mode .contact-card p {
    color: #aaa;
}

body.dark-mode .status-badge {
    background: #2e7d32;
    color: #fff;
}


/*Contact mobile*/


/* =========================
   CONTACT MOBILE FIX
   ========================= */

@media (max-width: 768px) {
    .contact-container {
        margin: 40px auto;
        padding: 0 15px;
    }
    .contact-card {
        padding: 40px 25px;
        border-radius: 28px;
    }
    .contact-card h2 {
        font-size: 1.7rem;
    }
    .contact-card p {
        font-size: 0.95rem;
    }
    .contact-icon-wrapper {
        width: 70px;
        height: 70px;
        font-size: 1.6rem;
        margin-bottom: 20px;
    }
    /* Make status badge tighter on mobile */
    .status-badge {
        top: 15px;
        right: 15px;
        font-size: 0.7rem;
        padding: 5px 10px;
    }
    .status-badge .dot {
        width: 7px;
        height: 7px;
    }
    .contact-actions {
        gap: 12px;
    }
    .contact-btn {
        padding: 16px 20px;
        font-size: 0.95rem;
    }
    .contact-footer-info {
        font-size: 0.8rem;
    }
}


/* =========================
   SMALL PHONE FIX
   ========================= */

@media (max-width: 480px) {
    .contact-container {
        margin: 30px auto;
        padding: 0 12px;
    }
    .contact-card {
        padding: 30px 18px;
        border-radius: 22px;
    }
    .contact-card h2 {
        font-size: 1.5rem;
    }
    .contact-card p {
        font-size: 0.9rem;
        margin-bottom: 25px;
    }
    .contact-icon-wrapper {
        width: 60px;
        height: 60px;
        font-size: 1.4rem;
    }
    .status-badge {
        top: 12px;
        right: 12px;
        font-size: 0.65rem;
    }
    /* Stack buttons nicely */
    .contact-actions {
        flex-direction: column;
        gap: 10px;
    }
    .contact-btn {
        width: 100%;
        padding: 15px;
        font-size: 0.9rem;
    }
    .contact-btn:hover {
        transform: none;
    }
}