/* === Tokens KparK Formation === */
/* Poppins SemiBold (body), Poppins Bold (titres) */
/* Couleurs : navy #000F2D, orange #DC5910 */
/* Boutons : radius 12px */

html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', system-ui, sans-serif;
  font-weight: 600; /* SemiBold */
  color: #000F2D;
  font-size: 16px;
}

h1, h2, h3, h4, .font-display { font-family: 'Poppins', system-ui, sans-serif; font-weight: 700; }

/* Tailwind utilities surchargées : kpark-navy → #000F2D, kpark-orange → #DC5910 */
.text-kpark-navy { color: #000F2D !important; }
.bg-kpark-navy { background-color: #000F2D !important; }
.border-kpark-navy { border-color: #000F2D !important; }
.text-kpark-orange { color: #DC5910 !important; }
.bg-kpark-orange { background-color: #DC5910 !important; }
.border-kpark-orange { border-color: #DC5910 !important; }
.bg-kpark-orangeDk { background-color: #B84508 !important; }
.bg-kpark-orangeLt { background-color: #FCE6D8 !important; }
.bg-kpark-navyDk { background-color: #00081F !important; }
.bg-kpark-navyLt { background-color: #102043 !important; }

/* Hover tile */
.tile-hover { transition: transform .25s ease, box-shadow .25s ease; }
.tile-hover:hover { transform: translateY(-3px); box-shadow: 0 14px 30px -14px rgba(0,15,45,.18); }

/* Mobile nav */
.mobile-nav a { display: block; padding: 12px 0; border-bottom: 1px solid #f1f5f9; color: #000F2D; font-weight: 600; }
.mobile-nav a:hover { color: #DC5910; }
.mobile-nav a.sub { padding-left: 16px; font-weight: 500; font-size: .9rem; color: #5b6478; }

/* Hero overlay (navy diagonal type kpark) */
.hero-mask { background: linear-gradient(100deg, rgba(0,15,45,.92) 0%, rgba(0,15,45,.75) 45%, rgba(0,15,45,.20) 100%); }

/* Boutons (radius 12px du site live) */
.btn-primary {
  background: #DC5910; color: white;
  padding: 8px 14px;
  border-radius: 12px;
  font-weight: 600; /* Poppins SemiBold */
  font-size: 16px;
  transition: background .2s, transform .15s;
  display: inline-flex; align-items: center; justify-content: center;
}
.btn-primary:hover { background: #B84508; transform: translateY(-1px); }
.btn-secondary {
  background: #000F2D; color: white;
  padding: 8px 14px;
  border-radius: 12px;
  font-weight: 600; font-size: 16px;
  transition: background .2s;
  display: inline-flex; align-items: center; justify-content: center;
}
.btn-secondary:hover { background: #102043; }

/* Breadcrumb (style pill orange du site live pour la page courante) */
.breadcrumb { display: flex; align-items: center; gap: .5rem; font-size: .875rem; flex-wrap: wrap; }
.breadcrumb-current { background: #DC5910; color: white; border-radius: 8px; padding: .25rem .75rem; font-weight: 700; font-size: .75rem; }

/* Header dropdown */
.has-dropdown { position: relative; }
.dropdown-panel {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: white;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  padding: .5rem;
  min-width: 320px;
  box-shadow: 0 18px 40px -16px rgba(0,15,45,.30);
  opacity: 0; visibility: hidden;
  transition: all .2s ease;
  z-index: 50;
}
.has-dropdown:hover .dropdown-panel,
.has-dropdown:focus-within .dropdown-panel {
  opacity: 1; visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.dropdown-panel a {
  display: block; padding: .75rem 1rem; border-radius: 8px;
  color: #000F2D; font-weight: 600; font-size: .875rem;
  transition: background .15s, color .15s;
}
.dropdown-panel a:hover { background: #FCE6D8; color: #DC5910; }
.dropdown-panel a .desc { display: block; font-weight: 400; font-size: .75rem; color: #5b6478; margin-top: 2px; }

/* Tap highlight */
a, button { -webkit-tap-highlight-color: transparent; }
                                             