
/* BHHAOS Simple Static Site - v1 */
:root {
  --primary: #002395;
  --accent: #F7D117;
  --bg: #F3F4F6;
  --text: #1F2937;
  --white: #FFFFFF;
}
* { box-sizing: border-box; }
html, body { margin:0; padding:0; font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, Helvetica, Arial, 'Apple Color Emoji', 'Segoe UI Emoji'; color: var(--text); background: var(--bg); }
a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 1rem; }

/* Header */
.header { position: sticky; top: 0; z-index: 50; background: var(--white); box-shadow: 0 2px 6px rgba(0,0,0,0.07); }
.nav { display:flex; align-items:center; justify-content: space-between; height: 64px; }
.brand { display:flex; align-items:center; gap:.5rem; font-weight:700; color: var(--primary); }
.brand svg { height: 28px; width: 28px; }
.menu { display:flex; align-items:center; gap:1rem; }
.menu a { font-weight:600; color:#111827; }
.menu a.active { color: var(--primary); }

.mobile-toggle { display:none; background:none; border:none; }
@media (max-width: 800px) {
  .menu { display:none; position:absolute; top:64px; left:0; right:0; background:var(--white); padding:1rem; border-bottom:1px solid #e5e7eb; }
  .menu.show { display:block; }
  .mobile-toggle { display:block; }
}

/* Hero */
.hero { background: linear-gradient(135deg, var(--primary), #0a3fb0); color: var(--white); padding: 80px 0; position: relative; overflow:hidden; }
.hero::after { content:""; position:absolute; inset:0; background: radial-gradient(650px 300px at 90% -10%, rgba(247,209,23,0.35), transparent 60%), radial-gradient(300px 200px at 10% 110%, rgba(255,255,255,0.25), transparent 60%); pointer-events:none; }
.hero h1 { font-size: clamp(2rem, 5vw, 3rem); margin: 0 0 .5rem 0; }
.hero p { font-size: clamp(1rem, 2.2vw, 1.25rem); max-width: 55ch; }
.cta { margin-top:1.25rem; display:flex; gap:.75rem; flex-wrap: wrap; }
.btn { display:inline-block; padding:.75rem 1rem; border-radius:.5rem; font-weight:700; border:2px solid transparent; }
.btn.primary { background: var(--accent); color:#111; }
.btn.secondary { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.6); }
.btn:hover { filter: brightness(0.95); text-decoration: none; }

/* Sections */
.section { padding: 48px 0; }
.section h2 { font-size: clamp(1.5rem, 3.5vw, 2rem); margin-top:0; }
.grid-3 { display:grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap:1.25rem; }
@media (max-width: 900px) { .grid-3 { grid-template-columns: 1fr; } }
.card { background: var(--white); border:1px solid #e5e7eb; border-radius:.75rem; padding:1rem; box-shadow:0 1px 2px rgba(0,0,0,0.04); }

/* Footer */
.footer { background:#0b1c45; color: #cbd5e1; padding: 32px 0; }
.footer a { color: #e5e7eb; }
.footer small { color: #94a3b8; }

/* Gallery */
.gallery { display:grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 12px; }
.gallery img, .gallery .ph { width:100%; height: 180px; object-fit: cover; border-radius:.5rem; background:#e5e7eb; display:block; }
.lightbox { position: fixed; inset:0; background: rgba(0,0,0,0.85); display:none; align-items:center; justify-content:center; padding:2rem; }
.lightbox.show { display:flex; }
.lightbox img { max-width:90vw; max-height:90vh; border-radius:.5rem; }

/* Tables */
.table { width:100%; border-collapse: collapse; }
.table th, .table td { padding:.6rem; border-bottom:1px solid #e5e7eb; text-align:left; }
.badge { display:inline-block; padding:.2rem .5rem; border-radius:999px; background: #eef2ff; color: var(--primary); font-weight:700; font-size:.8rem; }

/* Forms */
.input, .textarea { width:100%; padding:.7rem .8rem; border:1px solid #e5e7eb; border-radius:.5rem; background: var(--white); }
.label { font-weight:600; margin:.4rem 0; display:block; }

/* Utilities */
.m-0{margin:0} .mt-0{margin-top:0} .mt-2{margin-top:.5rem} .mt-3{margin-top:.75rem} .mt-4{margin-top:1rem} .mt-6{margin-top:1.5rem} .mt-8{margin-top:2rem}
.text-center{text-align:center}
.flex{display:flex} .items-center{align-items:center} .gap-2{gap:.5rem}
