:root {
  --brand: #1e3859;        /* deep navy */
  --brand-2: #e8b86d;      /* gold accent */
  --ink: #1f2937;          /* dark text */
  --muted: #6b7280;        /* muted text */
  --bg: #f9fafb;           /* page bg */
  --radius: 1rem;          /* global border radius */
  --transition: all 0.25s ease;
}

/* Base */
html, body {
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  color: var(--ink);
  background: var(--bg);
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 800;
  letter-spacing: -0.02em;
}
p {
  margin-bottom: 1rem;
  color: var(--muted);
  font-size: 1rem;
}

/* Buttons */
.btn-brand {
  background: var(--brand);
  color: #fff;
  border: none;
  border-radius: .6rem;
  padding: .6rem 1.2rem;
  font-weight: 600;
  transition: var(--transition);
}
.btn-brand:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(30,56,89,.18);
}
.btn-outline-brand {
  border: 2px solid var(--brand);
  color: var(--brand);
  border-radius: .6rem;
  padding: .55rem 1.2rem;
  font-weight: 600;
  transition: var(--transition);
}
.btn-outline-brand:hover {
  background: var(--brand);
  color: #fff;
}

/* Navbar */
.nav-ghost {
  backdrop-filter: saturate(120%) blur(6px);
  background: rgba(255,255,255,.82);
  box-shadow: 0 2px 12px rgba(0,0,0,.04);
}
.navbar .nav-link {
  font-weight: 600;
  color: var(--ink);
  padding: .5rem 1rem;
  transition: var(--transition);
}
.navbar .nav-link.active, 
.navbar .nav-link:hover {
  color: var(--brand);
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  color: #fff;
}

.hero-bg, .hero-img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0; 
  left: 0;
  z-index: -1;
  filter: brightness(.7);
  display: block; /* FIX: make sure image is visible */
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.45) 0%, rgba(0,0,0,.65) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
  padding: 0 15px;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
}

.hero-content p {
  font-size: 1.2rem;
  margin-top: 15px;
  color: #f3f4f6;
}

/* Buttons */
.hero-content .btn {
  border-radius: 50px;
  padding: 12px 28px;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.hero-content .btn-primary {
  background-color: var(--brand);
  border: none;
  color: #fff;
}

.hero-content .btn-primary:hover {
  background-color: #152a43;
}

.hero-content .btn-outline-light {
  border: 2px solid #fff;
  color: #fff;
}

.hero-content .btn-outline-light:hover {
  background: #fff;
  color: #000;
}
/* Full-height hero */
#hero, 
#hero .carousel-item {
  height: 100vh;
  position: relative;
}

/* Background image */
.hero-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

/* Overlay */
.hero-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.45);
  z-index: 2;
}

/* Content */
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 850px;
  margin: 0 auto;
  padding: 0 15px;
  top: 50%;
  transform: translateY(-50%);
}


/* Booking Card */
.booking-card {
  border-radius: var(--radius);
  box-shadow: 0 18px 50px rgba(2,6,23,.18);
  background: #fff;
  padding: 1.5rem;
  margin-top: -3rem;
  position: relative;
  z-index: 3;
}
.booking-card .form-label {
  font-weight: 700;
  color: var(--ink);
}

/* Section styles */
.section {
  padding: 90px 0;
}
.section-title {
  font-weight: 800;
  letter-spacing: .01em;
  margin-bottom: .75rem;
  font-size: 2rem;
}
.section-sub {
  color: var(--muted);
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

/* Room cards */
.room-card {
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  background: #fff;
}
.room-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(2,6,23,.08);
}
.room-card img {
  height: 230px;
  width: 100%;
  object-fit: cover;
}

/* Amenities */
.amenity {
  background: #fff;
  border-radius: .9rem;
  padding: 1.2rem;
  text-align: center;
  transition: var(--transition);
}
.amenity:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(2,6,23,.08);
}

/* Gallery */
.gallery img {
  border-radius: .8rem;
  transition: var(--transition);
}
.gallery img:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(2,6,23,.12);
}

/* Testimonials */
.quote {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--ink);
  line-height: 1.6;
}

/* Newsletter */
.newsletter {
  background: linear-gradient(135deg, var(--brand) 0%, #0b2340 100%);
  color: #fff;
  border-radius: var(--radius);
  padding: 2.5rem;
  text-align: center;
}
.newsletter input {
  border-radius: .6rem;
  padding: .7rem 1rem;
  border: none;
  max-width: 320px;
}

/* Footer */
.footer-link {
  color: #e5e7eb;
  text-decoration: none;
  transition: var(--transition);
}
.footer-link:hover {
  color: #fff;
}
.footer {
  background: #111827;
  padding: 2rem 0;
  color: #9ca3af;
  font-size: .9rem;
}

/* Responsive */
@media (max-width: 992px) {
  .display-5 { font-size: 1.9rem }
  .hero-img { height: 72vh }
  .hero { min-height: 72vh }
  .section { padding: 70px 0 }
}
@media (max-width: 576px) {
  .booking-card { margin-top: 1.2rem; padding: 1.2rem }
  .display-5 { font-size: 1.6rem }
  .hero-img { height: 62vh }
  .hero { min-height: 62vh }
  .section { padding: 55px 0 }
}
.hero {
  min-height: 100vh;
  position: relative;
  color: #fff;
  overflow: hidden;
}

.hero-bg {
  object-fit: cover;
  height: 100%;
  position: absolute;
  top: 0; left: 0;
  z-index: -1;
}

.booking-card {
  margin-top: 40px;
}

@media (max-width: 768px) {
  .booking-card {
    margin-top: 20px;
  }
}

.gallery-img {
  width: 100%;
  height: 220px;          /* 🔑 same height for all */
  object-fit: cover;      /* crop nicely */
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}
.gallery-img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}
