/* ===============================
   RESET & BASE (MOBILE FIRST)
================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --footer-height: 72px;
}

html,
body {
    width: 100%;
    height: 100%;
}

body {
  font-family: "Montserrat", sans-serif; /* default */
  background: #000;
  color: #fff;
  overflow: hidden;
}

/* ===============================
   PRELOADER
================================ */
#preloader {
    position: fixed;
    inset: 0;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

/* ===============================
   HEADER (MOBILE FIRST)
================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 94px;

    display: flex;
    align-items: center;
    justify-content: flex-end;
    /* mobile: right aligned */

    padding: 4px;
    /* 4px from all sides */
    z-index: 100;
}

.header img {
    height: 78px;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.4));
}


/* ===============================
   TABLET & ABOVE (CENTER LOGO)
================================ */
@media (min-width: 768px) {
    .header {
        justify-content: center;
        /* center logo */
        padding: 0;
        /* remove mobile padding */
    }

    .header img {
        height: 130px;
        padding: 30px;
    }
}




/* ===============================
   WHATSAPP BUTTON
================================ */
.whatsapp-btn {
    position: fixed;
    bottom: 46px;
    right: 22px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #25d366;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 120;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .4);
    transition: transform .3s ease;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
}

.whatsapp-btn img {
    width: 26px;
}

@media (max-width: 480px) {
    .whatsapp-btn {
        display: none;
    }
}

@media (min-width: 768px) {
    .whatsapp-btn {
        display: flex;
    }
}


/* ===============================
   VIEWPORT & SLIDES
================================ */
#viewport {
    position: fixed;
    inset: 0;
    overflow: hidden;
}

.slide {
    position: absolute;
    inset: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

/* ===============================
   BACKGROUNDS
================================ */
.bg img,
.bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===============================
   OVERLAY (CONTACT VIDEO)
================================ */
.overlay-dark {
    position: absolute;
    inset: 0;
    background: rgba(0, 67, 4, 0.678);
    z-index: 1;
}

/* ===============================
   CONTENT
================================ */
/* ===============================
   CONTENT (MOBILE FIRST)
================================ */
.content {
    position: absolute;
    z-index: 2;
    bottom: 14%;
    /* tighter for mobile */
    padding: 22px 10px 42px 34px;
    /* mobile-friendly padding */
    max-width: 100%;
}

.left {
    left: 0;
    text-align: left;
}

.right {
    right: 0;
    text-align: right;
}

/* ===============================
   TYPOGRAPHY (MOBILE)
================================ */
/* HEADINGS — MONTSERRAT */
h1,
h2,
h3 {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
}

/* Specific heading sizes */
h1,
h2 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.25;
}

h3 {
  font-size: 14px;
  opacity: 0.85;
  margin-top: 6px;
}

/* PARAGRAPHS — GREAT VIBES */
p {
  font-family: "Great Vibes", cursive;
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.6;
  opacity: 0.85;
}

/* ===============================
   TABLET ≥ 768px
================================ */
@media (min-width: 768px) {
    .content {
        bottom: 18%;
        padding: 20px 60px;
        max-width: 520px;
    }

    h1,
    h2 {
        font-size: 32px;
    }

    h3 {
        font-size: 15px;
    }

    p {
        font-size: 14px;
    }
}

/* ===============================
   LAPTOP ≥ 1024px
================================ */
@media (min-width: 1024px) {
    .content {
        bottom: 22%;
        padding: 24px 90px;
        /* your original spacing restored */
        max-width: 620px;
    }

    h1,
    h2 {
        font-size: 40px;
    }

    p {
        font-size: 15px;
    }
}

/* ===============================
   DESKTOP ≥ 1440px
================================ */
@media (min-width: 1440px) {
    .content {
        max-width: 720px;
    }

    h1,
    h2 {
        font-size: 48px;
    }

    p {
        font-size: 16px;
    }
}

/* ===============================
   4K ≥ 1920px
================================ */
@media (min-width: 1920px) {
    .content {
        max-width: 880px;
    }

    h1,
    h2 {
        font-size: 56px;
    }

    p {
        font-size: 18px;
    }
}


/* ===============================
   BUTTONS (MODERN)
================================ */
.buttons {
    margin-top: 20px;
    display: flex;
    gap: 12px;
}

button,
.btn-outline {
    padding: 12px 22px;
    border-radius: 999px;
    font-size: 14px;
    cursor: pointer;
    transition: all .3s ease;
    border: none;
}

button {
    background: linear-gradient(135deg, #ffbf00, #b8962e);
    font-weight: 600;
    color: #003804;
}

button:not(.mf-fab):hover {
    transform: translateY(-2px);
}


.btn-outline {
    border: 3px solid rgba(255, 204, 0, 0.5);
    background: transparent;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
}

.btn-outline:hover {
    background: rgba(0, 56, 1, 0.219);
}

/* ===============================
   AMENITIES 
================================ */
.amenities {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    /* wrap on small screens */
    gap: 10px 16px;
    /* row / column gap */
    margin-bottom: 14px;
    padding: 0;
    color: #ffd900;
    font-weight: 600;
}

.amenities li {
    font-size: 13px;
    white-space: nowrap;
    /* keep text in one line */
    opacity: 0.85;
}


/* ===============================
   CONTACT SLIDE (MOBILE FIRST)
================================ */
.slide-footer {
    position: relative;
    height: 100vh;
    overflow-y: auto;
    /* ONLY scroll container */
    -webkit-overflow-scrolling: touch;
    display: flex;
    flex-direction: column;
}

/* Dark overlay */
.slide-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

/* Contact wrapper */
.contact-wrap {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    /* MOBILE STACK */
    gap: 20px;
    padding: 20px 34px;
}

/* Columns */
.contact-left,
.contact-right {
    width: 100%;
}

/* Map */
.contact-left iframe {
    width: 100%;
    height: 180px;
    border-radius: 8px;
    border: 0;
    margin: 12px 0;
}

/* Glass form */
.contact-right {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    padding: 20px;
    border-radius: 12px;
}

/* Inputs */
.contact-right input,
.contact-right textarea {
    width: 100%;
    padding: 12px;
    background: rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    margin-bottom: 12px;
    border-radius: 6px;
}

/* ===============================
   FOOTER (MOBILE FIRST)
================================ */
footer {
    position: relative;
    z-index: 2;
    padding: 8px 20px 140px;
    font-size: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
}

/* ===============================
   TABLET ≥ 768px
================================ */
@media (min-width: 768px) {
    .contact-wrap {
        flex-direction: row;
        /* 50 / 50 */
        align-items: flex-start;
        gap: 30px;
        padding: 30px 40px;
    }

    .contact-left,
    .contact-right {
        width: 50%;
    }

    footer {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
        padding: 20px;
    }
}

/* ===============================
   LAPTOP ≥ 1024px
================================ */
@media (min-width: 1024px) {
    .contact-wrap {
        padding: 90px 60px;
        gap: 40px;
    }

    .contact-left iframe {
        height: 220px;
        max-width: 420px;
    }

    footer {
        padding: 12px;
    }
}

/* ===============================
   DESKTOP ≥ 1440px
================================ */
@media (min-width: 1440px) {
    .contact-wrap {
        padding: 210px 60px;
    }
    .contact-left iframe {
        height: 250px;
        max-width: 500px;
    }
    footer {
        padding: 20px;
    }
}

/* ===============================
   4K ≥ 1920px
================================ */
@media (min-width: 1920px) {
    .contact-wrap {
        max-width: 1600px;
        margin: 0 auto;
        padding: 370px 80px;
    }
    footer {
        padding: 40px;
    }
}


/* ===============================
   MODALS (MOBILE FIRST)
================================ */
.modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);

    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 0;
    pointer-events: none;

    z-index: 300;
    transition: opacity 0.3s ease;
}

/* Active state */
.modal.active {
    opacity: 1;
    pointer-events: auto;
}

/* ===============================
   MODAL CONTENT (MOBILE)
   Fullscreen for usability
================================ */
.modal-content {
    width: 100%;
    height: 100%;
    background: #1b1b1b;

    padding: 20px;
    border-radius: 0;

    overflow-y: auto;
    -webkit-overflow-scrolling: touch;

    transform: scale(0.96);
    transition: transform 0.3s ease;
}

.modal.active .modal-content {
    transform: scale(1);
}

/* ===============================
   TABLET ≥ 768px
   Centered dialog
================================ */
@media (min-width: 768px) {
    .modal-content {
        width: 90%;
        max-width: 600px;
        height: auto;
        max-height: 80vh;

        border-radius: 12px;
        padding: 24px;
    }
}

/* ===============================
   LAPTOP ≥ 1024px
================================ */
@media (min-width: 1024px) {
    .modal-content {
        max-width: 720px;
        padding: 32px;
    }
}

/* ===============================
   DESKTOP ≥ 1440px
================================ */
@media (min-width: 1440px) {
    .modal-content {
        max-width: 800px;
    }
}

/* ===============================
   4K ≥ 1920px
================================ */
@media (min-width: 1920px) {
    .modal-content {
        max-width: 960px;
        padding: 40px;
    }
}

/* Pull to go back indicator */
.pull-indicator {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    font-size: 12px;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.8);
    opacity: 0;
    pointer-events: none;
    z-index: 3;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.pull-indicator.active {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}






/* ===============================
   SLIDE INDICATORS (MOBILE FIRST)
================================ */
.slide-indicators {
    position: fixed;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 120;
}

/* Individual dot */
.slide-indicators button {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 234, 0, 0.326);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

/* Active dot */
.slide-indicators button.active {
    background: #ffbf00;
    box-shadow: 0 0 0 3px rgba(0, 67, 4, 0.326);
    transform: scale(1.4);
}

/* Hover (desktop only) */
@media (hover: hover) {
    .slide-indicators button:hover {
        background: #ffd900;
        transform: scale(1.3);
    }
}

/* ===============================
   TABLET & ABOVE
================================ */
@media (min-width: 768px) {
    .slide-indicators {
        left: 24px;
    }
}

/* ===============================
   DESKTOP & 4K
================================ */
@media (min-width: 1440px) {
    .slide-indicators {
        left: 32px;
    }
}

/* ===============================
   MOBILE FOOTER 
================================ */
.mobile-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 72px;
    background: rgba(33, 59, 56, 0.75);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);

    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 28px;
    z-index: 200;

    -webkit-clip-path: url(#footer-notch);
    clip-path: url(#footer-notch);
}

/* ===============================
   EXPLORE FAB — MOBILE ONLY
   (SEPARATE FROM FOOTER, NO CLIP)
================================ */

/* DEFAULT: HIDE EVERYWHERE */
.mf-fab {
    display: none;
}

/* MOBILE ONLY */
@media (max-width: 767px) {
    .mf-fab {
        position: fixed;

        /* LOCKED CENTER */
        left: 50%;
        transform: translateX(-50%) !important;

        /* LOCKED ABOVE FOOTER */
        bottom: calc(72px - 62px + env(safe-area-inset-bottom));
        /* footer height - half button */

        width: 64px;
        height: 64px;
        border-radius: 50%;

        background: #f4c430;
        border: none;
        color: #003804;

        display: flex;
        align-items: center;
        justify-content: center;

        z-index: 999;
        /* ABOVE footer + curve */
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
    }
}

/* ===============================
   ICON ROTATION ONLY
================================ */
.mf-fab i {
    font-size: 22px;
    transition: transform 0.6s ease;
}

.mf-fab.active i {
    transform: rotate(360deg);
}

.mf-fab:hover {
    transform: translateX(-50%) !important;
}

/* SIDE ACTIONS */
.mf-action {
    background: transparent;
    border: none;
    text-decoration: none;
    text-align: center;
    font-size: 11px;
    color: #ffffff;
    display: flex;
    flex-direction: column;
}

.mf-action i {
    font-size: 18px;
}

/* ===============================
   BACKDROP BLUR
================================ */
.explore-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .6);
    backdrop-filter: blur(10px);
    opacity: 0;
    pointer-events: none;
    transition: .3s ease;
    z-index: 180;
}

.explore-backdrop.active {
    opacity: 1;
    pointer-events: auto;
}

/* ===============================
   EXPLORE MENU (CURVED)
================================ */
.explore-menu {
    position: fixed;
    bottom: 120px;
    left: 50%;
    width: 260px;
    height: 140px;
    transform: translateX(-50%) scale(0);
    z-index: 210;
    transition: .35s ease;
}

.explore-menu.active {
    transform: translateX(-50%) scale(1);
}

.explore-menu button,
.explore-menu a {
    position: absolute;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: #fff;
    border: none;
    text-align: center;
    font-size: 18px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.explore-menu span {
    font-size: 10px;
    margin-top: 4px;
}

/* ARC POSITIONS */
.explore-menu button:nth-child(1) {
    left: 0;
    bottom: 0;
}

.explore-menu button:nth-child(2) {
    left: 66px;
    bottom: 50px;
}

.explore-menu button:nth-child(3) {
    left: 132px;
    bottom: 50px;
}

.explore-menu a:nth-child(4) {
    left: 198px;
    bottom: 0;
}

/* ===============================
   POPUPS
================================ */
.popup {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .75);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 300;
}

.popup.active {
    display: flex;
}

.popup-box {
    background: #1b1b1b;
    padding: 20px;
    width: 90%;
    border-radius: 14px;
    color: #fff;
}

/* ===============================
   MOBILE ONLY
================================ */
@media (min-width: 768px) {

    .mobile-footer,
    .explore-menu,
    .explore-backdrop {
        display: none !important;
    }
}

.capacity{
    margin-top: 8px;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.6;
    opacity: 0.85;
    color: #ffbf00;
}

/* ===============================
   DESKTOP BROCHURE FLOATING BUTTONS
================================ */

.desktop-brochures{
  position:fixed;
  right:22px;
  top:50%;
  transform:translateY(-50%);
  display:none;
  flex-direction:column;
  gap:16px;
  z-index:150;
}

/* buttons */
.brochure-btn{
  width:56px;
  height:56px;
  border-radius:50%;
  background:#f4c430;
  color:#003804;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  font-size:22px;
  position:relative;
  box-shadow:0 8px 20px rgba(0,0,0,.35);
  transition:.25s ease;
}

/* hover lift */
.brochure-btn:hover{
  transform:scale(1.08);
}

/* tooltip text */
.brochure-btn span{
  position:absolute;
  right:70px;
  background:#000;
  color:#fff;
  padding:6px 12px;
  border-radius:6px;
  font-size:12px;
  white-space:nowrap;
  opacity:0;
  pointer-events:none;
  transform:translateX(10px);
  transition:.25s ease;
}

/* show tooltip */
.brochure-btn:hover span{
  opacity:1;
  transform:translateX(0);
}

/* veg / nonveg colors */
.brochure-btn.veg{
  background:#003804;
  color:#ffbf00;
}

.brochure-btn.nonveg{
  background:#003804;
  color:#ffbf00;
}

/* SHOW ONLY ON TABLET + DESKTOP */
@media(min-width:768px){
  .desktop-brochures{
    display:flex;
  }
}

/* HIDE ON MOBILE */
@media(max-width:767px){
  .desktop-brochures{
    display:none!important;
  }
}
