/* ============================================
   NLD | GREGGS — Gedeelde Stijlen
   ============================================ */

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

:root {
  --blue:        #0086d6;
  --blue-dark:   #0068a8;
  --blue-light:  #e0f3ff;
  --purple:      #4f287b;
  --purple-dark: #3a1d5c;
  --purple-light:#ede0ff;
  --accent:      #ffcc00;
  --accent-dark: #e6b800;
  --white:       #ffffff;
  --cream:       #faf7f2;
  --grey:        #f2f2f2;
  --text:        #1a1a2e;
  --text-muted:  #6b6b80;
  --dark:        #111827;
  --radius:      16px;
  --radius-lg:   24px;
  --shadow-sm:   0 2px 8px rgba(0,0,0,0.07);
  --shadow-md:   0 8px 24px rgba(0,0,0,0.11);
  --shadow-lg:   0 20px 50px rgba(0,134,214,0.18);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Livvic', sans-serif;
  font-weight: 600;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.5;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* ── TOPBAR ── */
.topbar {
  background: var(--purple);
  color: rgba(255,255,255,0.9);
  text-align: center;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 9px 20px;
  letter-spacing: 0.04em;
}
.topbar a {
  color: var(--accent);
  font-weight: 900;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}
.topbar a:hover { border-color: var(--accent); }

/* ── NAVBAR ── */
.navbar {
  background: var(--blue);
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 4px 24px rgba(0,100,180,0.35);
}
.navbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Logo */
.nav-logo { display: flex; align-items: center; gap: 12px; }
.logo-pill {
  background: var(--white);
  color: var(--blue);
  font-size: 1.1rem;
  font-weight: 900;
  padding: 5px 13px;
  border-radius: 8px;
  letter-spacing: -0.3px;
  line-height: 1;
  flex-shrink: 0;
}
.logo-name {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 900;
  line-height: 1;
}
.logo-sub {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  opacity: 0.75;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 2px;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav-links li a {
  color: rgba(255,255,255,0.88);
  font-size: 0.92rem;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 50px;
  transition: background 0.2s, color 0.2s;
  display: block;
}
.nav-links li a:hover {
  background: rgba(255,255,255,0.15);
  color: var(--white);
}
.nav-links li a.active {
  background: rgba(255,255,255,0.2);
  color: var(--white);
}
.nav-links li a.nav-cta {
  background: var(--purple);
  color: var(--white) !important;
  padding: 8px 20px;
  font-weight: 900;
  transition: background 0.2s, transform 0.15s;
}
.nav-links li a.nav-cta:hover {
  background: var(--purple-dark);
  transform: scale(1.04);
}

/* Mobile hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border: none;
  background: transparent;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ── PAGE HERO ── */
.page-hero {
  background: linear-gradient(135deg, var(--blue) 0%, var(--purple) 100%);
  padding: 70px 40px 90px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.08), transparent 50%),
    repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(255,255,255,0.025) 35px, rgba(255,255,255,0.025) 70px);
}
.page-hero > * { position: relative; }
.hero-eyebrow {
  display: inline-block;
  background: var(--accent);
  color: var(--text);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 50px;
  margin-bottom: 18px;
}
.page-hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.0;
  margin-bottom: 16px;
}
.page-hero h1 em { font-style: normal; color: var(--accent); }
.page-hero p {
  color: rgba(255,255,255,0.82);
  font-size: 1.05rem;
  font-weight: 400;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.65;
}

/* Wave divider */
.wave-divider { display: block; width: 100%; margin-bottom: -2px; }

/* ── SECTION HEADER ── */
.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 {
  font-size: 2.2rem;
  font-weight: 900;
  margin-bottom: 10px;
}
.section-header h2 .highlight { color: var(--blue); }
.section-header p {
  color: var(--text-muted);
  font-weight: 400;
  font-size: 0.98rem;
  max-width: 480px;
  margin: 0 auto;
}
.section-divider {
  width: 52px; height: 4px;
  background: linear-gradient(to right, var(--blue), var(--purple));
  border-radius: 3px;
  margin: 14px auto 0;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Livvic', sans-serif;
  font-weight: 900;
  font-size: 0.95rem;
  padding: 14px 32px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  text-decoration: none;
}
.btn-yellow {
  background: var(--accent);
  color: var(--text);
  box-shadow: 0 6px 20px rgba(255,204,0,0.35);
}
.btn-yellow:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(255,204,0,0.5); }
.btn-white {
  background: var(--white);
  color: var(--blue);
  box-shadow: var(--shadow-md);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2.5px solid rgba(255,255,255,0.6);
}
.btn-outline-white:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }
.btn-discord {
  background: var(--white);
  color: #5865f2;
  box-shadow: 0 8px 28px rgba(0,0,0,0.22);
}
.btn-discord:hover { transform: translateY(-3px); box-shadow: 0 14px 36px rgba(0,0,0,0.28); }

/* ── DISCORD SECTION ── */
.discord-band {
  background: #5865f2;
  padding: 72px 40px;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.discord-band::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 25% 50%, rgba(255,255,255,0.08), transparent 55%);
}
.discord-band > * { position: relative; }
.discord-band h2 { font-size: 2rem; font-weight: 900; margin-bottom: 10px; }
.discord-band p { font-weight: 400; opacity: 0.88; max-width: 460px; margin: 0 auto 30px; font-size: 1rem; }

/* ── FOOTER ── */
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.55);
  padding: 56px 40px 32px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.footer-brand .logo-pill { background: var(--blue); color: var(--white); }
.footer-brand .logo-name { color: var(--white); }
.footer-brand p { font-size: 0.86rem; font-weight: 400; line-height: 1.65; max-width: 260px; }
.footer-col h4 {
  color: var(--white);
  font-weight: 900;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.5);
  font-size: 0.88rem;
  font-weight: 600;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--blue); }
.footer-bottom {
  max-width: 1200px;
  margin: 28px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.8rem;
}
.footer-bottom a { color: var(--blue); }

/* ── FADE IN ── */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible { opacity: 1; transform: none; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .navbar-inner { padding: 0 20px; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 70px; left: 0; right: 0; background: var(--blue-dark); padding: 16px 20px 24px; gap: 4px; }
  .nav-links.open { display: flex; }
  .nav-links li a { padding: 10px 16px; border-radius: 10px; }
  .nav-toggle { display: flex; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .page-hero { padding: 60px 24px 80px; }
}
@media (max-width: 600px) {
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
}
