@charset "UTF-8";

/* =========================
   Theme tokens
   ========================= */
:root{
  --brand: #46add2;
  --text: #111827;
  --muted: #6b7280;
  --border: #e5e7eb;
  --shadow: 0 10px 30px rgba(0,0,0,.06);
}

/* =========================
   Base
   ========================= */
body{
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: #ffffff;
  color: var(--text);
}

/* =========================
   Hero (more color like resume banner)
   ========================= */
.hero{
  background:
    radial-gradient(900px 520px at 10% 12%, rgba(214, 133, 214, .30), transparent 62%),
    radial-gradient(880px 520px at 92% 18%, rgba(70, 173, 210, .26), transparent 60%),
    radial-gradient(820px 520px at 70% 92%, rgba(130, 190, 255, .18), transparent 60%),
    radial-gradient(760px 420px at 26% 92%, rgba(223, 148, 53, .16), transparent 62%),
    linear-gradient(180deg, rgba(255,255,255,.94) 0%, rgba(247,248,252,.98) 100%);
  border-bottom: 1px solid rgba(11,16,32,.10);
}

/* Small nav links (if you ever re-enable them) */
.nav-min a{
  color: rgba(11,16,32,.78);
  text-decoration: none;
  font-weight: 600;
}
.nav-min a:hover{ color: rgba(11,16,32,.95); }

/* =========================
   Pill label
   ========================= */
.pill{
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .32rem .72rem;
  border-radius: 999px;
  border: 1px solid rgba(223,148,53,.28);
  background: rgba(223,148,53,.14);
  color: rgba(11,16,32,.82);
  font-size: .85rem;
  font-weight: 700;
  width: fit-content;
}

/* =========================
   Video card
   ========================= */
.video-card{
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
}

.video-wrap{
  background: #000;
  aspect-ratio: 16 / 9;
}
.video-wrap video{
  width: 100%;
  height: 100%;
  display: block;
}

/* =========================
   Footer + buttons
   ========================= */
footer{
  border-top: 1px solid var(--border);
  background: #fafafa;
}

.icon-link{
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .5rem .75rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  text-decoration: none;
  color: var(--text);
  background: #fff;
}
.icon-link:hover{
  border-color: #cbd5e1;
  box-shadow: 0 6px 18px rgba(0,0,0,.06);
}

.small-muted{ color: var(--muted); }

/* =========================
   Images (billboard, etc.)
   ========================= */
.project-image{
  width: min(700px, 100%);
  height: auto;
  display: block;
  margin: 1.5rem auto;
}

/* =========================
   Billboard / award page helpers
   (does NOT override Bootstrap .container)
   ========================= */
.section{ padding: 3rem 0; }

.hero-top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:2rem;
}

.lead{ max-width: 60ch; }

.media-wrap{ background:#fff; }
.media-wrap img{ width:100%; display:block; }

.card-body{ padding: 1.5rem 1.5rem 1.75rem; }
.card-title{ margin: 0 0 .35rem 0; }
.card-sub{ margin: 0 0 1.25rem 0; color: var(--muted); }

.meta-grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 1.25rem;
}
.meta-grid h3{ margin:0 0 .25rem 0; font-size: .95rem; }
.meta-grid p{ margin:0; color:#374151; }

.soft-hr{
  border:0;
  border-top:1px solid var(--border);
  margin: 1.25rem 0;
}

.clean-list{ margin: .5rem 0 0 1.1rem; }

footer{
  border-top: 1px solid var(--border);
  background:
    radial-gradient(900px 520px at 10% 12%, rgba(214,133,214,.18), transparent 62%),
    radial-gradient(880px 520px at 92% 18%, rgba(70,173,210,.16), transparent 60%),
    radial-gradient(820px 520px at 70% 92%, rgba(130,190,255,.12), transparent 60%),
    radial-gradient(760px 420px at 26% 92%, rgba(223,148,53,.10), transparent 62%),
    linear-gradient(180deg, rgba(255,255,255,.96) 0%, rgba(247,248,252,.98) 100%);
}

.footer-grid{
  display:flex;
  justify-content:space-between;
  gap:2rem;
  padding: 2.25rem 0;
}

.footer-links{
  display:flex;
  flex-wrap:wrap;
  gap:.5rem;
  margin-top:.75rem;
}

@media (max-width: 820px){
  .hero-top{ flex-direction:column; }
  .meta-grid{ grid-template-columns: 1fr; }
  .footer-grid{ flex-direction:column; }
}

/* =========================
   Slide-out Menu (glass panel)
   ========================= */
.menu-btn{
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 1200;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(11,16,32,.12);
  background: rgba(255,255,255,.90);
  display: grid;
  place-items: center;
  font-size: 20px;
  line-height: 1;
}

/* Overlay: dark transparent (no blur so your page doesn't get “weird”) */
.menu-overlay{
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: rgba(15, 23, 42, 0.22);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
}

/* Panel: glass blur */
.menu-panel{
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: min(360px, 92vw);
  z-index: 1150;

  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-left: 1px solid rgba(255,255,255,0.55);

  transform: translateX(110%);
  transition: transform .25s ease;
  box-shadow: -24px 0 60px rgba(0,0,0,0.14);
  padding: 18px;
}

/* Panel header */
.menu-head{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(11,16,32,.10);
  margin-bottom: 12px;
}

.menu-title{
  font-weight: 800;
  font-size: 1.1rem;
  color: #0b1020;
  margin: 0;
}

.menu-close{
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(11,16,32,.12);
  background: rgba(255,255,255,.92);
  display: grid;
  place-items: center;
  font-size: 24px;
  line-height: 1;
}

/* Links (remove blue/underline) */
.menu-panel a{
  display: block;
  padding: 10px 12px;
  border-radius: 12px;
  color: rgba(11,16,32,.86);
  text-decoration: none !important;
  border-bottom: 0 !important;
  font-weight: 650;
}
.menu-panel a:hover{
  background: rgba(15, 23, 42, 0.06);
  color: rgba(11,16,32,.95);
}

/* Open state */
.menu-open .menu-overlay{
  opacity: 1;
  pointer-events: auto;
}
.menu-open .menu-panel{
  transform: translateX(0);
}
body.menu-open{
  overflow: hidden;
}