/* ELEVATE — Milestone Church Youth | elevate.milestonechurch.com */

:root {
  --black: #0a0a0e;
  --ink: #101018;
  --white: #ffffff;
  --mist: #b9bdc9;
  --blue: #3b6bff;
  --blue-bright: #6d92ff;
  --blue-deep: #1a2f8f;
  --radius: 14px;
  --max: 1180px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

/* ---------- Nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: linear-gradient(rgba(10,10,14,.92), rgba(10,10,14,.75));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.nav-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.logo { display: inline-block; text-decoration: none; }
.logo img { height: 22px; width: auto; display: block; }
.logo img.logo-foot { height: 30px; }
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a {
  text-decoration: none; font-size: 14px; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase; color: var(--mist);
  transition: color .2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-cta {
  background: var(--blue); color: #fff !important; padding: 10px 20px;
  border-radius: 999px; transition: background .2s, transform .2s;
}
.nav-cta:hover { background: var(--blue-bright); transform: translateY(-1px); }
.nav-toggle { display: none; background: none; border: 0; color: #fff; font-size: 28px; cursor: pointer; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block; text-decoration: none; font-weight: 700;
  font-size: 15px; letter-spacing: .06em; text-transform: uppercase;
  padding: 16px 34px; border-radius: 999px; transition: all .2s;
}
.btn-primary { background: var(--blue); color: #fff; box-shadow: 0 8px 30px rgba(59,107,255,.35); }
.btn-primary:hover { background: var(--blue-bright); transform: translateY(-2px); }
.btn-ghost { border: 2px solid rgba(255,255,255,.4); color: #fff; }
.btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,.08); }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 92vh; display: flex; align-items: flex-end;
  overflow: hidden;
}
.hero-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,14,.35) 0%, rgba(10,10,14,.15) 40%, rgba(10,10,14,.95) 100%);
}
.hero-content { position: relative; z-index: 2; width: 100%; padding: 0 24px 72px; max-width: var(--max); margin: 0 auto; }
.hero h1 {
  font-size: clamp(44px, 8vw, 96px); font-weight: 900; font-style: italic;
  line-height: .95; letter-spacing: -.01em; text-transform: uppercase;
  margin-bottom: 18px;
}
.hero h1 .accent {
  background: linear-gradient(100deg, var(--blue-bright), #a8c0ff);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero p { font-size: clamp(17px, 2.2vw, 21px); color: #e6e8ee; max-width: 560px; margin-bottom: 30px; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

/* ---------- Info bar ---------- */
.info-bar { background: var(--blue); }
.info-bar-inner {
  max-width: var(--max); margin: 0 auto; padding: 18px 24px;
  display: flex; justify-content: center; gap: 40px; flex-wrap: wrap;
  font-weight: 700; letter-spacing: .1em; text-transform: uppercase; font-size: 14px;
}
.info-bar-inner span { display: flex; align-items: center; gap: 8px; }

/* ---------- Sections ---------- */
section { padding: 96px 0; }
.eyebrow {
  display: inline-block; font-size: 13px; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase; color: var(--blue-bright);
  margin-bottom: 14px;
}
h2 {
  font-size: clamp(32px, 5vw, 56px); font-weight: 900; font-style: italic;
  text-transform: uppercase; line-height: 1.02; letter-spacing: -.01em;
  margin-bottom: 20px;
}
.lead { font-size: 18px; color: var(--mist); max-width: 640px; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split .photo { border-radius: var(--radius); overflow: hidden; box-shadow: 0 30px 80px rgba(0,0,0,.5); }
.split .photo img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/5; }

/* ---------- Campus cards ---------- */
.campus-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 48px; }
.campus-card {
  background: var(--ink); border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius); padding: 30px 26px;
  transition: transform .2s, border-color .2s;
}
.campus-card:hover { transform: translateY(-4px); border-color: rgba(109,146,255,.5); }
.campus-card h3 {
  font-size: 22px; font-weight: 800; font-style: italic; text-transform: uppercase;
  margin-bottom: 10px; color: var(--blue-bright);
}
.campus-card p { font-size: 14.5px; color: var(--mist); margin-bottom: 8px; }
.campus-card .room { color: #fff; font-weight: 600; }
.campus-card a { color: var(--blue-bright); text-decoration: none; font-weight: 600; font-size: 14px; }
.campus-card a:hover { text-decoration: underline; }

/* ---------- Photo strip ---------- */
.photo-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.photo-strip img {
  width: 100%; aspect-ratio: 4/5; object-fit: cover;
  border-radius: var(--radius);
}

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; text-align: center; padding: 130px 24px; }
.cta-band .bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cta-band::after { content: ""; position: absolute; inset: 0; background: rgba(10,10,20,.72); }
.cta-band > .inner { position: relative; z-index: 2; }
.cta-band h2 { margin-bottom: 16px; }
.cta-band p { color: #d9dce6; max-width: 540px; margin: 0 auto 32px; }

/* ---------- Steps (Next Steps page) ---------- */
.step {
  background: var(--ink); border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius); padding: 48px; margin-bottom: 28px;
}
.step-num {
  display: inline-flex; width: 46px; height: 46px; border-radius: 50%;
  background: var(--blue); align-items: center; justify-content: center;
  font-weight: 900; font-size: 20px; margin-bottom: 18px;
}
.step h3 { font-size: 28px; font-weight: 800; font-style: italic; text-transform: uppercase; margin-bottom: 14px; }
.step p { color: var(--mist); margin-bottom: 14px; max-width: 720px; }
.step blockquote {
  border-left: 3px solid var(--blue); padding: 6px 0 6px 20px; margin: 18px 0;
  color: #dfe3ec; font-style: italic;
}
.step blockquote cite { display: block; margin-top: 6px; font-style: normal; font-size: 13.5px; color: var(--blue-bright); }
.step .btn { margin-top: 10px; }

/* ---------- IG grid ---------- */
.ig-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 42px; }
.ig-grid a { position: relative; display: block; border-radius: 10px; overflow: hidden; }
.ig-grid img { width: 100%; aspect-ratio: 1/1; object-fit: cover; transition: transform .3s; }
.ig-grid a:hover img { transform: scale(1.05); }
.ig-grid .likes {
  position: absolute; bottom: 8px; left: 10px; z-index: 2;
  font-size: 13px; font-weight: 700; text-shadow: 0 1px 6px rgba(0,0,0,.8);
}

/* ---------- Page hero (interior) ---------- */
.page-hero { padding: 160px 0 60px; text-align: center; }
.page-hero h1 {
  font-size: clamp(38px, 6vw, 72px); font-weight: 900; font-style: italic;
  text-transform: uppercase; line-height: 1;
}
.page-hero p { color: var(--mist); font-size: 18px; max-width: 620px; margin: 18px auto 0; }

/* ---------- Footer ---------- */
footer {
  border-top: 1px solid rgba(255,255,255,.08); padding: 64px 0 40px;
  background: #070709;
}
.foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
footer h4 { font-size: 13px; letter-spacing: .18em; text-transform: uppercase; color: var(--mist); margin-bottom: 16px; }
footer ul { list-style: none; }
footer li { margin-bottom: 10px; }
footer a { color: #d6d9e2; text-decoration: none; font-size: 15px; }
footer a:hover { color: var(--blue-bright); }
.foot-note { font-size: 13.5px; color: #6d7280; border-top: 1px solid rgba(255,255,255,.06); padding-top: 26px; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .campus-grid { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .ig-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 680px) {
  .nav-links {
    display: none; position: absolute; top: 68px; left: 0; right: 0;
    flex-direction: column; background: rgba(10,10,14,.98); padding: 24px;
    gap: 20px; border-bottom: 1px solid rgba(255,255,255,.1);
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .photo-strip { grid-template-columns: 1fr; }
  .photo-strip img { aspect-ratio: 4/3; }
  .campus-grid { grid-template-columns: 1fr; }
  .ig-grid { grid-template-columns: repeat(2, 1fr); }
  .step { padding: 32px 24px; }
  section { padding: 64px 0; }
}
