
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

:root {
  --black: #0B0C0D;
  --white: #FFFFFF;
  --emerald: #046A38;
  --yellow: #FFD700;
  --grey: #E6E8EA;
  --muted: #9aa1a8;
  --bg: var(--white);
  --fg: var(--black);
  --card: #ffffff;
  --line: #e8eaee;
  --shadow: 0 10px 30px rgba(0,0,0,0.06);
}

[data-theme="dark"] {
  --bg: #0B0C0D;
  --fg: #F4F4F4;
  --card: #111315;
  --line: #1E2226;
  --shadow: 0 10px 24px rgba(0,0,0,0.35);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--bg); color: var(--fg); }
body { font-family: Poppins, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; line-height: 1.6; }
img { max-width:100%; height:auto; display:block; }
.container { width: min(1100px, 92%); margin: 0 auto; }

header {
  background: linear-gradient(180deg, rgba(0,0,0,0.78), rgba(0,0,0,0.36)), url('assets/hero.webp') center/cover no-repeat;
  color: #fff;
  padding: 22px 0 90px;
  border-bottom: 6px solid var(--emerald);
}

nav { display:flex; align-items:center; justify-content:space-between; gap:16px; }
nav .brand { display:flex; align-items:center; gap:16px; }
nav .brand img { height: 100px; border-radius: 10px; }
nav .brand strong { font-size: 1.3rem; letter-spacing: .3px; }
nav a { color: #fff; text-decoration: none; margin-left: 14px; opacity: 0.96; }
nav a:hover { opacity: 1; text-decoration: underline; }

.theme-toggle {
  display:inline-flex; align-items:center; gap:8px;
  border:1px solid rgba(255,255,255,.4); color:#fff; background:transparent;
  padding:8px 10px; border-radius:10px; cursor:pointer;
}

.hero { margin-top: 60px; }
.hero h1 { font-size: clamp(2rem, 3.6vw, 3rem); margin: 0 0 10px; }
.hero p { font-size: clamp(1rem, 1.6vw, 1.2rem); max-width: 60ch; opacity: 0.99; }
.cta-group { display:flex; gap:12px; margin-top:22px; flex-wrap:wrap; }
.button { display:inline-block; padding:12px 18px; border-radius: 12px; border: 2px solid var(--emerald); background: var(--emerald); color: #fff; font-weight: 700; text-decoration: none; }
.button.secondary { background: var(--yellow); border-color: var(--yellow); color: var(--black); }

.section { padding: 64px 0; }
.section h2 { font-size: 2rem; margin-bottom: 10px; }
.section p.lead { font-size: 1.1rem; opacity: 0.9; }

.grid { display:grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap:18px; }
.card { border: 1px solid var(--line); background: var(--card); border-radius: 16px; padding: 18px; box-shadow: var(--shadow); }
.card h3 { margin-top: 0; }

.split { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 28px; align-items:center; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } header { padding-bottom: 48px; } }

.gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 10px; margin-top: 22px; }
.gallery a { position: relative; border-radius: 12px; overflow: hidden; border: 1px solid var(--line); display:block; }
.gallery img { width: 100%; height: 220px; object-fit: cover; display: block; }

.pricing { background: var(--card); border:1px solid var(--line); border-radius:18px; padding:24px; display:grid; gap:12px; max-width:560px; box-shadow: var(--shadow); }
.price { font-size:2rem; font-weight:800; color: var(--emerald); letter-spacing: .3px; }
.badge { display:inline-block; padding:6px 10px; background: var(--yellow); color:#000; border-radius:999px; font-size:0.85rem; box-shadow: var(--shadow); }

.kv { display:grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.kv div { display:flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px dashed var(--line); }
@media (max-width: 700px) { .kv { grid-template-columns: 1fr; } }

hr.soft { border: none; border-top: 1px solid var(--line); margin: 28px 0; }

footer { background: var(--black); color: #fff; padding: 28px 0; border-top: 4px solid var(--emerald); }
footer a { color: #fff; opacity: 0.9; }

/* Booking form – clean, modern */
form.booking { 
  background: var(--card); border:1px solid var(--line); border-radius: 18px; padding: 22px; 
  display:grid; gap:14px; max-width: 600px; box-shadow: var(--shadow);
}
.form-row { display:grid; grid-template-columns: 1fr 1fr; gap:12px; }
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }

label { font-weight: 600; font-size: .95rem; color: var(--fg); }
.input { 
  width:100%; padding: 12px 14px; border-radius: 12px; border: 1px solid var(--line); background: transparent; 
  color: var(--fg); outline: none; transition: box-shadow .2s, border-color .2s, background .2s;
}
.input:focus { border-color: var(--emerald); box-shadow: 0 0 0 4px color-mix(in srgb, var(--emerald) 18%, transparent); }
.input::placeholder { color: var(--muted); }
.notice { padding: 12px 14px; border:1px dashed var(--line); border-radius:12px; font-size:.95rem; display:flex; gap:10px; align-items:center; }
.notice strong { color: var(--emerald); }

.btn-row { display:flex; gap:12px; align-items:center; flex-wrap:wrap; }
button.btn { padding: 12px 18px; border-radius: 12px; border:2px solid var(--emerald); background: var(--emerald); color:#fff; font-weight:700; cursor:pointer; }
button.btn.secondary { background: var(--yellow); border-color: var(--yellow); color: var(--black); }

/* Dark mode friendly hero menu */
nav .right { display:flex; align-items:center; gap: 10px; }
