/* ═══════════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold:    #C9A84C;
  --gold-lt: #E8C97A;
  --dark:    #0F1117;
  --dark2:   #1A1D26;
  --dark3:   #23273A;
  --text:    #E8EAF0;
  --muted:   #9AA0B8;
  --white:   #FFFFFF;
  --radius:  14px;
  --shadow:  0 8px 32px rgba(0,0,0,0.45);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--dark);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }

img { display: block; width: 100%; height: 100%; object-fit: cover; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section { padding: 5rem 0; }

.center { text-align: center; }

.section-tag {
  display: inline-block;
  background: rgba(201,168,76,0.15);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}
.section-tag.center { display: block; }

h2 {
  font-size: clamp(1.75rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-sub {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

/* ═══════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.7rem 1.5rem;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-call {
  background: linear-gradient(135deg, var(--gold), var(--gold-lt));
  color: var(--dark);
}
.btn-call:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(201,168,76,0.45);
}

.btn-primary {
  background: var(--dark3);
  color: var(--white);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold);
  color: var(--dark);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
}

.btn-lg  { font-size: 1.05rem; padding: 0.9rem 2rem; }
.btn-xl  { font-size: 1.15rem; padding: 1.1rem 2.5rem; }

/* ═══════════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  background: rgba(15,17,23,0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: box-shadow 0.3s;
}
.navbar.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.6); }

.nav-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  height: 68px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
  flex-shrink: 0;
}
.logo strong { color: var(--gold); }
.logo-img { height: 44px; width: auto; object-fit: contain; }

.nav-links {
  display: flex;
  gap: 1.75rem;
  margin-left: auto;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }

.nav-cta { margin-left: 0.5rem; }

.hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  margin-left: auto;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0;
  background: var(--dark2);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 1rem 1.25rem;
  color: var(--text);
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.mobile-menu a:hover { background: var(--dark3); }
.mobile-menu .btn { margin: 1rem; border-radius: 50px; }

/* ═══════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 68px;

  background: linear-gradient(135deg, #1a2340 0%, #0d1520 40%, #1a1505 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(15,17,23,0.55) 0%,
    rgba(15,17,23,0.3) 50%,
    rgba(15,17,23,0.85) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
  padding: 4rem 1.25rem;
}

.hero-tag {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  border: 1px solid rgba(201,168,76,0.4);
  padding: 0.3rem 0.9rem;
  border-radius: 50px;
}

.hero-content h1 {
  font-size: clamp(2.6rem, 7vw, 4.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(232,234,240,0.8);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

/* ═══════════════════════════════════════════════
   TRUST STRIP
═══════════════════════════════════════════════ */
.trust-strip {
  background: var(--dark2);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 1.1rem 0;
}

.trust-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 2.5rem;
}

.trust-item {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
}

/* ═══════════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════════ */
.about { background: var(--dark); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text h2 { margin-bottom: 1.25rem; }

.about-text p {
  color: var(--muted);
  margin-bottom: 1rem;
}

.about-text .btn { margin-top: 1rem; }

.about-image {
  border-radius: var(--radius);
  overflow: hidden;
  height: 440px;
  box-shadow: var(--shadow);
}

/* ═══════════════════════════════════════════════
   IMAGE PLACEHOLDERS (remove once real photos added)
═══════════════════════════════════════════════ */
.img-placeholder {
  width: 100%;
  height: 100%;
  background: var(--dark3);
  border: 2px dashed rgba(201,168,76,0.35);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--muted);
  text-align: center;
  padding: 1rem;
}
.img-placeholder span { font-size: 2.5rem; }
.img-placeholder p { font-size: 0.9rem; line-height: 1.4; }
.img-placeholder small {
  font-size: 0.75rem;
  color: var(--gold);
  font-family: monospace;
  background: rgba(201,168,76,0.1);
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
}
.img-placeholder.small { min-height: 220px; border-radius: var(--radius) var(--radius) 0 0; }

/* ═══════════════════════════════════════════════
   ROOMS
═══════════════════════════════════════════════ */
.rooms { background: var(--dark2); }

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.room-card {
  background: var(--dark3);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform 0.25s, box-shadow 0.25s;
}
.room-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.5);
}

.room-card img {
  height: 280px;
  object-fit: cover;
  display: block;
  width: 100%;
}

/* ═══════════════════════════════════════════════
   AMENITIES
═══════════════════════════════════════════════ */
.amenities { background: var(--dark); }

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.amenity-card {
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 1.75rem 1.25rem;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s;
}
.amenity-card:hover {
  border-color: rgba(201,168,76,0.45);
  transform: translateY(-3px);
}

.amenity-icon {
  font-size: 2.25rem;
  margin-bottom: 0.85rem;
  line-height: 1;
}

.amenity-card h3 {
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.amenity-card p {
  font-size: 0.83rem;
  color: var(--muted);
  line-height: 1.5;
}

/* ═══════════════════════════════════════════════
   LOCATION
═══════════════════════════════════════════════ */
.location { background: var(--dark2); }

.map-wrapper {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  margin: 2rem 0;
  box-shadow: var(--shadow);
}

.location-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.location-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--dark3);
  border-radius: var(--radius);
  padding: 1.25rem;
  border: 1px solid rgba(255,255,255,0.06);
}

.loc-icon { font-size: 1.5rem; flex-shrink: 0; }

.location-card strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-bottom: 0.4rem;
}
.location-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.5;
}
.location-card a { color: var(--gold-lt); }
.location-card a:hover { text-decoration: underline; }

/* ═══════════════════════════════════════════════
   CTA CONTACT
═══════════════════════════════════════════════ */
.contact-cta {
  background: linear-gradient(135deg, #1a1505 0%, #0d1520 100%);
  border-top: 1px solid rgba(201,168,76,0.2);
  text-align: center;
}

.cta-inner { max-width: 640px; margin: 0 auto; }

.cta-inner h2 { margin-bottom: 1rem; }
.cta-inner p  { color: var(--muted); margin-bottom: 2rem; }

.cta-note {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 1rem !important;
  margin-bottom: 0 !important;
}

/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
.footer {
  background: var(--dark2);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 3rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
}

.footer-brand .logo-text {
  font-size: 1.3rem;
  font-weight: 600;
}
.footer-brand .logo-text strong { color: var(--gold); }
.footer-brand p {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 0.5rem;
}

.footer-links, .footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-links strong, .footer-contact strong {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 0.25rem;
}
.footer-links a {
  font-size: 0.88rem;
  color: var(--muted);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--white); }
.footer-contact p, .footer-contact a {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.5;
}
.footer-contact a:hover { color: var(--gold-lt); }

.footer-bottom {
  text-align: center;
  padding: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 0.8rem;
  color: var(--muted);
}

/* ═══════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════ */

/* Tablet landscape */
@media (max-width: 1024px) {
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .rooms-grid     { grid-template-columns: repeat(2, 1fr); }
  .about-grid     { gap: 2.5rem; }
}

/* Tablet portrait / large phone */
@media (max-width: 768px) {
  .section { padding: 3.5rem 0; }

  /* Navbar */
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: block; }

  /* Hero */
  .hero { min-height: 85vh; }
  .hero-content { padding: 2.5rem 1.25rem; }
  .hero-content h1 { font-size: 2.2rem; }
  .hero-sub { font-size: 0.97rem; margin-bottom: 2rem; }
  .hero-sub br { display: none; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { text-align: center; justify-content: center; font-size: 0.97rem; }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-image { height: 260px; }

  /* Rooms */
  .rooms-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-top: 1.5rem; }
  .room-card img { height: 200px; }

  /* Amenities */
  .amenities-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }

  /* Location */
  .location-details { grid-template-columns: 1fr; }

  /* CTA */
  .cta-inner { padding: 0 1rem; }
  .btn-xl { font-size: 1rem; padding: 0.9rem 1.5rem; width: 100%; justify-content: center; white-space: normal; text-align: center; }
  .btn-lg { white-space: normal; text-align: center; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; padding-bottom: 2rem; }
}

/* Small phones (iPhone SE, Android ~375px) */
@media (max-width: 480px) {
  .section { padding: 2.75rem 0; }
  .container { padding: 0 1rem; }

  .hero { min-height: 75vh; }
  .hero-content h1 { font-size: 1.9rem; }
  .hero-tag { font-size: 0.72rem; }
  .hero-sub { font-size: 0.92rem; }

  .trust-inner { gap: 0.45rem 1.25rem; }
  .trust-item  { font-size: 0.82rem; }

  .rooms-grid { grid-template-columns: 1fr; gap: 0.85rem; }
  .room-card img { height: 230px; }

  .amenities-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .amenity-card   { padding: 1.25rem 0.85rem; }
  .amenity-icon   { font-size: 1.85rem; }
  .amenity-card h3 { font-size: 0.88rem; }
  .amenity-card p  { font-size: 0.78rem; }

  h2 { font-size: 1.6rem; }
  .section-sub { font-size: 0.92rem; }

  .btn-lg { font-size: 0.92rem; padding: 0.8rem 1.25rem; }
  .btn-xl { font-size: 0.95rem; padding: 0.85rem 1.25rem; }
}

/* Very small phones (320px – old iPhone SE, small Androids) */
@media (max-width: 360px) {
  .hero-content h1 { font-size: 1.65rem; }
  .amenities-grid  { grid-template-columns: 1fr; }
  .trust-inner     { flex-direction: column; align-items: center; gap: 0.4rem; }
  .nav-inner       { height: 60px; }
  .hero            { padding-top: 60px; }
}
