/* ============================================================
   BROTHERS IN BRASS — WordPress Theme Stylesheet
   Fonts: Barlow (headings) + Montserrat (body)
   Colors: Dark Green #0D2B0F | Gold #F5B800 | White #FFFFFF
   ============================================================ */

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

/* ── RESET & BASE ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

:root {
  --green:      #0D2B0F;
  --green-mid:  #122E14;
  --gold:       #F5B800;
  --gold-hover: #FFD040;
  --white:      #FFFFFF;
  --off:        #F2F3F0;
  --grey:       #D4D6D0;
  --grey-mid:   #9A9A9A;
  --text:       #1A1A1A;
  --text-muted: rgba(26,26,26,0.60);
  --radius:     2px;
  --max:        1200px;
  --nav-h:      76px;
  --shadow:     0 8px 40px rgba(0,0,0,0.10);
}

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* ── UTILITY ──────────────────────────────────────────────── */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 40px;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 14px;
}
.section-eyebrow::before {
  content: '';
  display: block;
  width: 28px; height: 2px;
  background: var(--gold);
  flex-shrink: 0;
}

.section-title {
  font-family: 'Barlow', sans-serif;
  font-weight: 800;
  font-size: clamp(30px, 4vw, 50px);
  text-transform: uppercase;
  line-height: 1.04;
  color: var(--green);
}
.section-title.light { color: var(--white); }

.section-body {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 560px;
}
.section-body.light { color: rgba(255,255,255,0.68); }

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 15px 34px;
  border: none;
  transition: transform 0.15s ease, background 0.2s, color 0.2s;
  clip-path: polygon(7px 0%, 100% 0%, calc(100% - 7px) 100%, 0% 100%);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn-gold  { background: var(--gold);  color: var(--green); }
.btn-gold:hover { background: var(--gold-hover); }

.btn-dark  { background: var(--green); color: var(--white); }
.btn-dark:hover { background: #1c4520; }

.btn-ghost {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
  clip-path: none;
  padding: 13px 32px;
}
.btn-ghost:hover { background: rgba(245,184,0,0.1); }

/* ── NAVBAR ───────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  height: var(--nav-h);
  background: var(--green);
  display: flex;
  align-items: center;
  transition: box-shadow 0.3s;
}
.navbar.scrolled { box-shadow: 0 4px 28px rgba(0,0,0,0.45); }
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
}
.nav-logo-svg { width: 38px; height: 38px; }
.nav-logo-name {
  font-family: 'Barlow', sans-serif;
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: 0.04em;
}
.nav-logo-name strong {
  display: block;
  font-size: 16px;
  color: var(--gold);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-menu a {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: rgba(255,255,255,0.80);
  padding: 8px 16px;
  transition: color 0.2s;
}
.nav-menu a:hover,
.nav-menu a.active { color: var(--gold); }
.nav-menu .btn { margin-left: 8px; }

/* Hamburger (mobile) */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
}
/* Zorg dat je de eerdere "background: var(--gold);" weghaalt bij .nav-toggle.open span */

.nav-toggle.open span:nth-child(1) { animation: toetTop 0.7s ease forwards; }
.nav-toggle.open span:nth-child(2) { animation: toetMid 0.7s ease forwards; }
.nav-toggle.open span:nth-child(3) { animation: toetBot 0.7s ease forwards; }

@keyframes toetTop {
  0%   { transform: translateY(0) rotate(0); background-color: var(--white); }
  /* Grotere hoek en iets verder omhoog voor een brede kelk */
  35%  { transform: translateY(-11px) rotate(-40deg); background-color: var(--gold); } 
  50%  { transform: translateY(-11px) rotate(-40deg); background-color: var(--gold); } 
  100% { transform: translateY(7px) rotate(45deg); background-color: var(--white); }
}

@keyframes toetMid {
  0%   { opacity: 1; transform: scaleX(1) translateX(0); background-color: var(--white); }
  /* Steekt iets verder uit voor de verhouding met de bredere beker */
  35%  { opacity: 1; transform: scaleX(1.3) translateX(6px); background-color: var(--gold); } 
  50%  { opacity: 1; transform: scaleX(1.3) translateX(6px); background-color: var(--gold); } 
  100% { opacity: 0; transform: scaleX(0); background-color: var(--white); }
}

@keyframes toetBot {
  0%   { transform: translateY(0) rotate(0); background-color: var(--white); }
  /* Grotere hoek en iets verder omlaag voor een brede kelk */
  35%  { transform: translateY(11px) rotate(40deg); background-color: var(--gold); } 
  50%  { transform: translateY(11px) rotate(40deg); background-color: var(--gold); } 
  100% { transform: translateY(-7px) rotate(-45deg); background-color: var(--white); }
}

/* ── PAGE OFFSET ──────────────────────────────────────────── */
.page-offset { padding-top: var(--nav-h); }

/* ── DIAGONAL DIVIDER ─────────────────────────────────────── */
.slant {
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 40px), 0 100%);
  margin-bottom: -2px;
}
.slant-rev {
  clip-path: polygon(0 40px, 100% 0, 100% 100%, 0 100%);
  margin-top: -2px;
}

/* ── STRIPE PATTERN (reusable) ────────────────────────────── */
.stripe-bg {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    rgba(255,255,255,0.04) 0px,
    rgba(255,255,255,0.04) 1px,
    transparent 1px,
    transparent 24px
  );
  pointer-events: none;
}

/* ── DOTS DECORATION ──────────────────────────────────────── */
.dot-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.dot-row span {
  display: block;
  border-radius: 50%;
  background: var(--gold);
}
.dot-row span:nth-child(1) { width: 20px; height: 20px; }
.dot-row span:nth-child(2) { width: 16px; height: 16px; opacity: .75; }
.dot-row span:nth-child(3) { width: 12px; height: 12px; opacity: .55; }
.dot-row span:nth-child(4) { width: 8px;  height: 8px;  opacity: .35; }
.dot-row span:nth-child(5) { width: 5px;  height: 5px;  opacity: .2; }

/* ── FOOTER ───────────────────────────────────────────────── */
.site-footer {
  background: #070F08;
  padding: 44px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-brand {
  font-family: 'Barlow', sans-serif;
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: 0.06em;
  line-height: 1.4;
}
.footer-brand span { color: var(--gold); display: block; font-size: 16px; }
.footer-socials {
  display: flex;
  gap: 16px;
}
.footer-socials a {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.07);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  font-weight: 700;
  transition: background 0.2s, color 0.2s;
  clip-path: polygon(4px 0%,100% 0%,calc(100% - 4px) 100%,0% 100%);
}
.footer-socials a:hover { background: var(--gold); color: var(--green); }
.footer-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}
.footer-meta p {
  font-size: 12px;
  color: rgba(255,255,255,0.30);
}
.footer-meta a {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.35);
  transition: color 0.2s;
}
.footer-meta a:hover { color: var(--gold); }

/* ── WHATSAPP STICKY ──────────────────────────────────────── */
.whatsapp-btn {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 900;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: transform 0.2s, box-shadow 0.2s;
}
.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 28px rgba(37,211,102,0.55);
}
.whatsapp-btn svg { width: 28px; height: 28px; fill: white; }

/* ── FADE-IN ANIMATION ────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.65s ease both; }
.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.30s; }
.delay-3 { animation-delay: 0.45s; }
.delay-4 { animation-delay: 0.60s; }

.countdown {
  display: flex;
  gap: 16px;
  font-family: 'Barlow', sans-serif;
  color: var(--white);
}

.countdown div {
  text-align: center;
}

.countdown span {
  display: block;
  font-size: 40px;
  font-weight: 800;
  color: var(--white);
}

.countdown small {
  display: flex;
  gap: 16px;
  font-family: 'Barlow', sans-serif;
  color: var(--white);
}

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 768px) {
  .container { padding: 0 20px; }

  .nav-menu {
    display: none;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--green);
    padding: 8px 0 20px;
    gap: 0;
    z-index: 998;
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .nav-menu.open { display: flex; }
  .nav-menu a {
    min-height: 48px;
    display: flex;
    align-items: center;
    padding: 18px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    font-size: 16px;
    line-height: 1.4;
  }
  .nav-menu li:last-child a { border-bottom: none; }
  .nav-menu .btn {
    margin: 16px 24px 0;
    clip-path: none;
    width: calc(100% - 48px);
    justify-content: center;
    text-align: center;
  }
  .nav-toggle { display: flex; }

  .footer-inner { flex-direction: column; align-items: flex-start; gap: 28px; }
  .footer-meta { align-items: flex-start; }
}