/* Arkansas HVACr Academy — thank-you page */

:root {
  --color-blue: #0b1e38;
  --color-red: #b03140;
  --color-red-hover: #8f2633;
  --color-surface: #f8f8f6;
  --color-text: #1a1a1a;
  --color-text-muted: #3d4a5c;
  --color-border: #e2e4df;
  --font-sans: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(11, 30, 56, 0.12);
  --content-max: 40rem;
}

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

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.55;
  color: var(--color-text);
  background: var(--color-surface);
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--color-blue);
}

a:hover {
  color: var(--color-red);
}

:focus-visible {
  outline: 3px solid var(--color-red);
  outline-offset: 2px;
}

.hero {
  background-color: var(--color-blue);
  color: #fff;
  padding: 0;
}

.hero--with-photo {
  background-image: linear-gradient(
      160deg,
      rgba(11, 30, 56, 0.92) 0%,
      rgba(11, 30, 56, 0.82) 50%,
      rgba(11, 30, 56, 0.88) 100%
    ),
    url("assets/hero.jpg");
  background-size: cover, cover;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
}

.hero__inner {
  max-width: 960px;
  margin: 0 auto;
}

.hero__content {
  padding: 2rem 1.25rem 2.25rem;
  text-align: center;
}

.hero__logo {
  width: 100px;
  height: auto;
  display: block;
  margin: 0 auto 0.75rem;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

@media (min-width: 640px) {
  .hero__logo {
    width: 120px;
  }
}

.hero__school {
  margin: 0 0 1.25rem;
  font-size: 1rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
  letter-spacing: 0.02em;
}

@media (min-width: 640px) {
  .hero__content {
    padding: 2.5rem 1.5rem 2.75rem;
  }
}

.hero__eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

.hero__title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  line-height: 1.2;
}

.hero__lede {
  margin: 0 auto;
  max-width: 28rem;
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.92);
}

.main {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 2rem 1.25rem 3rem;
}

@media (min-width: 640px) {
  .main {
    padding: 2.5rem 1.5rem 4rem;
  }
}

.section-title {
  margin: 0 0 1rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-blue);
}

.next-steps {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.5rem 1.25rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow);
}

.next-steps__list {
  margin: 0;
  padding-left: 1.25rem;
  color: var(--color-text-muted);
}

.next-steps__list li {
  margin-bottom: 0.65rem;
}

.next-steps__list li:last-child {
  margin-bottom: 0;
}

.trust {
  margin-bottom: 2rem;
  padding: 1rem 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  font-size: 0.9375rem;
  color: var(--color-text-muted);
}

.ctas {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 480px) {
  .ctas {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.25rem;
  font-size: 1rem;
  font-weight: 600;
  font-family: inherit;
  text-decoration: none;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.btn--primary {
  background: var(--color-red);
  color: #fff;
  border-color: var(--color-red);
}

.btn--primary:hover {
  background: var(--color-red-hover);
  border-color: var(--color-red-hover);
  color: #fff;
}

.btn--secondary {
  background: transparent;
  color: var(--color-blue);
  border-color: var(--color-blue);
}

.btn--secondary:hover {
  background: var(--color-blue);
  color: #fff;
}

.footer {
  text-align: center;
  font-size: 0.8125rem;
  color: var(--color-text-muted);
}

.footer p {
  margin: 0.35rem 0;
}
