/* ==========================================================================
   BeMulticulti — shared stylesheet
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500;600;700&family=Inter:wght@400;500;600&display=swap');

:root{
  --navy:      #0D0A4C;
  --navy-2:    #171257;
  --red:       #D40129;
  --orange:    #EC9406;
  --olive:     #91980B;
  --ink:       #201f33;
  --muted:     #5b5a6e;
  --line:      #e7e5f0;
  --bg:        #fdfcfb;
  --card:      #ffffff;
  --radius:    14px;
  --shadow:    0 10px 30px rgba(13,10,76,0.08);
  --shadow-sm: 0 4px 14px rgba(13,10,76,0.06);
  --maxw:      1140px;
  --font-head: 'Poppins', 'Segoe UI', system-ui, sans-serif;
  --font-body: 'Inter', 'Segoe UI', system-ui, sans-serif;
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1,h2,h3,h4{
  font-family: var(--font-head);
  color: var(--navy);
  line-height: 1.2;
  margin: 0 0 0.5em;
}
h1{ font-size: clamp(2rem, 4vw, 2.9rem); font-weight: 700; }
h2{ font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 600; }
h3{ font-size: 1.25rem; font-weight: 600; }
p{ margin: 0 0 1em; color: var(--muted); }
a{ color: var(--red); text-decoration: none; }
a:hover{ text-decoration: underline; }
ul{ padding-left: 1.2em; color: var(--muted); }
img{ max-width: 100%; display: block; }

.container{
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

section{ padding: 72px 0; }
.section-tight{ padding: 48px 0; }

.eyebrow{
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.6em;
}

.lede{
  font-size: 1.15rem;
  max-width: 62ch;
}

.center{ text-align: center; margin-left: auto; margin-right: auto; }

/* ---------- Header / Nav ---------- */
.site-header{
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253,252,251,0.92);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-wrap{
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand{
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--navy);
  font-size: 1.1rem;
}
.brand img{ height: 42px; width: auto; }

.nav-links{
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a{
  color: var(--ink);
  font-weight: 500;
  font-size: 0.95rem;
}
.nav-links a:hover{ color: var(--red); text-decoration: none; }
.nav-links a.active{ color: var(--red); }

.nav-cta{
  background: var(--red);
  color: #fff !important;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
}
.nav-cta:hover{ background: #b40021; text-decoration: none; }

.nav-toggle{
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span{
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  margin: 5px 0;
  transition: 0.2s;
}

/* ---------- Buttons ---------- */
.btn{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn:hover{ text-decoration: none; transform: translateY(-1px); }
.btn-primary{ background: var(--red); color: #fff; }
.btn-primary:hover{ background: #b40021; color: #fff; }
.btn-secondary{ background: var(--orange); color: #fff; }
.btn-secondary:hover{ background: #cf8305; color: #fff; }
.btn-outline{ background: transparent; border-color: var(--navy); color: var(--navy); }
.btn-outline:hover{ background: var(--navy); color: #fff; }
.btn-block{ width: 100%; justify-content: center; }
.btn-sm{ padding: 9px 18px; font-size: 0.85rem; }

/* ---------- Hero ---------- */
.hero{
  padding: 90px 0 70px;
  background:
    radial-gradient(1200px 500px at 85% -10%, rgba(236,148,6,0.10), transparent 60%),
    radial-gradient(900px 500px at -5% 10%, rgba(212,1,41,0.08), transparent 60%);
}
.hero-grid{
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.hero-actions{
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 1.6em;
}
.hero-art{
  display: flex;
  justify-content: center;
}
.hero-art img{ width: 100%; max-width: 420px; }

.stat-row{
  display: flex;
  gap: 36px;
  margin-top: 2.4em;
  flex-wrap: wrap;
}
.stat-row div{ display: flex; flex-direction: column; }
.stat-num{ font-family: var(--font-head); font-weight: 700; color: var(--navy); font-size: 1.6rem; }
.stat-label{ font-size: 0.85rem; color: var(--muted); }

/* ---------- Cards / grids ---------- */
.grid{ display: grid; gap: 28px; }
.grid-2{ grid-template-columns: repeat(2, 1fr); }
.grid-3{ grid-template-columns: repeat(3, 1fr); }
.grid-4{ grid-template-columns: repeat(4, 1fr); }

.card{
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}

.icon-swatch{
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  font-size: 1.3rem;
}
.swatch-red{ background: rgba(212,1,41,0.12); color: var(--red); }
.swatch-orange{ background: rgba(236,148,6,0.14); color: #b3720a; }
.swatch-olive{ background: rgba(145,152,11,0.14); color: #6b710a; }
.swatch-navy{ background: rgba(13,10,76,0.10); color: var(--navy); }

.tag{
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.tag-red{ background: rgba(212,1,41,0.1); color: var(--red); }
.tag-orange{ background: rgba(236,148,6,0.16); color: #a06806; }
.tag-olive{ background: rgba(145,152,11,0.16); color: #6b710a; }
.tag-navy{ background: rgba(13,10,76,0.08); color: var(--navy); }

/* ---------- Alt background band ---------- */
.band{ background: #f6f4ff; }
.band-navy{ background: var(--navy); color: #fff; }
.band-navy h2, .band-navy h3{ color: #fff; }
.band-navy p{ color: #c9c8e6; }

/* ---------- Training detail blocks ---------- */
.training-block{
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
  align-items: start;
  padding: 56px 0;
  border-bottom: 1px solid var(--line);
}
.training-block:last-child{ border-bottom: none; }
.training-block .num{
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 3.2rem;
  color: var(--line);
  line-height: 1;
}
.training-list{ list-style: none; padding: 0; margin: 1.2em 0; }
.training-list li{
  padding-left: 26px;
  position: relative;
  margin-bottom: 10px;
  color: var(--ink);
}
.training-list li::before{
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
}
.format-pills{ display: flex; gap: 10px; flex-wrap: wrap; margin-top: 1.2em; }
.pill{
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--navy);
  background: #fff;
}

/* ---------- Booking ---------- */
.booking-option{
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}
.booking-head{ display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; flex-wrap: wrap; }

details.reg-form{
  margin-top: 20px;
  border-top: 1px dashed var(--line);
  padding-top: 20px;
}
details.reg-form > summary{
  list-style: none;
  cursor: pointer;
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 8px;
}
details.reg-form > summary::-webkit-details-marker{ display: none; }
details.reg-form > summary::before{
  content: "+";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--olive);
  color: #fff;
  font-size: 1rem;
  flex-shrink: 0;
}
details.reg-form[open] > summary::before{ content: "–"; }

.form-note{
  background: #f6f4ff;
  border-left: 3px solid var(--olive);
  padding: 10px 14px;
  font-size: 0.88rem;
  border-radius: 6px;
  margin: 14px 0 18px;
  color: var(--ink);
}

.form-grid{ display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 14px; }
.form-grid .full{ grid-column: 1 / -1; }
label{ font-size: 0.85rem; font-weight: 600; color: var(--navy); display: block; margin-bottom: 6px; }
input, select, textarea{
  width: 100%;
  padding: 11px 13px;
  border-radius: 8px;
  border: 1px solid var(--line);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
  background: #fff;
}
input:focus, select:focus, textarea:focus{
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(212,1,41,0.1);
}
textarea{ resize: vertical; min-height: 90px; }
.field-hint{ font-size: 0.78rem; color: var(--muted); font-weight: 400; margin-top: 4px; }

.honeypot{ position: absolute; left: -9999px; opacity: 0; height: 0; }

.form-success{
  display: none;
  background: rgba(145,152,11,0.12);
  border: 1px solid var(--olive);
  color: #4d5107;
  padding: 12px 16px;
  border-radius: 8px;
  margin-top: 14px;
  font-size: 0.9rem;
}

/* ---------- Calendar ---------- */
.calendar-wrap{
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: #fff;
}
.calendar-wrap iframe{ width: 100%; border: none; display: block; }
.calendar-fallback{
  padding: 40px 28px;
  text-align: center;
  color: var(--muted);
}

/* ---------- Footer ---------- */
.site-footer{
  background: var(--navy);
  color: #c9c8e6;
  padding: 56px 0 26px;
  margin-top: 60px;
}
.footer-grid{
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 36px;
}
.footer-grid h4{ color: #fff; font-size: 0.95rem; margin-bottom: 14px; }
.footer-grid ul{ list-style: none; padding: 0; margin: 0; }
.footer-grid li{ margin-bottom: 10px; }
.footer-grid a{ color: #c9c8e6; font-size: 0.92rem; }
.footer-grid a:hover{ color: #fff; }
.footer-brand{ display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-brand img{ height: 36px; }
.footer-brand span{ font-family: var(--font-head); font-weight: 700; color: #fff; font-size: 1.05rem; }
.footer-bottom{
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 20px;
  font-size: 0.8rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  color: #9b9ac4;
}

/* ---------- Utility ---------- */
.mt-0{ margin-top: 0; }
.mb-0{ margin-bottom: 0; }

/* ---------- Responsive ---------- */
@media (max-width: 900px){
  .hero-grid{ grid-template-columns: 1fr; }
  .hero-art{ order: -1; }
  .grid-3, .grid-4{ grid-template-columns: repeat(2, 1fr); }
  .footer-grid{ grid-template-columns: 1fr 1fr; }
  .training-block{ grid-template-columns: 1fr; gap: 16px; }
  .training-block .num{ font-size: 2rem; }
}

@media (max-width: 640px){
  .nav-links{
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px;
    border-bottom: 1px solid var(--line);
    display: none;
    gap: 16px;
  }
  .nav-links.open{ display: flex; }
  .nav-toggle{ display: block; }
  .grid-2, .grid-3, .grid-4{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr; }
  .form-grid{ grid-template-columns: 1fr; }
  section{ padding: 52px 0; }
}
