*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --primary-dark: #081f3a;
    --primary: #0f2d52;
    --primary-light: #1b4f8a;
    --accent: #f5c842;
    --accent-hover: #ffd84d;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #fff;
    color: #1a1a1a;
    line-height: 1.6;
}

/* ── NAV ── */
.nav {
    background: #0f2d52;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    position: sticky;
    top: 0;
    z-index: 2001;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.logo-img {
    height: 42px;
    width: auto;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    color: #f5c842;
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
}

.logo-text small {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    letter-spacing: 1px;
    margin-top: 0px;
    display: block;
    font-weight: 400;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    list-style: none;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    text-decoration: none;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #f5c842;
}

.nav-book-btn {
    background: #f5c842;
    color: #0f2d52;
    border: none;
    padding: 9px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s;
}

.nav-book-btn:hover {
    background: #ffd84d;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: white;
    margin: 5px 0;
    transition: 0.3s;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: #0f2d52;
    padding: 1rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 2000;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    max-height: calc(100vh - 64px);
    overflow-y: auto;
}

.mobile-menu.open {
    display: block;
}

.mobile-menu.open {
    display: block;
}

.mobile-menu a {
    display: block;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    padding: 8px 0;
    font-size: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-menu a:hover {
    color: #f5c842;
}

/* ── HERO ── */
.hero {
    background: linear-gradient(160deg, #081f3a 0%, #0f2d52 40%, #1b4f8a 100%);
    padding: 4rem 2rem 5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23f5c842' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
}

.hero-eyebrow {
    color: #f5c842;
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.hero h1 {
    color: #fff;
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 700;
    line-height: 1.1;
}

.hero h1 em {
    color: #f5c842;
    font-style: normal;
}

.hero-sub {
    color: rgba(255, 255, 255, 0.75);
    font-size: 18px;
    margin-top: 12px;
}

.hero-stars {
    color: #f5c842;
    font-size: 22px;
    margin-top: 10px;
    letter-spacing: 2px;
}

.hero-badges {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.badge {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: rgba(255, 255, 255, 0.9);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* ── BOOKING ── */
.booking-wrap {
    padding: 0 1.5rem;
    margin-top: -28px;
    position: relative;
    z-index: 10;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.booking-box {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 14px;
    padding: 1.75rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.14);
}

.booking-box h2 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.booking-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 14px;
}

.field label {
    font-size: 12px;
    color: #666;
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.field input,
.field select {
    width: 100%;
    padding: 9px 12px;
    border: 1px solid #ddd;
    border-radius: 7px;
    font-size: 14px;
    background: #fafafa;
    color: #1a1a1a;
    transition: border-color 0.2s;
}

.field input:focus,
.field select:focus {
    outline: none;
    border-color: #0f2d52;
    background: #fff;
}

.book-cta-btn {
    width: 100%;
    margin-top: 1.1rem;
    background: #0f2d52;
    color: #f5c842;
    border: none;
    padding: 13px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.book-cta-btn:hover {
    background: #1b4f8a;
}

.avail-msg {
    display: none;
    border-radius: 8px;
    padding: 11px 14px;
    margin-top: 12px;
    font-size: 14px;
    text-align: center;
}

.avail-msg.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #28a745;
}

.avail-msg.error {
    background: #fdecea;
    color: #c62828;
    border: 1px solid #ef9a9a;
}

/* ── SECTIONS ── */
.section {
    padding: 3.5rem 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.section-title {
    font-size: clamp(24px, 3vw, 30px);
    font-weight: 700;
    text-align: center;
    margin-bottom: 6px;
}

.section-sub {
    text-align: center;
    color: #666;
    font-size: 15px;
    margin-bottom: 2rem;
}

.section-divider {
    border: none;
    border-top: 1px solid #eee;
    margin: 0;
}

.bg-light {
    background: #f8f9f6;
}

/* ── ROOMS ── */

.rooms-section {
    position: relative;
    overflow: hidden;
    padding: 3.5rem 1.5rem;
}

.rooms-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(255,255,255,0.88), rgba(255,255,255,0.88)),
        url("Photos/Outside 2.png") center/cover no-repeat;
    animation: roomsZoom 15s ease-in-out infinite alternate;
    z-index: 0;
    transform-origin: center;
}

.rooms-section-inner {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
}

@keyframes roomsZoom {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.5);
    }
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.room-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.room-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.room-img {
    height: 190px;
    position: relative;
    overflow: hidden;
    background: #f3f4f1;
}

.room-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.room-img-label {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: #0f2d52;
    color: #f5c842;
    font-size: 11px;
    padding: 4px 9px;
    border-radius: 4px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.room-body {
    padding: 1.2rem;
}

.room-name {
    font-size: 17px;
    font-weight: 600;
    color: #0f2d52;
}

.room-desc {
    font-size: 13px;
    color: #666;
    margin-top: 5px;
    line-height: 1.55;
}

.room-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 10px;
}

.room-tag {
    font-size: 11px;
    background: #f3f4f1;
    color: #555;
    padding: 3px 9px;
    border-radius: 4px;
}

.room-price {
    font-size: 22px;
    font-weight: 700;
    color: #0f2d52;
    margin-top: 12px;
}

.room-price small {
    font-size: 14px;
    font-weight: 400;
    color: #888;
}

.room-reserve-btn {
    width: 100%;
    margin-top: 10px;
    background: transparent;
    border: 1.5px solid #0f2d52;
    color: #0f2d52;
    padding: 9px;
    border-radius: 7px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.room-reserve-btn:hover {
    background: #0f2d52;
    color: #f5c842;
}

/* ── AMENITIES ── */
.amenities-section {
    background: #f8f9f6;
    padding: 3.5rem 1.5rem;
}

.amenities-inner {
    max-width: 1000px;
    margin: 0 auto;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.amenity-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    padding: 1.2rem;
    text-align: center;
    transition: box-shadow 0.2s;
}

.amenity-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.amenity-icon {
    font-size: 30px;
    color: #0f2d52;
    margin-bottom: 8px;
}

.amenity-name {
    font-size: 13px;
    font-weight: 600;
}

.amenity-detail {
    font-size: 12px;
    color: #888;
    margin-top: 3px;
}

/* ── GALLERY ── */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid #e8e8e8;
    background: #fff;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.gallery-item img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
    cursor: pointer;
    transition: transform 0.35s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Lightbox */
.gallery-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.gallery-modal.open {
    display: flex;
}

.gallery-modal-content {
    max-width: 92%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

.gallery-close {
    position: absolute;
    top: 18px;
    right: 28px;
    color: #fff;
    font-size: 42px;
    font-weight: 700;
    cursor: pointer;
    line-height: 1;
}

/* ── REVIEWS ── */
.reviews-section {
    background: #f8f9f6;
    padding: 3.5rem 1.5rem;
}

.reviews-inner {
    max-width: 1000px;
    margin: 0 auto;
}

.overall-rating {
    text-align: center;
    margin-bottom: 2rem;
}

.big-num {
    font-size: 60px;
    font-weight: 700;
    color: #0f2d52;
    line-height: 1;
}

.big-stars {
    font-size: 26px;
    color: #f5c842;
    margin-top: 8px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.review-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.review-stars {
    color: #f5c842;
    font-size: 16px;
    margin-bottom: 10px;
}

.review-text {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    font-style: italic;
}

.reviewer {
    margin-top: 15px;
    font-weight: 600;
    color: #0f2d52;
}

.reviewer span {
    color: #777;
    font-weight: 400;
}

@media (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

/* ── CONTACT ── */
.contact-box {
    background: #0f2d52;
    border-radius: 14px;
    padding: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

.contact-info-item {
    display: flex;
    gap: 12px;
    margin-bottom: 1.2rem;
    align-items: flex-start;
}

.contact-icon {
    color: #f5c842;
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-value {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 2px;
}

.contact-value a {
    color: #f5c842;
    text-decoration: none;
}

.map-box {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
}

.map-box a {
    color: #f5c842;
    font-size: 13px;
    text-decoration: none;
    margin-top: 6px;
    display: block;
}

/* ── FOOTER ── */
.footer {
    background: #081f3a;
    color: rgba(255, 255, 255, 0.5);
    padding: 2rem;
    text-align: center;
    font-size: 13px;
}

.footer strong {
    color: #f5c842;
    font-size: 15px;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin: 10px 0;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
}

.footer-links a:hover {
    color: #f5c842;
}

/* ── MODAL ── */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 999;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal-overlay.open {
    display: flex;
}

.modal {
    background: #fff;
    border-radius: 14px;
    padding: 1.75rem;
    width: 100%;
    max-width: 420px;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.modal-header h3 {
    font-size: 18px;
    font-weight: 700;
}

.modal-close {
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
    color: #888;
    line-height: 1;
}

.modal-room-badge {
    background: #dbeafe;
    color: #2563eb;
    font-size: 13px;
    padding: 5px 12px;
    border-radius: 6px;
    margin-bottom: 1.2rem;
    font-weight: 500;
}

.modal-fields {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.modal-fields label {
    font-size: 12px;
    color: #666;
    font-weight: 500;
    display: block;
    margin-bottom: 4px;
}

.modal-fields input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 7px;
    font-size: 14px;
    transition: border-color 0.2s;
}

.modal-fields input:focus {
    outline: none;
    border-color: #0f2d52;
}

.modal-date-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.modal-actions {
    display: flex;
    gap: 10px;
    margin-top: 1.2rem;
}

.modal-cancel-btn {
    flex: 1;
    background: transparent;
    border: 1px solid #ddd;
    color: #666;
    padding: 10px;
    border-radius: 7px;
    cursor: pointer;
    font-size: 14px;
}

.modal-submit-btn {
    flex: 2;
    background: #0f2d52;
    color: #f5c842;
    border: none;
    padding: 10px;
    border-radius: 7px;
    font-weight: 600;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.2s;
}

.modal-submit-btn:hover {
    background: #1b4f8a;
}

.modal-success {
    display: none;
    text-align: center;
    padding: 1.5rem 0;
}

.modal-success .success-icon {
    font-size: 52px;
}

.modal-success h4 {
    font-size: 20px;
    font-weight: 700;
    margin-top: 12px;
}

.modal-success p {
    font-size: 14px;
    color: #666;
    margin-top: 6px;
    line-height: 1.6;
}

.modal-done-btn {
    margin-top: 1.2rem;
    width: 100%;
    background: #0f2d52;
    color: #f5c842;
    border: none;
    padding: 12px;
    border-radius: 7px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
}

/* ── RESPONSIVE ── */
@media (max-width: 680px) {
  .nav {
    z-index: 2001;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .mobile-menu.open {
    display: block;
  }

  .mobile-menu a {
    display: block;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    padding: 12px 0;
    font-size: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .mobile-menu a:hover {
    color: #f5c842;
  }

  .booking-wrap {
    margin-top: -18px;
    padding: 0 12px;
  }

  .booking-box {
    padding: 16px;
    border-radius: 18px;
    overflow: hidden;
  }

  .booking-box h2 {
    font-size: 16px;
    line-height: 1.25;
    margin-bottom: 1rem;
  }

  .booking-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .field label {
    font-size: 13px;
    margin-bottom: 6px;
  }

  .field input,
  .field select {
    width: 100%;
    box-sizing: border-box;
    font-size: 16px;
  }

  .field input[type="date"] {
    -webkit-appearance: none;
    appearance: none;
    height: 44px;
    min-height: 44px;
    padding: 0 12px;
    background: #fff;
    color: #111;
  }

  .field input[type="date"]::-webkit-calendar-picker-indicator {
    opacity: 1;
  }

  .book-cta-btn {
    height: 50px;
    font-size: 16px;
    margin-top: 1rem;
  }

  .avail-msg {
    font-size: 13px;
    padding: 10px 12px;
  }

  .hero-badges {
    gap: 8px;
    margin-top: 1rem;
  }

  .badge {
    font-size: 12px;
    padding: 6px 12px;
  }

  .hero {
    padding: 3rem 1.5rem 4rem;
  }

  .hero h1 {
    font-size: 1.8rem;
    line-height: 1.2;
    max-width: 320px;
    margin: 0 auto;
  }

  .hero h1 em {
    font-size: 2.5rem;
    display: block;
  }

  .rooms-grid {
    grid-template-columns: 1fr;
  }

  .contact-box {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .logo-title {
    color: #f5c842;
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
  }

  .logo-text small {
    color: rgba(255, 255, 255, 0.7);
    font-size: 11px;
    letter-spacing: 1px;
    margin-top: 0;
    display: block;
    font-weight: 400;
  }
}
