:root{
  /* Base */
  --bg:#0b0b0c;
  --card:#121214;
  --text:#ffffff;
  --muted:#d0d0d0;
  --border:rgba(255,255,255,.15);

  /* Glencoe (logo-inspired) */
  --maroon:#7b0d1e;
  --gold:#f4b400; /* optional accent (use sparingly) */
}

/* ====== Global ====== */
*{ box-sizing:border-box; }

html, body{
  margin:0;
  padding:0;
}

body{
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
}

a{ color: inherit; text-decoration: none; }

.wrap{
  max-width: 980px;
  margin: 0 auto;
  padding: 0 16px;
}

/* ====== Header / Nav ====== */
.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(0,0,0,.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 12px 0;
  gap: 14px;
}

.brand{
  display:flex;
  align-items:center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 13px;
}

.brand img{
  height: 42px;
  width: auto;
  display: block;
}

.nav{
  display:flex;
  align-items:center;
  gap: 14px;
  flex-wrap: wrap;
}

.nav a{
  font-size: 14px;
  opacity: .9;
  padding: 6px 8px;
  border-radius: 10px;
}

.nav a:hover{
  opacity: 1;
  background: rgba(255,255,255,.06);
}

/* Optional dropdown support (if you add it later) */
.dropdown{ position:relative; }
.dropbtn{
  background: transparent;
  border: 0;
  color: var(--text);
  font-size: 14px;
  opacity: .9;
  cursor: pointer;
  padding: 6px 8px;
  border-radius: 10px;
}
.dropbtn:hover{
  opacity: 1;
  background: rgba(255,255,255,.06);
}
.dropdown-menu{
  display:none;
  position:absolute;
  right:0;
  top: 42px;
  min-width: 220px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,.45);
}
.dropdown-menu a{
  display:block;
  padding: 10px 12px;
  font-size: 14px;
  opacity: .95;
}
.dropdown-menu a:hover{
  background: rgba(255,255,255,.06);
}
.dropdown.open .dropdown-menu{ display:block; }

/* ====== Hero ====== */
.hero{
  background:
    linear-gradient(rgba(0,0,0,.55), rgba(0,0,0,.55)),
    radial-gradient(circle at top, var(--maroon), #000 65%);
  padding: 72px 0 48px;
  border-bottom: 1px solid var(--border);
}

.hero-inner{
  text-align:center;
}

h1{
  margin: 0 0 10px;
  font-size: clamp(32px, 5vw, 46px);
  letter-spacing: .01em;
}

.sub{
  margin: 0 auto 18px;
  max-width: 680px;
  color: var(--muted);
}

/* Optional button styling (if you use .btn links) */
.btn{
  display:inline-block;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: transparent;
}
.btn.primary{
  background: #fff;
  color: #111;
  border-color: transparent;
  font-weight: 800;
}
.btn.primary:hover{ filter: brightness(1.05); }

/* ====== Cards / Sections ====== */
.card{
  margin: 28px auto 56px;
  background: linear-gradient(145deg, #17171a, #0f0f10);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px 18px 22px;
}

.card h2{
  margin: 0 0 12px;
  font-size: 18px;
  letter-spacing: .01em;
}

/* ====== Link Tiles (the “Sunset-style” buttons) ====== */
.link-grid{
  display:grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

@media (min-width: 650px){
  .link-grid{
    grid-template-columns: 1fr 1fr;
  }
}

/* If you want one-column buttons on some pages, add class "single" to link-grid */
.link-grid.single{
  grid-template-columns: 1fr;
}

.tile{
  padding: 16px 16px;
  border-radius: 14px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.18);
  font-weight: 650;
  letter-spacing: .02em;
}

.tile:hover{
  background: rgba(123,13,30,.35);
  border-color: var(--maroon);
}

.note{
  margin-top: 14px;
  font-size: .92rem;
  color: var(--muted);
}

/* ====== Footer ====== */
.site-footer{
  border-top: 1px solid var(--border);
  background: #050506;
  padding: 26px 0;
  color: rgba(255,255,255,.78);
}

.footer-inner{
  display:flex;
  gap: 26px;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-title{
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 8px;
  color: #fff;
}

.site-footer a{
  opacity: .9;
}
.site-footer a:hover{
  opacity: 1;
  text-decoration: underline;
}
