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

:root {
  --teal:#009b9b;
  --teal-dark:#006f72;
  --teal-deep:#074d52;
  --ink:#102328;
  --muted:#65757a;
  --bg:#f4f7f7;
  --line:#dbe4e5;
  --white:#fff;
  --danger:#e72d32;
  --warning:#ff9b00;
  --shadow:0 16px 45px rgba(8,47,52,.10);
}

* { box-sizing:border-box; }
html { scroll-behavior:smooth; }
body {
  margin:0;
  font-family:Inter,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  color:var(--ink);
  background:#fff;
}
a { color:inherit; }
.container { width:min(1180px, calc(100% - 40px)); margin:auto; }

.site-header {
  position:sticky; top:0; z-index:50;
  background:rgba(255,255,255,.95);
  backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(219,228,229,.8);
}
.header-inner { min-height:78px; display:flex; align-items:center; justify-content:space-between; }
.brand { display:flex; gap:12px; align-items:center; text-decoration:none; }
.brand-mark {
  width:46px; height:46px; display:grid; place-items:center; border-radius:12px;
  background:var(--teal); color:#fff; font-weight:800; letter-spacing:-1px;
}
.brand-text { display:flex; flex-direction:column; line-height:1.05; }
.brand-text strong { font-size:16px; text-transform:uppercase; letter-spacing:.03em; }
.brand-text span { color:var(--teal-dark); font-weight:700; font-size:13px; text-transform:uppercase; letter-spacing:.10em; }
nav { display:flex; gap:25px; align-items:center; }
nav a { text-decoration:none; font-weight:650; font-size:14px; color:#33464a; }
nav a:hover { color:var(--teal); }
.menu-button { display:none; border:0; background:transparent; font-size:28px; }

.hero {
  color:#fff;
  background:
    radial-gradient(circle at 83% 20%, rgba(255,255,255,.15), transparent 22%),
    linear-gradient(115deg, #063f44, #008d90 68%, #00a5a5);
  padding:86px 0 76px;
  overflow:hidden;
}
.hero-grid { display:grid; grid-template-columns:1.3fr .7fr; gap:70px; align-items:center; }
.eyebrow { color:var(--teal-dark); font-size:12px; letter-spacing:.18em; font-weight:800; text-transform:uppercase; margin-bottom:12px; }
.hero .eyebrow { color:#dbffff; display:flex; gap:9px; align-items:center; }
.live-dot { display:inline-block; width:9px; height:9px; border-radius:50%; background:#ff3942; box-shadow:0 0 0 5px rgba(255,57,66,.15); }
h1 { font-size:clamp(48px,7vw,82px); line-height:.98; margin:0 0 22px; letter-spacing:-.055em; }
.hero-copy { font-size:19px; max-width:680px; color:#d8f4f4; line-height:1.65; }
.hero-actions { display:flex; gap:12px; margin-top:30px; }
.button { padding:13px 20px; border-radius:9px; text-decoration:none; font-weight:750; }
.button.primary { background:#fff; color:var(--teal-deep); }
.button.secondary { border:1px solid rgba(255,255,255,.45); color:#fff; }
.hero-card { background:rgba(0,40,43,.32); border:1px solid rgba(255,255,255,.2); padding:26px; border-radius:18px; box-shadow:0 20px 60px rgba(0,0,0,.16); }
.mini-label { font-size:11px; letter-spacing:.17em; font-weight:800; opacity:.68; margin-bottom:17px; }
.status-row { display:flex; justify-content:space-between; gap:20px; padding:15px 0; border-bottom:1px solid rgba(255,255,255,.13); font-size:14px; }
.status-row strong { font-size:12px; letter-spacing:.05em; }
.online { color:#8dffba; }
.updated { font-size:11px; color:#b9d9da; margin-top:15px; line-height:1.5; }

.alert-banner { background:#b81820; color:#fff; }
.alert-banner .container { min-height:54px; display:flex; align-items:center; gap:14px; font-size:14px; }
.alert-banner strong { text-transform:uppercase; }
.alert-banner a { margin-left:auto; font-weight:700; white-space:nowrap; }

.section { padding:72px 0; }
.section.alt { background:var(--bg); }
.section-heading { display:flex; justify-content:space-between; gap:24px; align-items:end; margin-bottom:28px; }
h2 { margin:0; font-size:clamp(31px,4vw,46px); letter-spacing:-.04em; }
.pill { display:inline-flex; gap:9px; align-items:center; padding:9px 13px; border-radius:999px; background:#f3f7f7; font-size:12px; font-weight:800; }
.live-pill { color:#b7151d; }

.video-shell { background:#071113; aspect-ratio:16/9; border-radius:18px; overflow:hidden; box-shadow:var(--shadow); }
.video-shell iframe { width:100%; height:100%; border:0; display:block; }
.video-placeholder { width:100%; height:100%; color:#d8e5e6; display:grid; place-items:center; text-align:center; padding:30px; }
.video-placeholder h3 { color:#fff; margin-bottom:7px; }
.video-placeholder p { color:#8ca0a4; }
.play-icon { width:68px; height:68px; border-radius:50%; background:var(--teal); display:grid; place-items:center; margin:0 auto 15px; color:#fff; padding-left:4px; }

.conditions-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:16px; }
.weather-card { background:#fff; border:1px solid var(--line); border-radius:16px; padding:22px; min-height:180px; box-shadow:0 10px 30px rgba(10,45,50,.05); }
.weather-card .city { font-size:14px; font-weight:800; }
.weather-card .state { color:var(--muted); font-size:12px; }
.temp { font-size:48px; line-height:1; font-weight:800; letter-spacing:-.05em; margin:20px 0 8px; }
.condition { font-size:13px; font-weight:700; color:var(--teal-dark); margin-bottom:18px; min-height:32px; }
.weather-meta { display:grid; grid-template-columns:1fr 1fr; gap:8px; font-size:11px; color:var(--muted); }
.weather-meta strong { color:var(--ink); display:block; font-size:13px; margin-top:3px; }
.loading-card { color:var(--muted); display:grid; place-items:center; }

.camera-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.camera-card { overflow:hidden; border-radius:16px; border:1px solid var(--line); background:#fff; box-shadow:0 10px 30px rgba(10,45,50,.06); }
.camera-screen { aspect-ratio:16/9; background:linear-gradient(135deg,#163d42,#09272a); display:grid; place-items:center; color:#fff; position:relative; }
.camera-screen iframe { width:100%; height:100%; border:0; }
.camera-live { position:absolute; left:12px; top:12px; background:#cf1821; color:#fff; padding:6px 8px; border-radius:6px; font-size:10px; font-weight:800; letter-spacing:.06em; z-index:2; }
.camera-info { padding:16px 18px; }
.camera-info h3 { margin:0 0 5px; font-size:17px; }
.camera-info p { margin:0; color:var(--muted); font-size:12px; }

.dark-section { background:#0b2529; color:#fff; }
.dark-section h2 { color:#fff; }
.eyebrow.light { color:#78dede; }
.refresh-button { border:1px solid rgba(255,255,255,.3); color:#fff; background:transparent; padding:9px 13px; border-radius:8px; cursor:pointer; }
.alerts-list { display:grid; gap:12px; }
.alert-item { display:grid; grid-template-columns:8px 1fr auto; overflow:hidden; background:#123338; border:1px solid rgba(255,255,255,.08); border-radius:12px; }
.alert-color { background:var(--warning); }
.alert-copy { padding:16px 18px; }
.alert-copy h3 { margin:0 0 6px; font-size:16px; }
.alert-copy p { margin:0; color:#b8cbce; font-size:13px; line-height:1.5; }
.alert-time { padding:16px; font-size:11px; color:#9db3b6; text-align:right; max-width:175px; }
.empty-alert { padding:22px; border:1px dashed rgba(255,255,255,.22); border-radius:12px; color:#b8cbce; }

.info-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.info-card { border:1px solid var(--line); border-radius:16px; padding:24px; }
.info-card h3 { margin:14px 0 8px; }
.info-card p { color:var(--muted); line-height:1.6; }
.info-icon { width:44px; height:44px; border-radius:12px; background:#e6f8f8; color:var(--teal-dark); display:grid; place-items:center; font-size:24px; font-weight:800; }
.coming { display:inline-block; margin-top:10px; font-size:11px; font-weight:700; color:var(--teal-dark); background:#ecf7f7; padding:7px 9px; border-radius:7px; }

.about-grid { display:grid; grid-template-columns:1.1fr .9fr; gap:60px; align-items:center; }
.large-copy { font-size:20px; line-height:1.6; color:#304a4e; }
.about-grid p { line-height:1.8; color:var(--muted); }
.coverage-card { padding:35px; background:linear-gradient(135deg,#006f72,#00a3a3); color:#fff; border-radius:20px; box-shadow:var(--shadow); }
.coverage-card h3 { font-size:32px; line-height:1.15; margin:0; }
.coverage-card p { color:#d6ffff; margin-bottom:0; }

.sponsor-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:14px; }
.sponsor-placeholder { height:105px; border:1px dashed #c7d4d6; border-radius:14px; display:grid; place-items:center; color:#819195; font-size:12px; font-weight:700; }

footer { background:#07191c; color:#bed0d2; padding:42px 0 26px; }
.footer-grid { display:flex; justify-content:space-between; gap:40px; align-items:flex-start; }
.footer-brand { color:#fff; font-weight:800; letter-spacing:.08em; font-size:13px; }
.footer-grid p { font-size:12px; }
.footer-links { display:flex; gap:20px; }
.footer-links a { color:#b8c9cb; text-decoration:none; font-size:12px; }
.copyright { margin-top:30px; padding-top:20px; border-top:1px solid rgba(255,255,255,.09); font-size:10px; line-height:1.6; }

.data-source { color:var(--muted); font-size:11px; }
.hidden { display:none !important; }

@media (max-width:900px) {
  .hero-grid,.about-grid { grid-template-columns:1fr; gap:35px; }
  .conditions-grid { grid-template-columns:repeat(2,1fr); }
  .camera-grid,.info-grid { grid-template-columns:1fr 1fr; }
  .sponsor-grid { grid-template-columns:repeat(2,1fr); }
  nav { position:absolute; left:0; right:0; top:78px; background:#fff; display:none; flex-direction:column; align-items:flex-start; padding:20px; border-bottom:1px solid var(--line); }
  nav.open { display:flex; }
  .menu-button { display:block; }
}
@media (max-width:600px) {
  .container { width:min(100% - 28px,1180px); }
  .hero { padding:60px 0; }
  .conditions-grid,.camera-grid,.info-grid,.sponsor-grid { grid-template-columns:1fr; }
  .section { padding:54px 0; }
  .section-heading { align-items:flex-start; flex-direction:column; }
  .hero-actions { flex-direction:column; align-items:stretch; text-align:center; }
  .alert-banner .container { align-items:flex-start; flex-direction:column; padding:12px 14px; gap:5px; }
  .alert-banner a { margin-left:0; }
  .alert-item { grid-template-columns:7px 1fr; }
  .alert-time { grid-column:2; padding:0 18px 15px; text-align:left; }
  .footer-grid { flex-direction:column; }
}
