/* =========================
   GLOBAL FONT STYLE
========================= */

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
}

/* Headings */
h1, h2, h3, h4, h5, .section-title {
    font-family: 'Playfair Display', serif;
    letter-spacing: 0.5px;
}
/* =========================
   GLOBAL
========================= */
body {
    font-family: Arial, sans-serif;
    background: #f8f9fa;
    color: #1f2937;
}

section {
    position: relative;
}

.py-5 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
}

/* =========================
   NAVBAR
========================= */
.navbar {
    background: rgba(17, 24, 39, 0.55) !important;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    padding: 14px 0;
}

.navbar.scrolled {
    background: rgba(17, 24, 39, 0.92) !important;
    box-shadow: 0 10px 25px rgba(0,0,0,0.18);
    padding: 10px 0;
}

.navbar-brand {
    font-weight: 800;
    letter-spacing: 1px;
}

.navbar .nav-link {
    color: rgba(255,255,255,0.9) !important;
    font-weight: 600;
    margin-left: 12px;
    position: relative;
}

.navbar .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: #d6b37a;
    transition: 0.3s;
}

.navbar .nav-link:hover::after {
    width: 100%;
}

/* =========================
   HERO
========================= */
.hero-section {
    width: 100%;
    padding: 0;
    margin: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.45), rgba(0,0,0,0.7));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
}

.hero-content h1 {
    font-size: 3.2rem;
    font-weight: 800;
}

.hero-content p {
    font-size: 1.1rem;
    line-height: 1.8;
}

/* =========================
   BUTTONS
========================= */
.btn-warning {
    background: linear-gradient(135deg, #d6b37a, #b78b4a);
    border: none;
    color: #fff;
    font-weight: 700;
    border-radius: 999px;
    padding: 12px 26px;
    transition: 0.3s;
}

.btn-warning:hover {
    transform: translateY(-2px);
}

.btn-outline-light {
    border-radius: 999px;
    padding: 12px 26px;
    font-weight: 700;
}

/* =========================
   ABOUT
========================= */
.about-box {
    background: #fff;
    border-radius: 18px;
    padding: 35px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

/* =========================
   ACTIVITIES FIXED DESIGN
========================= */

.activity-card {
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    transition: 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.activity-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.14);
}

/* IMAGE FIX */
.activity-img-wrapper {
    width: 100%;
    height: auto; /* 🔥 remove fixed height */
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

/* IMPORTANT CHANGE */
.activity-img {
    width: 100%;
    height: 240px; /* medium size */
    object-fit: contain; /* 🔥 shows full image */
    object-position: center;
    display: block;
}

.activity-card:hover .activity-img {
    transform: scale(1.06);
}

/* CONTENT FIX */
.activity-content {
    padding: 20px 16px 25px;
    text-align: center;
    flex-grow: 1;
}

.activity-title {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    color: #111;
    margin-bottom: 6px;
    letter-spacing: 1px;
}

.activity-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 0;
}

/* MOBILE FIX */
@media (max-width: 768px) {
    .activity-img-wrapper {
        height: 200px;
    }
}

/* =========================
   NEARBY
========================= */
.nearby-section {
    background: #f7f5f1;
}

.section-head {
    max-width: 760px;
    margin: auto;
}

.section-subtitle {
    font-size: 13px;
    font-weight: 700;
    color: #8b6b3f;
    background: rgba(139,107,63,0.08);
    padding: 8px 16px;
    border-radius: 999px;
    display: inline-block;
}

.section-title {
    font-size: 32px;
    font-weight: 800;
    margin: 12px 0;
}

.section-desc {
    color: #6b7280;
    line-height: 1.8;
}

.nearby-card {
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: 0.3s;
    box-shadow: 0 10px 30px rgba(0,0,0,0.07);
}

.nearby-card:hover {
    transform: translateY(-6px);
}

.nearby-image-wrap {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.nearby-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s;
}

.nearby-card:hover .nearby-image {
    transform: scale(1.05);
}

.distance-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: rgba(0,0,0,0.8);
    color: #fff;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 12px;
}

.nearby-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.nearby-title {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 10px;
}

.nearby-text {
    font-size: 14px;
    line-height: 1.7;
    flex-grow: 1;
}

.nearby-link {
    margin-top: auto;
    background: #8b6b3f;
    color: #fff;
    padding: 8px 14px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
}

.nearby-link:hover {
    background: #5e4725;
}

/* =========================
   CTA
========================= */
.cta-section {
    background: linear-gradient(135deg, #1f2937, #111827);
    color: #fff;
    border-radius: 20px;
    padding: 50px 30px;
}

/* =========================
   FOOTER
========================= */
.footer {
    background: #111827;
    color: #d1d5db;
}

/* =========================
   WHATSAPP
========================= */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: #fff;
    padding: 14px 18px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

.whatsapp-float:hover {
    background: #1ebe5d;
}

/* =========================
   SCROLL ANIMATION
========================= */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: 0.8s;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* =========================
   MOBILE
========================= */
@media (max-width: 767px) {
    .hero-section,
    .hero-slide {
        min-height: 75vh;
    }

    .hero-content {
        text-align: center !important;
        padding-top: 80px;
        max-width: 100%;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .section-title {
        font-size: 24px;
    }

    .nearby-image-wrap {
        height: 200px;
    }
}
.activity-card.reveal,
.nearby-card.reveal {
    transition: opacity 0.8s ease, transform 0.8s ease, box-shadow 0.3s ease;
}

.room-card {
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    transition: 0.3s ease;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.room-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 30px rgba(0,0,0,0.14);
}

.room-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.room-content {
    padding: 18px;
}
.card input, .card button {
    border-radius: 10px;
}

.sticky-top {
    z-index: 10;
}
.hero-section,
.hero-slide {
    width: 100%;
    min-height: 88vh;
}

.hero-slide {
    display: flex;
    align-items: center;
    position: relative;
    background-position: center center !important;
    background-size: cover !important;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(0,0,0,0.68) 0%,
        rgba(0,0,0,0.42) 45%,
        rgba(0,0,0,0.18) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
    text-align: left !important;
    padding-top: 90px;
}

.hero-content h1 {
    font-size: 56px;
    line-height: 1.1;
    font-weight: 800;
    text-shadow: 0 3px 14px rgba(0,0,0,0.35);
}

.hero-content p {
    font-size: 20px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.35);
}

.hero-content .btn {
    border-radius: 50px;
    padding: 14px 34px;
    font-weight: 700;
}

.gallery-card {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.gallery-img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    transition: 0.4s ease;
}

.gallery-card:hover .gallery-img {
    transform: scale(1.06);
}
.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    font-weight: 800;
    letter-spacing: 1px;
}
.section-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}
.btn {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    letter-spacing: 0.5px;
}
.map-box {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.map-box iframe {
    width: 100% !important;
    height: 420px !important;
    border: 0;
    display: block;
}
/* =========================
   SOCIAL BUTTONS
========================= */

.social-btn {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: #fff;
    font-size: 20px;
    transition: 0.3s ease;
    text-decoration: none;
}

/* Hover Effects */
.social-btn.instagram:hover {
    background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af);
    transform: translateY(-3px);
}

.social-btn.google:hover {
    background: #ea4335;
    transform: translateY(-3px);
}
/* =========================
   PREMIUM NAVBAR + LOGO
========================= */

.navbar {
    padding: 8px 0;
    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: #ffffff;
    box-shadow: 0 4px 18px rgba(0,0,0,0.10);
}

/* Logo */
.site-logo {
    height: 58px;
    width: 58px;
    object-fit: cover;
    background: rgba(255,255,255,0.12);
    border-radius: 50%;
    padding: 0;
    filter: none;
    transition: all 0.3s ease;
}

.navbar.scrolled .site-logo {
    filter: none;
    background: rgba(0,0,0,0.04);
}

/* Brand text */
.brand-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 20px;
    color: #ffffff;
    line-height: 1.1;
    letter-spacing: 0.3px;
    transition: color 0.3s ease;
}

.navbar.scrolled .brand-title {
    color: #111;
}

.brand-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    color: rgba(255,255,255,0.75);
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.navbar.scrolled .brand-subtitle {
    color: #666;
}

/* Nav links */
.navbar .nav-link {
    font-family: 'Poppins', sans-serif;
    color: #ffffff !important;
    font-size: 14px;
    font-weight: 600;
    margin-left: 18px;
    transition: color 0.3s ease;
}

.navbar.scrolled .nav-link {
    color: #222 !important;
}

.navbar .nav-link:hover,
.navbar.scrolled .nav-link:hover {
    color: #d4af37 !important;
}

/* Mobile menu */
.navbar-toggler {
    border: none;
}

.navbar-toggler:focus {
    box-shadow: none;
}

@media (max-width: 767px) {
    .site-logo {
        height: 48px;
        width: 48px;
    }

    .brand-title {
        font-size: 16px;
    }

    .brand-subtitle {
        font-size: 9px;
    }

    .navbar-collapse {
        background: #ffffff;
        padding: 15px;
        border-radius: 12px;
        margin-top: 10px;
    }

    .navbar-collapse .nav-link {
        color: #222 !important;
        margin-left: 0;
        padding: 10px 0;
    }
}
.site-header {
    position: relative;
    z-index: 1000;
    background: #fff;
}

.top-brand-area {
    background: #ffffff;
    padding: 22px 0;
}

.main-logo {
    max-height: 115px;
    max-width: 420px;
    object-fit: contain;
}

.brand-main-text {
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    color: #333;
}

.header-icon {
    width: 42px;
    height: 42px;
    border: 1px solid #c97b5b;
    border-radius: 50%;
    color: #c97b5b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.book-now-btn {
    background: #c97b5b;
    color: #fff;
    padding: 14px 34px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: .5px;
}

.book-now-btn:hover {
    background: #a85f43;
    color: #fff;
}

.main-menu {
    background: #3c3c3c !important;
    padding: 0;
}

.main-menu .nav-link {
    color: #fff !important;
    font-size: 13px;
    font-weight: 700;
    padding: 20px 24px !important;
    letter-spacing: .3px;
}

.main-menu .nav-link:hover {
    color: #d9a06f !important;
}

@media (max-width: 767px) {
    .top-brand-area {
        padding: 14px 0;
    }

    .main-logo {
        max-height: 75px;
        max-width: 260px;
    }

    .main-menu .navbar-nav {
        text-align: center;
    }

    .main-menu .nav-link {
        padding: 12px !important;
    }
}
/* =========================
   ABOUT PREMIUM (SINGLE IMAGE)
========================= */

.about-premium-section {
    background: #f7f2eb;
}

.about-img-single {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.about-premium-content {
    padding: 20px 30px;
}

.about-premium-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 44px;
    line-height: 1.1;
    font-weight: 500;
    color: #3d3d3d;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.about-subtitle {
    font-family: 'Poppins', sans-serif;
    color: #c97b5b;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 25px;
}

.about-main-text {
    font-size: 16px;
    line-height: 1.9;
    color: #1f2937;
    margin-bottom: 20px;
}

.about-secondary-text {
    font-size: 14px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

.about-btn {
    display: inline-block;
    background: #c97b5b;
    color: #fff;
    text-decoration: none;
    padding: 12px 26px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .5px;
    text-transform: uppercase;
}

.about-btn:hover {
    background: #a85f43;
    color: #fff;
}

/* MOBILE */
@media (max-width: 768px) {
    .about-img-single {
        height: 260px;
    }

    .about-premium-content h2 {
        font-size: 32px;
    }
}
/* PACKAGES */

.package-card {
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.package-card:hover {
    transform: translateY(-6px);
}

.package-img-wrapper {
    height: 220px;
}

.package-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.package-content {
    padding: 20px;
}

.package-price {
    color: #c97b5b;
    font-weight: bold;
}
/* ========================================
   FINAL MOBILE HEADER + MENU FIX
======================================== */

@media (max-width: 991px) {

    /* Top brand area */
    .top-brand-area {
        padding: 12px 0;
        text-align: center;
    }

    .main-logo {
        max-height: 70px;
        max-width: 240px;
        object-fit: contain;
    }

    /* Main dark menu */
    .main-menu {
        background: #3c3c3c !important;
        padding: 0;
    }

    /* Container */
    .main-menu .container {
        justify-content: center !important;
    }

    /* Hamburger button */
    .navbar-toggler {
        border: none !important;
        padding: 10px;
        margin: auto;
    }

    .navbar-toggler:focus {
        box-shadow: none !important;
    }

    .navbar-toggler-icon {
        filter: brightness(0) invert(1);
    }

    /* Dropdown menu */
    .navbar-collapse {
        background: #3c3c3c !important;
        margin-top: 0;
        padding: 0 !important;
        border-radius: 0 !important;
        box-shadow: none !important;
    }

    /* Navigation list */
    .navbar-nav {
        width: 100%;
        text-align: center;
        padding: 0;
        margin: 0;
    }

    /* Links */
    .main-menu .nav-link {
        color: #ffffff !important;
        padding: 14px 0 !important;
        margin-left: 0 !important;
        border-bottom: 1px solid rgba(255,255,255,0.10);
        font-size: 13px;
        font-weight: 700;
        letter-spacing: .5px;
    }

    .main-menu .nav-link:hover {
        color: #d9a06f !important;
        background: rgba(255,255,255,0.04);
    }

    /* Hero mobile */
    .hero-content {
        text-align: center !important;
        padding-top: 90px;
    }

    .hero-content h1 {
        font-size: 34px !important;
        line-height: 1.2;
    }

    .hero-content p {
        font-size: 15px !important;
    }

    /* About */
    .about-premium-content {
        padding: 25px 10px;
        text-align: center;
    }

    .about-premium-content h2 {
        font-size: 28px;
    }

    /* Activities */
    .activity-img {
        height: 220px !important;
    }

    /* Packages */
    .package-img-wrapper {
        height: 220px;
    }

    /* Nearby */
    .nearby-image-wrap {
        height: 220px;
    }

    /* Footer */
    .footer {
        text-align: center;
    }
}