/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #f6f1ea;
    color: #2b2b2b;
}

/* NAVBAR */
/* ===== MOBILE NAV ===== */

/* ===== NEXT GEN NAVBAR ===== */

.ng-nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: transform .5s ease, background .5s ease, backdrop-filter .5s ease;
}

.ng-nav.hidden {
    transform: translateY(-100%);
}

.ng-nav.scrolled {
    background: rgba(20,20,20,.55);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.ng-nav-inner {
    max-width: 1300px;
    margin: auto;
    padding: 18px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.ng-logo a {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    color: #f5e6c8;
    text-decoration: none;
    letter-spacing: 2px;
}

/* Desktop links */
.ng-links {
    display: flex;
    gap: 34px;
    list-style: none;
}

.ng-links a {
    color: #f5e6c8;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 1px;
    position: relative;
}

.ng-links a::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 1px;
    background: #d4af37;
    transition: .4s;
}

.ng-links a:hover::after {
    width: 100%;
}

.ng-btn {
    padding: 10px 22px;
    border: 1px solid #d4af37;
}

/* Toggle */
.ng-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
}

.ng-toggle span {
    width: 26px;
    height: 2px;
    background: #f5e6c8;
}

/* Mobile Overlay */
.ng-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10,10,10,.92);
    backdrop-filter: blur(20px);
    opacity: 0;
    pointer-events: none;
    transition: .6s ease;
    z-index: 999;
}

.ng-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.ng-overlay-menu {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 34px;
}

.ng-overlay-menu a {
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    color: #f5e6c8;
    text-decoration: none;
}

/* Responsive */
@media (max-width: 900px) {
    .ng-links { display: none; }
    .ng-toggle { display: flex; }
}


/* HERO */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
}
@media (min-width: 1024px) {
    .hero {
        height: 70vh;   /* you can tune: 80–90vh */
    }
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('images/hero3.jpeg');
    background-size: cover;
    background-position: center;
}

@media (max-width: 768px) {
    .hero-bg {
        background-image: url('images/herolocation.jpeg');
        background-position: center top;
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #f5e6c8;
    padding: 0 20px;
}

.hero-tagline {
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 65px;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-content p {
    max-width: 600px;
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 35px;
}

.hero-btn {
    text-decoration: none;
    color: #1b1b1b;
    background: #d4af37;
    padding: 14px 34px;
    font-size: 14px;
    letter-spacing: 1px;
    transition: 0.4s;
}

.hero-btn:hover {
    background: #c49b2f;
}


/* ===== LOCATION ADVANTAGE STRIP ===== */

.value-strip {
    position: relative;
    background-image: url('images/location.jpeg'); /* MAKE SURE IMAGE EXISTS */
    background-size: cover;
    background-position: center;
    padding: 15px 20px;
    color: #fff;
}

.value-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55); /* IMPORTANT */
}

/* Header */
.value-header {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 720px;
    margin: 0 auto 60px;
}

.value-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    color: #f5e6c8; /* VISIBLE GOLD */
    margin-bottom: 12px;
}

.value-header p {
    font-size: 16px;
    color: rgba(255,255,255,0.85);
}

/* Cards container */
.value-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* Cards */
.value-card {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(8px);
    padding: 28px 22px;
    border-radius: 14px;
    text-align: left;
}

.value-icon {
    font-size: 22px;
    display: block;
    margin-bottom: 12px;
}

.value-card strong {
    display: block;
    font-size: 16px;
    margin-bottom: 6px;
    color: #f5e6c8;
}

.value-card p {
    font-size: 14px;
    color: rgba(255,255,255,0.85);
}

/* Responsive */
@media (max-width: 900px) {
    .value-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 520px) {
    .value-container {
        grid-template-columns: 1fr;
    }
}


/* ===== ROOMS SECTION ===== */

.rooms-section {
    padding: 20px 20px;
    background: #f6f1ea;
}

.rooms-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 70px;
}

.rooms-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    margin-bottom: 12px;
}

.rooms-header p {
    font-size: 15px;
    color: #555;
}

.rooms-grid {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

/* Room card */
.room-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.room-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.room-content {
    padding: 28px;
}

.room-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    margin-bottom: 10px;
}

.room-content p {
    font-size: 14px;
    color: #555;
    margin-bottom: 18px;
}

.room-features {
    list-style: none;
    padding: 0;
    margin: 0 0 22px;
}


.room-features li {
    position: relative;
    padding-left: 26px;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 10px;
    color: #444;
}

/* Elegant check icon */
.room-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 1px;
    font-size: 14px;
    color: #d4af37; /* gold accent */
}

/* Button */
.room-btn {
    display: inline-block;
    text-decoration: none;
    padding: 12px 26px;
    background: #d4af37;
    color: #1b1b1b;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 900px) {
    .rooms-grid {
        grid-template-columns: 1fr;
    }

    .room-image img {
        height: 333px !important; 
    }
}
/* ===== ROOM MODAL ===== */

.room-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
}

.room-modal.active {
    display: block;
}

.room-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
}

.room-modal-content {
    position: relative;
    max-width: 900px;
    height: 90vh;
    margin: 5vh auto;
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    overflow-y: auto;
}

.room-modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    font-size: 26px;
    border: none;
    background: none;
    cursor: pointer;
}

.modal-intro {
    font-size: 15px;
    color: #555;
    margin-bottom: 20px;
}

.modal-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 26px;
}

.modal-gallery img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
}

.modal-features {
    list-style: none;
    padding: 0;
    columns: 2;
}

.modal-features li {
    margin-bottom: 8px;
    font-size: 14px;
}

/* Mobile */
@media (max-width: 768px) {
    .room-modal-content {
        padding: 26px;
    }

    .modal-gallery {
        grid-template-columns: 1fr;
    }

    .modal-features {
        columns: 1;
    }
}
/* ===== AMENITY BLOCK ===== */

.amenity-block {
    display: grid;
    gap: 26px;
    margin-top: 30px;
}

.amenity-group h4 {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #777;
    margin-bottom: 12px;
}

.amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.amenities span {
    padding: 8px 14px;
    background: #f3efe8;
    border-radius: 999px;
    font-size: 13px;
    color: #333;
}

/* ===== FACILITIES SECTION ===== */


.facilities-section {
    position: relative;
    padding: 50px 20px;
    background-image: url('images/facilitybg.jpeg'); /* your bg image */
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.facilities-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgb(117 91 91 / 55%);
}

/* content above overlay */
.facilities-header,
.facilities-grid {
    position: relative;
    z-index: 2;
}

/* header */
.facilities-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 70px;
}

.facilities-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    color: #f5e6c8;
    margin-bottom: 12px;
}

.facilities-header p {
    font-size: 15px;
    color: rgba(255,255,255,0.85);
}

/* grid */
.facilities-grid {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* card */
.facility-card {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(6px);
    border-radius: 18px;
    padding: 14px 13px;
    text-align: left;
}

/* icon */
.facility-card i {
    font-size: 22px;
    color: #d4af37;
    margin-bottom: 16px;
    display: block;
}

/* text */
.facility-card h4 {
    font-size: 16px;
    color: #f5e6c8;
    margin-bottom: 6px;
}

.facility-card p {
    font-size: 17px;
    color: rgba(255,255,255,0.85);
}

/* responsive */
@media (max-width: 900px) {
    .facilities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 520px) {
    .facilities-grid {
        grid-template-columns: 1fr;
    }
}


/* ===== LOCATION SECTION ===== */

.location-section {
    padding: 22px 20px;
    background: #f6f1ea;
}

.location-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Content */
.location-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    margin-bottom: 14px;
}

.location-intro {
    font-size: 15px;
    color: #555;
    margin-bottom: 30px;
    max-width: 520px;
}

/* Points */
.location-points {
    list-style: none;
    padding: 0;
    margin: 0 0 36px;
}

.location-points li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 16px;
    font-size: 15px;
    color: #333;
}

.location-points i {
    color: #d4af37;
    font-size: 18px;
    margin-top: 2px;
}

/* Button */
.location-btn {
    display: inline-block;
    padding: 14px 30px;
    background: #d4af37;
    color: #1b1b1b;
    text-decoration: none;
    font-size: 14px;
}

/* Map */
.location-map iframe {
    width: 100%;
    height: 380px;
    border: none;
    border-radius: 18px;
}

/* Responsive */
@media (max-width: 900px) {
    .location-container {
        grid-template-columns: 1fr;
    }

    .location-map iframe {
        height: 320px;
    }
}
/* ===== FOOTER ===== */

.site-footer {
    background: #121212;
    color: #ddd;
}

.footer-top {
    max-width: 1200px;
    margin: auto;
    padding: 80px 20px 60px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-col h4 {
    font-size: 16px;
    color: #f5e6c8;
    margin-bottom: 14px;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
    color: #bbb;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    font-size: 14px;
    margin-bottom: 10px;
}

.footer-col ul li i {
    color: #d4af37;
    margin-right: 8px;
}

.footer-col ul li a {
    color: #bbb;
    text-decoration: none;
}

.footer-col ul li a:hover {
    color: #f5e6c8;
}

/* CTA */
.footer-cta p {
    margin-bottom: 16px;
}

.footer-btn {
    display: inline-block;
    padding: 12px 26px;
    background: #d4af37;
    color: #1b1b1b;
    text-decoration: none;
    font-size: 14px;
}

/* Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 22px 20px;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #aaa;
    margin: 6px 0;
}

/* Developer credit */
.developer-credit a {
    color: #d4af37;
    text-decoration: none;
}

.developer-credit a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 900px) {
    .footer-top {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 520px) {
    .footer-top {
        grid-template-columns: 1fr;
    }
}
/* ===== LOCATION PAGE ===== */

/* ================= LOCATION PAGE ================= */

/* HERO */
.location-hero {
    position: relative;
    height: 70vh;
    background: url('images/herolocation.jpeg') center/cover no-repeat;
    display: flex;
    align-items: center;
}

.location-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
}

.location-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 40px;
    color: #f5e6c8;
}

.location-tag {
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: 13px;
    opacity: 0.9;
}

.location-hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 64px;
    margin: 20px 0;
}

.location-hero-content p {
    max-width: 520px;
    font-size: 16px;
}

/* HIGHLIGHTS */
.location-highlights {
    padding: 90px 20px;
    background: #f6f1ea;
}

.highlights-grid {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.highlight-card {
    background: #fff;
    padding: 30px;
    border-radius: 18px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}

.highlight-card h3 {
    margin-bottom: 8px;
    font-size: 18px;
}

/* DETAILS */
.location-details {
    padding: 110px 20px;
    background: #fff;
}

.location-details-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.location-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    margin-bottom: 18px;
}

.location-text p {
    font-size: 15px;
    color: #555;
    margin-bottom: 24px;
}

.location-benefits {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.location-benefits li {
    margin-bottom: 10px;
    font-size: 15px;
}

.location-actions a {
    margin-right: 14px;
}

/* MAP */
.location-map-box iframe {
    width: 100%;
    height: 420px;
    border: none;
    border-radius: 22px;
}

/* CTA STRIP */
.location-cta-strip {
    padding: 80px 20px;
    background: #121212;
    color: #f5e6c8;
    text-align: center;
}

.location-cta-strip p {
    margin: 12px 0 24px;
    color: #ccc;
}

/* BUTTONS */
.btn-primary {
    padding: 14px 32px;
    background: #d4af37;
    color: #1b1b1b;
    text-decoration: none;
}

.btn-outline {
    padding: 14px 32px;
    border: 1px solid #d4af37;
    color: #1b1b1b;
    text-decoration: none;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .location-details-container {
        grid-template-columns: 1fr;
    }

    .location-hero-content h1 {
        font-size: 44px;
    }
}

/* ===== SOFT LOCATION TILES ===== */

.soft-tile {
    background: rgba(255,255,255,0.95);
    padding: 32px 28px;
    border-radius: 20px;
    position: relative;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* Accent line */
.soft-tile::before {
    content: "";
    position: absolute;
    left: 0;
    top: 24px;
    bottom: 24px;
    width: 3px;
    background: #d4af37;
    border-radius: 3px;
}

/* Typography */
.soft-tile h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.soft-tile p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

/* Hover effect */
.soft-tile:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 45px rgba(0,0,0,0.08);
}

/* ===== BOOKING POPUP ===== */

/* =========================
   BOOKING POPUP
========================= */

.booking-popup {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: none;
}

.booking-popup.active {
    display: block;
}

.booking-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}

.booking-box {
    position: relative;
    max-width: 420px;
    margin: 6vh auto;
    background: #fff;
    border-radius: 20px;
    padding: 28px 24px;
    z-index: 2;
}

/* Close button */
.booking-close {
    position: absolute;
    top: 14px;
    right: 16px;
    font-size: 26px;
    border: none;
    background: none;
    cursor: pointer;
}

/* Text */
.booking-box h3 {
    margin-bottom: 6px;
}

.booking-box p {
    font-size: 14px;
    color: #555;
    margin-bottom: 20px;
}

/* =========================
   FORM STYLES
========================= */

.form-row {
    margin-bottom: 14px;
}

/* Labels for date fields */
.form-row label {
    font-size: 13px;
    color: #555;
    display: block;
    margin-bottom: 6px;
}

/* Inputs */
.form-row input,
.form-row select {
    width: 100%;
    padding: 14px 16px;
    font-size: 16px; /* prevents iOS zoom */
    border-radius: 12px;
    border: 1px solid #ddd;
    outline: none;
}

/* Date inputs fix */
input[type="date"] {
    appearance: none;
    -webkit-appearance: none;
}

/* Date row layout */
.form-row.two-col {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* Stack two date inputs on small screens */
.form-row.two-col {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* Side-by-side only on tablets & larger */
@media (min-width: 600px) {
    .form-row.two-col {
        flex-direction: row;
    }

    .form-row.two-col input {
        flex: 1;
    }
}

/* Make date inputs tappable & prevent zoom */
.form-row.two-col input[type="date"] {
    font-size: 16px;      /* Prevent iOS zoom */
    padding: 14px 16px;   /* Bigger tap area */
    border-radius: 12px;
    border: 1px solid #ddd;
    background-color: #fff;
    color: #000;
    min-height: 48px;
}


/* Submit button */
.submit-btn {
    width: 100%;
    padding: 15px;
    background: #25D366;
    color: #fff;
    border: none;
    border-radius: 14px;
    font-size: 16px;
    cursor: pointer;
}

/* =========================
   OPTIONAL CLEANUPS
========================= */

.value-icon i {
    color: #d4af37;
    font-size: 18px;
}

.room-actions {
    display: flex;
    justify-content: flex-end;
    gap: 36px;
}

@media (min-width: 768px) {
    .room-actions {
        gap: 58px;
    }
}


/* ===== GALLERY PAGE ===== */

.gallery-hero {
    padding: 120px 20px 60px;
    text-align: center;
    background: #f6f1ea;
}

.gallery-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    margin-bottom: 10px;
}

.gallery-hero p {
    color: #555;
    font-size: 15px;
}

/* Grid */
.gallery-section {
    padding: 60px 20px 100px;
}

.gallery-grid {
    max-width: 1200px;
    margin: auto;
    columns: 4;
    column-gap: 20px;
}

.gallery-item {
    margin-bottom: 20px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    border-radius: 16px;
    transition: transform 0.3s ease;
}

.gallery-item img:hover {
    transform: scale(1.03);
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 4000;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 12px;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 36px;
    color: #fff;
    cursor: pointer;
}

/* Responsive */
@media (max-width: 1100px) {
    .gallery-grid {
        columns: 3;
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        columns: 2;
    }
}

@media (max-width: 420px) {
    .gallery-grid {
        columns: 1;
    }
}


.nav-book-btn {
    background: none;
    border: none;
    padding: 0;
    font: inherit;
    color: inherit;
    cursor: pointer;
}
/* Reset nav button to look like link */
.ng-links .nav-cta {
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    font: inherit;
    color: #ebdcc0;
    cursor: pointer;
    line-height: normal;
}

/* Optional hover effect – same as links */
.ng-links .nav-cta:hover {
    opacity: 0.85;
}


/* body lock when menu open */
.no-scroll {
    overflow: hidden;
}

/* navbar hide */
.ng-nav.hidden {
    transform: translateY(-100%);
}

/* overlay default */
.ng-overlay {
    opacity: 0;
    visibility: hidden;
    transition: .3s ease;
}

.ng-overlay.active {
    opacity: 1;
    visibility: visible;
}
/* ===== IMAGE LIGHTBOX ===== */

.image-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.image-lightbox.active {
    opacity: 1;
    pointer-events: all;
}

.image-lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 12px;
}

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 30px;
    font-size: 36px;
    color: #fff;
    cursor: pointer;
}


