:root {
  --navy:#0b1222;
  --navy-2:#121a2f;
  --card:#0f172a;
  --gold:#f0c24d;
  --gold-2:#ffd873;
  --text:#e5e7eb;
  --muted:#94a3b8;
  --line:rgba(255,255,255,.12);
  --danger:#e84b4b;
  --radius:16px;
  --shadow:0 14px 40px rgba(0,0,0,.35);
}



/* ==== General Styles ==== */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background: #f4f4f4;
}

/* ==== Slider Container ==== */
.slider {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: auto;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* ==== Slider Images ==== */
.slides {
    display: flex;
    width: 100%;
    animation: slide 15s infinite;
}

.slides img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* ==== Animation ==== */
@keyframes slide {
    0%   { transform: translateX(0%); }
    20%  { transform: translateX(0%); }
    25%  { transform: translateX(-100%); }
    45%  { transform: translateX(-100%); }
    50%  { transform: translateX(-200%); }
    70%  { transform: translateX(-200%); }
    75%  { transform: translateX(-300%); }
    95%  { transform: translateX(-300%); }
    100% { transform: translateX(0%); }
}

/* ==== Navigation Dots ==== */
.dots {
    text-align: center;
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
}

.dots span {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 0 5px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
}

.dots span:hover {
    background: #fff;
}

/* ==== Responsive Design ==== */
@media (max-width: 768px) {
    .slides img {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .slides img {
        height: 180px;
    }
}

* { box-sizing: border-box }
html, body { margin: 0; padding: 0 }
body {
  font-family: Poppins, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: linear-gradient(180deg, var(--navy), #0d1428 30%, #0b1222 100%);
  line-height: 1.6;
}
img { max-width: 100%; display: block; border-radius: 12px }
a { color: inherit; text-decoration: none }
.container { width: min(1180px, 92%); margin-inline: auto }
.muted { color: var(--muted) }
.small { font-size: .9rem }

/* Topbar */
.topbar { background: var(--navy-2); color: #cbd5e1; font-size: .95rem }
.topbar .container { display: flex; justify-content: space-between; align-items: center; padding: .45rem 0 }
.topbar a { color: #dbeafe }
.tb-right i { color: var(--gold); margin-right: .35rem }

/* Header */
header {
  position: sticky; top: 0; z-index: 1000; background: rgba(11,18,34,.55);
  backdrop-filter: blur(10px); border-bottom: 1px solid var(--line)
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 72px }
.brand { display: flex; align-items: center; gap: .6rem }
.brand .crest {
  width: 42px; height: 42px; border-radius: 50%;
  display: grid; place-items: center;
  background: radial-gradient(100% 100% at 50% 0%, var(--gold-2), var(--gold));
  color: #1f2937; font-weight: 900; box-shadow: 0 8px 26px rgba(240,194,77,.28)
}
.brand .brand-text { font-family: "Playfair Display", serif; font-size: 1.2rem; letter-spacing: .2px }
.brand strong { font-weight: 700 }
nav ul { list-style: none; display: flex; gap: 1.2rem; margin: 0; padding: 0 }
nav a { opacity: .9 }
nav a.active, nav a:hover { opacity: 1; color: var(--gold) }
.hamburger { display: none; background: transparent; border: none; color: #fff; font-size: 1.3rem }

.btn {
  display: inline-flex; align-items: center; gap: .6rem; border-radius: 12px; padding: .7rem 1rem; cursor: pointer;
  font-weight: 600; transition: transform .15s ease, box-shadow .15s ease
}
.btn-gold { background: linear-gradient(135deg, var(--gold), var(--gold-2)); color: #1f2937; box-shadow: 0 12px 24px rgba(240,194,77,.25) }
.btn-gold:hover { transform: translateY(-1px) }
.btn-outline { border: 1px solid var(--gold); color: var(--gold); background: transparent }
.btn-outline:hover { background: rgba(240,194,77,.08) }
.btn.sm { padding: .55rem .75rem }

header, .nav, nav ul li a {
  color: var(--text) !important;
}
nav a.active, nav a:hover {
  color: var(--gold) !important;
}


/* Global text color fix for dark background */
body {
  color: #e5e7eb; /* Light grey/white text */
}

h1, h2, h3, h4, h5, h6,
p, li, label, span, a {
  color: #e5e7eb; /* Light color for all text elements */
}

a:hover {
  color: var(--gold); /* Hover effect */
}

/* Hero Slider */
.hero { position: relative }
.hero-slider {
  position: relative;
  height: 72vh;
  min-height: 480px;
  overflow: hidden;
}
.hero-slider .slides {
  display: flex;
  height: 100%;
  width: 500%;
  transition: transform .6s ease;
}
.hero-slider .slide {
  flex: 0 0 100%;
  background-size: cover;
  background-position: center;
  filter: saturate(1.05);
  position: relative;
}
.h-control {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(0,0,0,.35);
  color: #fff; border: none; padding: .7rem .9rem; border-radius: 12px; cursor: pointer; z-index: 10
}
.h-control.prev { left: 18px }
.h-control.next { right: 18px }
.h-dots {
  position: absolute; left: 50%; transform: translateX(-50%);
  bottom: 16px; display: flex; gap: .4rem; z-index: 11
}
.h-dots button {
  width: 10px; height: 10px; border-radius: 50%; border: none; background: #cbd5e155; cursor: pointer
}
.h-dots button.active { background: var(--gold) }
.hero-overlay {
  position: absolute; inset: auto 0 56px 0;
  display: grid; place-items: center; text-align: center;
  padding: 0 1rem; z-index: 9
}
.h-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem,4vw,3rem);
  margin: 0 0 .4rem;
}
.h-sub { opacity: .95; max-width: 780px }

/* Availability */
.availability { padding: 2.2rem 0 2.6rem }
.avail-card {
  background: rgba(255,255,255,.06);
  box-shadow: var(--shadow);
  backdrop-filter: blur(6px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: .9rem;
  align-items: end;
}



.field { display: flex; flex-direction: column; gap: .35rem }
label { font-size: .9rem; color: #cbd5e1 }
input, select, textarea {
  background: #0f172a;
  border: 1px solid #1f2a44;
  color: #e5e7eb;
  border-radius: 12px;
  padding: .75rem .9rem;
  font: inherit;
  outline: none;
}
input:focus, select:focus, textarea:focus {
  border-color: #3451b2;
  box-shadow: 0 0 0 4px rgba(52,81,178,.18)
}
.badges { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1rem }
.badge {
  background: #111827;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: .4rem .7rem;
  color: #dbeafe;
  font-size: .9rem
}
.badge i { color: var(--gold); margin-right: .4rem }

/* Sections */
section { padding: 3rem 0 }
.section-title { font-family: "Playfair Display", serif; font-size: clamp(1.4rem,3vw,2.1rem); margin: .2rem 0 1rem }
.gold-underline { position: relative; display: inline-block }
.gold-underline:after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: -8px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent 70%)
}

/* Layout helpers */
.two-col { display: grid; grid-template-columns: 1.2fr 1fr; gap: 1.2rem; align-items: center }
.card { background: rgba(255,255,255,.05); border: 1px solid var(--line); border-radius: var(--radius); padding: 1rem; box-shadow: var(--shadow) }
.photo img { border-radius: 14px }
.checklist { padding-left: 1rem }
.checklist li { margin: .4rem 0 }
.cta-row { display: flex; gap: .8rem; margin-top: 1rem }

/* Footer */
.footer { margin-top: 2rem; background: #0a0f1e; border-top: 1px solid var(--line) }
.footer .f-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 1rem; padding: 2rem 0 }
.footer h4 { margin: .2rem 0 .6rem; font-family: "Playfair Display", serif }
.f-links { list-style: none; margin: 0; padding: 0; display: grid; gap: .35rem }
.brand-light .crest { box-shadow: none }
.brand-light { color: #e5e7eb }
.copyright { border-top: 1px solid var(--line); padding: .8rem 0; text-align: center; color: #9fb1c6 }

/* Responsive */
@media (max-width: 1000px) {
  .two-col { grid-template-columns: 1fr }
}

@media (max-width: 760px) {
  .hamburger { display: block }
  nav ul {
    position: fixed;
    inset: 72px 0 auto 0;
    background: rgba(8,12,24,.98);
    display: grid;
    gap: .8rem;
    padding: 1rem 1rem 1.4rem;
    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
    transition: all .2s ease;
  }
  nav ul.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .avail-card { grid-template-columns: 1fr }
  .hero-slider { height: 55vh; min-height: 300px }
  .h-title { font-size: clamp(1.4rem, 5vw, 2rem) }
  .h-sub { font-size: .9rem }
}

@media (max-width: 480px) {
  .hero-slider { height: 45vh; min-height: 260px }
  .h-title { font-size: 1.2rem }
  .h-sub { font-size: .85rem }
  .cta-row { flex-direction: column }
  .footer .f-grid { grid-template-columns: 1fr }
}
