/* ================================================================
   LEARN AI WITH MARIAH — Brand System
   Matched to Weekend Bootcamp design language
   Colors: Red #d02e2e · Cream #fffae7 · Dark #2f2d2d · Orange #d06e2e
   Fonts: Anton (display) · Open Sans (body)
   ================================================================ */

:root {
  --red: #d02e2e;
  --cream: #fffae7;
  --black: #2f2d2d;
  --orange: #d06e2e;
  --red-light: rgba(208, 46, 46, 0.06);
  --red-hover: rgba(208, 46, 46, 0.1);
  --border-light: rgba(47, 45, 45, 0.12);
  --border-medium: rgba(47, 45, 45, 0.2);
  --text-muted: rgba(47, 45, 45, 0.55);
}

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; }

body {
  font-family: 'Open Sans', sans-serif;
  background: var(--cream);
  color: var(--black);
  margin: 0;
  padding: 0;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--red); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── TYPOGRAPHY ── */
.t-eyebrow {
  font-family: 'Anton', sans-serif;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin: 0 0 0.6rem;
}

.t-heading-xl {
  font-family: 'Anton', sans-serif;
  font-size: clamp(5rem, 12vw, 15rem);
  font-weight: 400;
  line-height: 0.92;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin: 0;
}

.t-heading-lg {
  font-family: 'Anton', sans-serif;
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--red);
  margin: 0 0 1.2rem;
}

.t-heading-md {
  font-family: 'Anton', sans-serif;
  font-size: clamp(1.2rem, 1.5vw, 1.5rem);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 0 0 0.6rem;
}

.t-body {
  font-size: clamp(1.15rem, 1.4vw, 1.35rem);
  font-weight: 400;
  line-height: 1.82;
  margin: 0 0 1.2rem;
}

.t-body strong { font-weight: 700; }

/* ── LAYOUT ── */
.page-wrap {
  width: 100%;
  min-height: 100vh;
  background: var(--cream);
}

.content-width {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 3.5rem;
}

@media (max-width: 600px) {
  .content-width { padding: 0 1.4rem; }
}

.section {
  padding: 3rem 0;
}

.section--flush { padding: 0; }

/* ── SITE NAV ── */
.site-nav {
  background: var(--black);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.site-nav__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 3.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-nav__brand {
  font-family: 'Anton', sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream);
  text-decoration: none;
}

.site-nav__brand:hover {
  text-decoration: none;
  opacity: 0.85;
}

.site-nav__links {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav__links a {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--cream);
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.site-nav__links a:hover,
.site-nav__links a.active {
  opacity: 1;
  text-decoration: none;
}

@media (max-width: 600px) {
  .site-nav__inner { padding: 0 1.4rem; }
  .site-nav__links { gap: 1.2rem; }
  .site-nav__links a { font-size: 0.8rem; }
}

/* ── HERO (Split Grid — matches bootcamp) ── */
.hero {
  background: var(--red);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
  width: 100%;
}

.hero *, .hero a { color: var(--cream); }
.hero .btn--cream { color: var(--red); }
.hero .btn--cream:hover { color: var(--red); }

.hero__left {
  padding: 2.5rem 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  overflow: hidden;
}

.hero__left .t-eyebrow {
  color: var(--cream);
  opacity: 0.7;
  font-size: 1.4rem;
}

.hero__left .t-heading-xl {
  color: var(--cream);
  margin-bottom: 0.7rem;
}

.hero__tagline {
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  font-style: italic;
  opacity: 0.85;
  line-height: 1.55;
  margin: 0.8rem 0 0;
  color: var(--cream);
}

.hero__handle {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 1rem;
}

.hero__handle-line {
  width: 24px;
  height: 2px;
  background: var(--cream);
  opacity: 0.5;
}

.hero__handle-text {
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream);
}

.hero-socials {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 0.8rem;
}

.hero-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  text-decoration: none;
}

.hero-social-link:hover { text-decoration: none; opacity: 0.7; }

.hero-social-link svg {
  width: 26px;
  height: 26px;
}

.hero__ctas {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.hero--full {
  grid-template-columns: 1fr;
  text-align: center;
  padding: 5rem 3.5rem;
}

.hero--full .hero__left {
  align-items: center;
  padding: 0;
}

@media (max-width: 600px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero__left { padding: 2rem 1.5rem 1.8rem; justify-content: flex-start; }
  .hero > div:last-child:not(.hero__left) { height: 320px; }
  .hero--full { padding: 3rem 1.4rem; }
  .hero--full .hero__left { padding: 0; }
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  font-family: 'Anton', sans-serif;
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s, background 0.18s;
  cursor: pointer;
  border: none;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  text-decoration: none;
}

.btn--red {
  background: var(--red);
  color: var(--cream);
}

.btn--cream {
  background: var(--cream);
  color: var(--red);
}

.btn--cream:hover {
  background: white;
}

.btn--outline {
  background: transparent;
  color: var(--cream);
  border: 2px solid rgba(255, 250, 231, 0.3);
}

.btn--outline:hover {
  border-color: var(--cream);
}

.btn--outline-dark {
  background: transparent;
  color: var(--black);
  border: 2px solid var(--border-medium);
}

.btn--outline-dark:hover {
  border-color: var(--black);
}

.btn--dark {
  background: var(--black);
  color: var(--cream);
}

/* ── BIG CTA BUTTON (matches bootcamp) ── */
.big-cta-btn {
  display: inline-block;
  background: var(--red);
  color: var(--cream);
  font-family: 'Anton', sans-serif;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 1.2rem 3.5rem;
  text-decoration: none;
  transition: background 0.18s;
}
.big-cta-btn:hover { background: #b82828; text-decoration: none; }

@media (max-width: 600px) {
  .big-cta-btn { width: 100%; text-align: center; padding: 1.2rem 2rem; }
}

/* ── PULL QUOTE (matches bootcamp) ── */
.pull-quote {
  background: var(--red);
  padding: 2.5rem 3.5rem;
  color: var(--cream);
}

.pull-quote__mark {
  font-family: 'Anton', sans-serif;
  font-size: 5rem;
  font-weight: 400;
  line-height: 0.7;
  display: block;
}

.pull-quote__text {
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  font-style: italic;
  line-height: 1.7;
  margin: 0;
  color: var(--cream);
}

.pull-quote__text strong {
  font-style: normal;
  font-family: 'Anton', sans-serif;
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

@media (max-width: 600px) {
  .pull-quote { padding: 2rem 1.4rem; }
}

/* ── BENEFIT LIST (matches bootcamp) ── */
.benefit-list {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 1.5rem;
}

.benefit-list li {
  font-size: clamp(1.15rem, 1.4vw, 1.35rem);
  font-weight: 400;
  line-height: 1.75;
  padding: 0.5rem 0 0.5rem 1.8rem;
  position: relative;
}

.benefit-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 500;
}

.benefit-list li strong { font-weight: 700; }

/* ── CARDS ── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}

@media (max-width: 600px) {
  .card-grid {
    grid-template-columns: 1fr;
  }
}

.card {
  background: white;
  border: 1.5px solid var(--border-light);
  border-radius: 12px;
  padding: 2rem;
  text-decoration: none;
  color: var(--black);
  transition: transform 0.15s, box-shadow 0.15s, border-color 0.15s;
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  border-color: var(--red);
  text-decoration: none;
}

.card__tag {
  font-family: 'Anton', sans-serif;
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.6rem;
}

.card__title {
  font-family: 'Anton', sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 0 0 0.6rem;
  line-height: 1.2;
}

.card__desc {
  font-size: clamp(1.15rem, 1.4vw, 1.35rem);
  line-height: 1.6;
  opacity: 0.7;
  flex-grow: 1;
}

.card__arrow {
  font-family: 'Anton', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  margin-top: 1.2rem;
}

/* ── SECTION HEADERS ── */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header .t-body {
  max-width: 640px;
  margin: 0 auto;
  opacity: 0.7;
}

/* ── CTA BANNER ── */
.cta-banner {
  background: var(--red);
  padding: 4rem 0;
  text-align: center;
}

.cta-banner .t-heading-lg {
  color: var(--cream);
  margin-bottom: 1rem;
}

.cta-banner .t-body {
  color: var(--cream);
  opacity: 0.85;
  max-width: 540px;
  margin: 0 auto 2rem;
}

/* ── FOOTER ── */
.site-footer {
  background: var(--black);
  padding: 3rem 0;
  text-align: center;
}

.site-footer p {
  color: var(--cream);
  opacity: 0.5;
  font-size: 0.9rem;
  margin: 0;
}

/* ── FADE IN ── */
.fade-in {
  animation: fadeIn 0.4s ease-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
