/* ============================================
   MAIN.CSS — Base, typography, variables, nav
   ============================================ */

:root {
  --black:        #2e2d2c;
  --white:        #ffffff;
  --primary-dark: #002b27;
  --primary-2:    #009888;
  --primary-1:    #b4dac3;
  --yellow:       #ffcc00;
  --bg:           #f1f5f4;
  --bg-cream:     #fcf7e3;
  --border:       rgba(46, 45, 44, 0.12);
}

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--black);
  font-weight: 400;
  line-height: 1.4;
  overflow-x: hidden;
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* Override Bootstrap container max-width to fit 1366px page */
.container {
  max-width: 1366px;
}

@media (min-width: 1200px) {
  .container { max-width: 1366px; }
}

/* Headings — Manrope, lowercase, bold */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  /* text-transform: lowercase; */
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0;
}

p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

/* ============ NAVIGATION ============ */
.site-nav {
  height: 90px;
  background: var(--primary-dark);
  display: flex;
  align-items: center;
}

.site-nav .container {
  display: flex;
  align-items: center;
  padding: 0 56px;
}

.nav-logo {
  display: inline-block;
}

.nav-logo img {
  height: 55px;
  width: auto;
}

/* ============ SECTION HEAD ============ */
.section-head {
  margin-bottom: 40px;
}

.section-title {
  font-size: 48px;
  color: var(--black);
  margin-bottom: 16px;
}

.section-sub,
.section-sub-bold {
  font-family: 'Inter', sans-serif;
  text-transform: none;
  font-size: 16px;
  font-weight: 700;
  color: var(--black);
  line-height: 1.4;
  letter-spacing: 0;
}

/* Section spacing */
.steps,
.remember,
.snapshot,
.who-can-apply {
  padding: 80px 0;
}

/* .remember { padding-bottom: 0; } */

/* ============ REVEAL ANIMATION ============ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.apply-content {
  margin-left: -1px;
}
