/* =========================
   Base + Theme
========================= */
:root{
  --bg: #0b1220;
  --surface: #0f1a30;
  --surface-2:#122042;
  --card: rgba(255,255,255,0.06);
  --text: #eaf0ff;
  --muted: rgba(234,240,255,0.75);
  --faint: rgba(234,240,255,0.55);

  --brand: #9AEDF7;       /* Sky */
  --brand-2:#C7F5F9;      /* Cyan */
  --accent:#EBFBFC;       /* Azure */
  --ink: #002529;         /* Gunmetal */

  --border: rgba(255,255,255,0.12);
  --shadow: 0 14px 40px rgba(0,0,0,0.35);

  --radius: 18px;
  --radius-sm: 12px;

  --container: 1120px;
  --gap: 20px;
  --gap-lg: 32px;

  --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Apple Color Emoji","Segoe UI Emoji";
}

/* Light mode support (optional) */
@media (prefers-color-scheme: light){
  :root{
    --bg: #f6f8ff;
    --surface: #ffffff;
    --surface-2:#f3f7ff;
    --card: rgba(0,0,0,0.04);
    --text: #071227;
    --muted: rgba(7,18,39,0.72);
    --faint: rgba(7,18,39,0.55);
    --border: rgba(7,18,39,0.12);
    --shadow: 0 14px 40px rgba(0,0,0,0.10);
  }
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body{
  margin: 0;
  font-family: var(--font);
  background: radial-gradient(1200px 650px at 20% 10%, rgba(154,237,247,0.16), transparent 55%),
              radial-gradient(900px 600px at 85% 20%, rgba(199,245,249,0.10), transparent 55%),
              linear-gradient(180deg, var(--bg), var(--bg));
  color: var(--text);
  line-height: 1.55;
}

img{ max-width: 100%; display: block; }

a{
  color: inherit;
  text-decoration: none;
}
a:hover{ text-decoration: underline; }

.container{
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.section{
  padding: 64px 0;
}

.section--tight{ padding: 44px 0; }

.kicker{
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 8px 12px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.04);
  border-radius: 999px;
  color: var(--muted);
  font-size: 14px;
  letter-spacing: 0.2px;
}

.dot{
  width: 8px;
  height: 8px;
  background: var(--brand);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(154,237,247,0.14);
}

h1,h2,h3{ line-height: 1.15; margin: 0 0 12px; }
p{ margin: 0 0 14px; color: var(--muted); }
small{ color: var(--faint); }

hr.sep{
  border: none;
  height: 1px;
  background: var(--border);
  margin: 0;
}

/* =========================
   Buttons + Forms
========================= */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.04);
  color: var(--text);
  font-weight: 600;
  letter-spacing: 0.2px;
  cursor: pointer;
  transition: transform .12s ease, background .12s ease, border-color .12s ease;
  text-decoration: none;
}
.btn:hover{
  background: rgba(255,255,255,0.08);
  transform: translateY(-1px);
  text-decoration: none;
}
.btn:active{ transform: translateY(0px); }

.btn--primary{
  background: linear-gradient(180deg, var(--brand), var(--brand-2));
  border-color: rgba(0,0,0,0.08);
  color: var(--ink);
}
.btn--primary:hover{
  background: linear-gradient(180deg, var(--brand-2), var(--brand));
}

.btn--ghost{
  background: transparent;
}

.input{
  width: 100%;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.04);
  color: var(--text);
  outline: none;
}
.input::placeholder{ color: rgba(234,240,255,0.55); }

@media (prefers-color-scheme: light){
  .input::placeholder{ color: rgba(7,18,39,0.45); }
}

/* =========================
   Header / Nav
========================= */
.header{
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(11,18,32,0.55);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
@media (prefers-color-scheme: light){
  .header{ background: rgba(246,248,255,0.75); }
}

.nav{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 16px;
}

.brand{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0.3px;
}
.brand-mark{
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background:
    radial-gradient(12px 12px at 30% 30%, rgba(255,255,255,0.8), transparent 45%),
    linear-gradient(180deg, var(--brand), var(--brand-2));
  box-shadow: 0 10px 26px rgba(154,237,247,0.25);
}
.brand span{ color: var(--text); }

.nav-links{
  display: flex;
  gap: 18px;
  align-items: center;
  color: var(--muted);
  font-weight: 600;
  font-size: 14px;
}

.nav-cta{
  display: flex;
  gap: 10px;
  align-items: center;
}

/* Mobile menu */
.burger{
  display: none;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.04);
  border-radius: 12px;
  padding: 10px 12px;
  cursor: pointer;
  color: var(--text);
  font-weight: 700;
}

@media (max-width: 860px){
  .nav-links{ display: none; }
  .nav-cta .btn--ghost{ display: none; }
  .burger{ display: inline-flex; }
}

/* =========================
   Hero
========================= */
.hero{
  padding: 70px 0 52px;
 
}


.hero-grid{
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--gap-lg);
  align-items: center;
  border: 2px solid #fff;
  padding: 22px;
  box-shadow: 0 0 18px 9px #fff;
}
.hero h1{
  font-size: clamp(34px, 4.2vw, 56px);
  letter-spacing: -0.6px;
}
.hero .lead{
  font-size: 18px;
  color: var(--muted);
  max-width: 52ch;
}
.hero-card{
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow);
}

.hero-media{
  border-radius: 14px;
  height: 280px;
  background:
    radial-gradient(500px 220px at 20% 30%, rgba(154,237,247,0.22), transparent 60%),
    radial-gradient(400px 220px at 85% 60%, rgba(199,245,249,0.18), transparent 60%),
    linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.10);
  position: relative;
  overflow: hidden;
}
.hero-media::after{
  content: "";
  position: absolute;
  inset: -30%;
  background: conic-gradient(from 180deg, rgba(154,237,247,0.22), transparent, rgba(199,245,249,0.18), transparent);
  filter: blur(24px);
  opacity: 0.7;
  transform: rotate(10deg);
}

.hero-actions{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.stats{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 22px;
}
.stat{
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255,255,255,0.03);
}
.stat strong{
  display: block;
  font-size: 18px;
}
.stat small{ display: block; margin-top: 2px; }

@media (max-width: 860px){
  .hero-grid{ grid-template-columns: 1fr; }
  .hero-media{ height: 220px; }
  .stats{ grid-template-columns: 1fr; }
}

/* =========================
   Booking bar
========================= */
.booking{
  margin-top: 18px;
  padding: 14px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.04);
}
.booking-grid{
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr auto;
  gap: 10px;
  align-items: end;
}
.booking label{
  display: block;
  font-size: 12px;
  color: var(--faint);
  margin: 0 0 6px;
}
@media (max-width: 980px){
  .booking-grid{
    grid-template-columns: 1fr 1fr;
  }
  .booking-grid .btn{ width: 100%; }
}

/* =========================
   Cards + Grids
========================= */
.grid-3{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}
.grid-2{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gap);
}
@media (max-width: 900px){
  .grid-3{ grid-template-columns: 1fr; }
  .grid-2{ grid-template-columns: 1fr; }
}

.card{
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.04);
  padding: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.18);
}

.card h3{
  margin-bottom: 8px;
  font-size: 18px;
}
.meta{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  color: var(--faint);
  font-size: 13px;
}
.pill{
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.03);
}

/* Simple icon */
.ico{
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(154,237,247,0.14);
  border: 1px solid rgba(154,237,247,0.25);
  color: var(--brand-2);
  margin-bottom: 12px;
}
.ico svg{ width: 20px; height: 20px; }

/* =========================
   Testimonials
========================= */
.quote{
  position: relative;
}
.quote p{
  font-size: 16px;
  color: var(--muted);
}
.quote footer{
  margin-top: 10px;
  color: var(--faint);
  font-size: 13px;
}

/* =========================
   Footer
========================= */
.footer{
  padding: 36px 0;
  border-top: 1px solid rgba(255,255,255,0.10);
  color: var(--muted);
}
.footer-grid{
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: var(--gap);
}
.footer a{ color: var(--muted); }
.footer a:hover{ color: var(--text); text-decoration: none; }
@media (max-width: 900px){
  .footer-grid{ grid-template-columns: 1fr; }
}

/* =========================
   Utility
========================= */
.sr-only{
  position:absolute;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}

.editable  {

  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;

}
