/* ---------- Noto Sans (self-hosted) ---------- */
@font-face {
  font-family: "Noto Sans";
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url("../fonts/noto-sans-v42-latin_latin-ext-200.woff2") format("woff2");
}
@font-face {
  font-family: "Noto Sans";
  font-style: italic;
  font-weight: 200;
  font-display: swap;
  src: url("../fonts/noto-sans-v42-latin_latin-ext-200italic.woff2") format("woff2");
}
@font-face {
  font-family: "Noto Sans";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/noto-sans-v42-latin_latin-ext-regular.woff2") format("woff2");
}
@font-face {
  font-family: "Noto Sans";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/noto-sans-v42-latin_latin-ext-italic.woff2") format("woff2");
}
@font-face {
  font-family: "Noto Sans";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/noto-sans-v42-latin_latin-ext-600.woff2") format("woff2");
}
@font-face {
  font-family: "Noto Sans";
  font-style: italic;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/noto-sans-v42-latin_latin-ext-600italic.woff2") format("woff2");
}
@font-face {
  font-family: "Noto Sans";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/noto-sans-v42-latin_latin-ext-700.woff2") format("woff2");
}
@font-face {
  font-family: "Noto Sans";
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/noto-sans-v42-latin_latin-ext-700italic.woff2") format("woff2");
}

:root {
  --uk-blue: #004b96;
  --uk-blue-dark: #003a75;
  --uk-blue-light: #00aee5;
  --uk-red: #be0028;
  --uk-red-dark: #99001f;
  --uk-gray: #4b4b4b;
  --uk-gray-light: #f0f0f0;
  --uk-border: #e1e1e1;
  --uk-font: "Noto Sans", "Segoe UI", Frutiger, "Helvetica Neue", Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--uk-font);
  color: var(--uk-gray);
  line-height: 1.6;
  background-color: #ffffff;
  padding-top: 134px;
}

@media (max-width: 991.98px) {
  body {
    padding-top: 128px;
  }
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--uk-font);
  color: var(--uk-blue);
  font-weight: 700;
}

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

a:hover {
  color: var(--uk-blue-dark);
}

.text-uk-red {
  color: var(--uk-red) !important;
}

/* ---------- Buttons ---------- */
.btn-uk-primary {
  background-color: var(--uk-blue);
  border-color: var(--uk-blue);
  color: #fff;
  font-weight: 600;
}

.btn-uk-primary:hover,
.btn-uk-primary:focus {
  background-color: var(--uk-blue-dark);
  border-color: var(--uk-blue-dark);
  color: #fff;
}

.btn-uk-red {
  background-color: var(--uk-red);
  border-color: var(--uk-red);
  color: #fff;
  font-weight: 600;
}

.btn-uk-red:hover,
.btn-uk-red:focus {
  background-color: var(--uk-red-dark);
  border-color: var(--uk-red-dark);
  color: #fff;
}

.btn-uk-outline-light {
  border: 2px solid #fff;
  color: #fff;
  font-weight: 600;
  background: transparent;
}

.btn-uk-outline-light:hover,
.btn-uk-outline-light:focus {
  background-color: #fff;
  color: var(--uk-blue);
}

/* ---------- Navbar ---------- */
.navbar {
  background-color: #fff;
  border-bottom: 3px solid var(--uk-blue);
  transition: box-shadow 0.25s ease, padding 0.25s ease;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.navbar.navbar-scrolled {
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.12);
  padding-top: 0.4rem;
  padding-bottom: 0.4rem;
}

.navbar-brand img {
  height: 110px;
  width: auto;
  transition: height 0.25s ease;
}

.navbar.navbar-scrolled .navbar-brand img {
  height: 50px;
}

@media (max-width: 575.98px) {
  .navbar-brand img {
    height: 80px;
  }
  .navbar.navbar-scrolled .navbar-brand img {
    height: 44px;
  }
}

.navbar .nav-link {
  color: var(--uk-gray);
  font-weight: 600;
}

.navbar .nav-link:hover,
.navbar .nav-link:focus {
  color: var(--uk-blue);
}

.navbar .btn {
  white-space: nowrap;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--uk-blue) 0%, var(--uk-blue-dark) 55%, #002a54 100%);
  color: #fff;
  padding: 6rem 0 5rem;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  right: -120px;
  top: -120px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(0, 174, 229, 0.35) 0%, rgba(0, 174, 229, 0) 70%);
  pointer-events: none;
}

.hero h1 {
  color: #fff;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.15;
}

.hero .hero-subtitle {
  color: #cfe3f5;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  max-width: 760px;
}

.hero .badge-line {
  display: inline-block;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 30px;
  padding: 0.4rem 1.1rem;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}

/* ---------- Sections ---------- */
.section {
  padding: 4.5rem 0;
}

.section-alt {
  background-color: var(--uk-gray-light);
}

.section-title {
  position: relative;
  margin-bottom: 2.5rem;
  text-align: center;
}

.section-title h2 {
  font-size: clamp(1.6rem, 3vw, 2.25rem);
}

.section-title::after {
  content: "";
  display: block;
  width: 70px;
  height: 4px;
  background: var(--uk-red);
  margin: 1rem auto 0;
  border-radius: 2px;
}

.lead-text {
  font-size: 1.08rem;
  max-width: 900px;
  margin: 0 auto;
}

/* ---------- Cards ---------- */
.card-uk {
  border: 1px solid var(--uk-border);
  border-radius: 12px;
  height: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  background: #fff;
}

.card-uk:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 75, 150, 0.12);
}

.card-uk .card-header {
  background: var(--uk-blue);
  color: #fff;
  border-radius: 12px 12px 0 0 !important;
  font-weight: 700;
  font-size: 1.15rem;
  padding: 1.1rem 1.25rem;
  border: none;
}

.card-uk .card-header .day-tag {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: #cfe3f5;
  margin-top: 0.15rem;
}

.list-check {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.list-check li {
  position: relative;
  padding-left: 2.1rem;
  margin-bottom: 0.85rem;
}

.list-check li::before {
  content: "\f058"; /* Font Awesome: circle-check */
  font-family: "Font Awesome 7 Pro";
  font-weight: 900;
  font-size: 1.15rem;
  line-height: 1.5;
  position: absolute;
  left: 0;
  top: 0;
  color: var(--uk-red);
}

/* ---------- Details ---------- */
.detail-item {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--uk-border);
}

.detail-item:last-child {
  border-bottom: none;
}

.detail-label {
  flex: 0 0 210px;
  font-weight: 700;
  color: var(--uk-blue);
}

.detail-label i {
  width: 1.5rem;
  margin-right: 0.5rem;
  text-align: center;
  color: var(--uk-red);
}

.detail-value {
  flex: 1 1 auto;
}

.leadership-block + .leadership-block {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--uk-border);
}

.leadership-course {
  font-weight: 600;
  color: var(--uk-blue);
  line-height: 1.35;
  margin-bottom: 0.25rem;
}

.leadership-date {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--uk-gray);
  margin-top: 0.15rem;
}

.leadership-names {
  color: inherit;
}

@media (max-width: 575.98px) {
  .detail-item {
    flex-direction: column;
    gap: 0.15rem;
  }
  .detail-label {
    flex-basis: auto;
  }
}

/* ---------- Pricing ---------- */
.price-card {
  border: 1px solid var(--uk-border);
  border-radius: 12px;
  text-align: center;
  padding: 2rem 1.5rem;
  height: 100%;
  background: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.price-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 75, 150, 0.12);
}

.price-card.featured {
  border: 2px solid var(--uk-red);
  position: relative;
}

.price-card.featured .featured-flag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--uk-red);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.25rem 0.9rem;
  border-radius: 20px;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.price-card .price-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--uk-blue);
  min-height: 3rem;
}

.price-card .price-amount {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--uk-red);
  margin: 0.5rem 0 0.1rem;
}

.price-card .price-vat {
  font-size: 0.85rem;
  color: #857d7a;
  margin-bottom: 1.5rem;
}

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--uk-red) 0%, var(--uk-red-dark) 100%);
  color: #fff;
  padding: 3.5rem 0;
}

.cta-band h2 {
  color: #fff;
}

/* ---------- Footer ---------- */
.site-footer {
  background-color: var(--uk-blue);
  color: #dbe6f2;
  padding: 3rem 0;
  font-size: 0.95rem;
}

.site-footer h5 {
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 1rem;
}

.site-footer a {
  color: #dbe6f2;
  text-decoration: none;
}

.site-footer a:hover {
  color: #fff;
  text-decoration: underline;
}

/* ---------- Legal pages ---------- */
.legal-hero {
  background: var(--uk-blue);
  color: #fff;
  padding: 3rem 0 2.5rem;
}

.legal-hero h1 {
  color: #fff;
  margin: 0;
}

.legal-content {
  padding: 3rem 0 4rem;
}

.legal-content h2 {
  font-size: 1.4rem;
  margin-top: 2rem;
}

.legal-content h3 {
  font-size: 1.15rem;
  margin-top: 1.5rem;
  color: var(--uk-blue-dark);
}

.legal-content p,
.legal-content li {
  color: var(--uk-gray);
}

.legal-content .muster-box {
  background: var(--uk-gray-light);
  border: 1px solid var(--uk-border);
  border-radius: 8px;
  padding: 1.5rem;
  margin-top: 1rem;
}
