/* Go Go Axo — Public Landing Page Stylesheet
   Design theme: Vibrant 3D claymorphic playroom style with Nunito rounded font. */

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

:root {
  /* Brand colors */
  --bg: #FFFDFB;
  --card: #FFFFFF;
  --text: #4C2624;
  --muted: #A07E7A;
  --border: #F8D9D5;
  --border-shadow: #E5B2AB;
  
  --axo-body: #FFC5BE;
  --axo-shadow: #FA9A8C;
  --axo-gill-dark: #FF5A5A;
  --axo-outline: #7C1E18;
  
  --good: #2ECC71;
  --good-shadow: #27AE60;
  --bad: #FF4757;
  --bad-shadow: #D63031;
  --accent: #FFC000;
  --accent-shadow: #D19D00;
  --action-blue: #2EA2F8;
  --action-blue-shadow: #0F85DB;
  
  --shadow-3d: 0 8px 0 var(--border-shadow);
  --btn-shadow-3d: 0 5px 0 var(--axo-outline);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  background-color: var(--bg);
  /* Waves background pattern matching app.css */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 140 64'%3E%3Cpath d='M0,22 Q35,8 70,22 T140,22' fill='none' stroke='%23FA9A8C' stroke-opacity='.15' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 140px 64px;
  font-family: 'Nunito', "Segoe UI Rounded", "Arial Rounded MT Bold", system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  overflow-x: hidden;
  overflow-x: clip; /* 'clip' doesn't suppress position:sticky like 'hidden' does */
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4 {
  font-weight: 900;
  margin-top: 0;
  line-height: 1.2;
}

h1 {
  font-size: 2.8rem;
  color: var(--axo-outline);
  text-shadow: 2px 2px 0px rgba(255, 255, 255, 0.8);
}

h2 {
  font-size: 2.2rem;
  color: var(--text);
  margin-bottom: 24px;
  position: relative;
  display: inline-block;
}

h3 {
  font-size: 1.5rem;
  color: var(--text);
}

p {
  font-size: 1.15rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  color: var(--text);
}

.text-center { text-align: center; }
.text-muted { color: var(--muted); }

/* Navigation Bar */
.navbar {
  background: rgba(255, 253, 251, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 3px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 12px 0;
  box-shadow: 0 4px 10px rgba(124, 30, 24, 0.03);
  /* position:sticky creates a stacking context — the mobile drawer
     (position:absolute; top:100%) will anchor to this element correctly. */
}


.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 900;
  font-size: 24px;
  color: var(--axo-outline);
  white-space: nowrap;
}

.logo img {
  width: 44px;
  height: 44px;
  transition: transform 0.3s ease;
}

.logo:hover img {
  transform: scale(1.15) rotate(5deg);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  color: var(--text);
  font-weight: 800;
  font-size: 16px;
  padding: 6px 10px;
  border-radius: 12px;
  transition: background-color 0.2s, color 0.2s;
  white-space: nowrap;
}

.nav-links a:hover {
  background-color: var(--border);
  color: var(--axo-outline);
}

/* Hamburger button (mobile menu toggle) */
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  border-radius: 12px;
  transition: background-color 0.2s;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-hamburger:hover {
  background-color: var(--border);
}

.nav-hamburger-bar {
  display: block;
  width: 24px;
  height: 3px;
  background: var(--axo-outline);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Animated X state */
.nav-hamburger[aria-expanded="true"] .nav-hamburger-bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.nav-hamburger[aria-expanded="true"] .nav-hamburger-bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-hamburger[aria-expanded="true"] .nav-hamburger-bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile nav drawer */
.nav-mobile-drawer {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(255, 253, 251, 0.98);
  backdrop-filter: blur(12px);
  border-bottom: 3px solid var(--border);
  box-shadow: 0 8px 24px rgba(124, 30, 24, 0.08);
  padding: 16px 24px 24px;
  z-index: 99;
}

.nav-mobile-drawer.open {
  display: block;
  animation: drawerSlideDown 0.22s ease;
}

@keyframes drawerSlideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.nav-mobile-drawer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.nav-mobile-drawer ul li a {
  display: block;
  padding: 12px 16px;
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
  text-decoration: none;
  border-radius: 14px;
  transition: background-color 0.2s, color 0.2s;
}

.nav-mobile-drawer ul li a:hover,
.nav-mobile-drawer ul li a.active {
  background-color: var(--border);
  color: var(--axo-outline);
}

.nav-mobile-drawer .btn-cta {
  width: 100%;
  margin-top: 12px;
  justify-content: center;
}

/* Call to Action Button */
.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  min-width: 44px;
  padding: 8px 24px;
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(180deg, #FF6B6B 0%, var(--axo-gill-dark) 100%);
  border: none;
  border-bottom: 5px solid var(--axo-outline);
  border-radius: 18px;
  cursor: pointer;
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.05);
  transition: transform 0.1s ease, border-bottom-width 0.1s ease;
}

.btn-cta:active {
  transform: translateY(4px);
  border-bottom-width: 1px;
}

.btn-cta.blue {
  background: linear-gradient(180deg, #2EA2F8 0%, #0F85DB 100%);
  border-bottom-color: var(--axo-outline);
}

.btn-cta.secondary {
  background: var(--card);
  color: var(--action-blue);
  border: 3px solid var(--border);
  border-bottom: 7px solid var(--border-shadow);
  box-shadow: 0 4px 0 rgba(0,0,0,0.02);
}

.btn-cta.secondary:active {
  transform: translateY(4px);
  border-bottom-width: 3px;
}

.btn-cta.green {
  background: linear-gradient(180deg, #2ECC71 0%, #27AE60 100%);
  border-bottom-color: #1e7e43;
}

/* Hero Section */
.hero-section {
  padding: 80px 0 60px;
  position: relative;
  background: radial-gradient(circle at top right, #FFF0ED 0%, #FFFDFB 60%);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

.hero-content {
  z-index: 2;
}

.hero-tagline {
  font-size: 1.4rem;
  color: var(--axo-gill-dark);
  font-weight: 800;
  margin-bottom: 12px;
  display: block;
}

.hero-graphic {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-graphic img {
  width: 100%;
  max-width: 360px;
  z-index: 2;
  animation: float 4s ease-in-out infinite;
}

.hero-graphic::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 197, 190, 0.4) 0%, rgba(255, 253, 251, 0) 70%);
  z-index: 1;
}

@keyframes float {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(2deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

/* Interactive Game Preview Component */
.preview-section {
  padding: 60px 0;
  background: #FFF9F7;
  border-top: 3px dashed var(--border);
  border-bottom: 3px dashed var(--border);
}

.preview-tabs {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.preview-tab-btn {
  background: var(--card);
  border: 3px solid var(--border);
  border-bottom: 7px solid var(--border-shadow);
  border-radius: 20px;
  font-weight: 800;
  font-size: 16px;
  padding: 12px 24px;
  color: var(--text);
  cursor: pointer;
  transition: transform 0.1s, border-bottom-width 0.1s;
}

.preview-tab-btn:active, .preview-tab-btn.active {
  transform: translateY(4px);
  border-bottom-width: 3px;
}

.preview-tab-btn.active {
  border-color: var(--action-blue);
  border-bottom-color: var(--action-blue-shadow);
  background: #E8F4FE;
  color: var(--action-blue-shadow);
}

.preview-container {
  max-width: 680px;
  margin: 0 auto;
  min-height: 340px;
}

.preview-card {
  background: var(--card);
  border: 3px solid var(--border);
  border-bottom: 8px solid var(--border-shadow);
  border-radius: 28px;
  padding: 30px;
  position: relative;
}

/* Claymorphic 3D Card */
.card-3d {
  background: var(--card);
  border: 3px solid var(--border);
  border-bottom: 8px solid var(--border-shadow);
  border-radius: 28px;
  padding: 32px;
  box-shadow: 0 10px 20px rgba(124, 30, 24, 0.02);
  transition: transform 0.2s ease;
}

.card-3d:hover {
  transform: translateY(-4px);
}

/* Grid systems */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

/* USPs Styles */
.usp-icon {
  font-size: 40px;
  margin-bottom: 16px;
  display: inline-block;
  background: #FFF0ED;
  padding: 12px;
  border-radius: 20px;
  border: 2px solid var(--border);
}

/* Parent / School Split columns */
.split-section {
  padding: 80px 0;
  position: relative;
}

.split-card {
  padding: 40px;
  border-radius: 28px;
  border: 3px solid var(--border);
  position: relative;
  overflow: hidden;
}

.split-card.parent {
  background: linear-gradient(135deg, #FFF6F5 0%, #FFFFFF 100%);
  border-color: #FFD2CC;
  border-bottom: 8px solid #FFAAA0;
}

.split-card.school {
  background: linear-gradient(135deg, #F4F9FC 0%, #FFFFFF 100%);
  border-color: #CBE3F7;
  border-bottom: 8px solid #99C3E6;
}

.split-card .mascot-float {
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 90px;
  height: 90px;
  opacity: 0.85;
}

/* Timeline / Hoe het werkt */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 50px auto 0;
  padding-left: 50px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 19px;
  top: 0;
  bottom: 0;
  width: 6px;
  background: var(--border);
  border-radius: 3px;
}

.timeline-item {
  position: relative;
  margin-bottom: 40px;
}

.timeline-badge {
  position: absolute;
  left: -50px;
  width: 44px;
  height: 44px;
  background: var(--accent);
  border: 3px solid var(--border);
  border-bottom: 6px solid var(--accent-shadow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 20px;
  color: var(--text);
  z-index: 2;
}

.timeline-content {
  background: var(--card);
  padding: 24px;
  border-radius: 20px;
  border: 3px solid var(--border);
  border-bottom: 6px solid var(--border-shadow);
}

.timeline-content h3 {
  margin-top: 0;
  margin-bottom: 8px;
}

/* Pricing Cards */
.pricing-section {
  padding: 80px 0;
  background: #FFFDFB;
}

.pricing-grid {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

.pricing-card {
  background: var(--card);
  border: 3px solid var(--border);
  border-bottom: 10px solid var(--border-shadow);
  border-radius: 32px;
  padding: 40px 30px;
  width: 100%;
  max-width: 380px;
  position: relative;
  text-align: center;
  transition: transform 0.2s ease;
}

.pricing-card.premium {
  border-color: #E4ECF0;
  border-bottom-color: #CAD5DB;
  background: #FAFBFB;
  opacity: 0.65;
  filter: grayscale(100%);
  cursor: not-allowed;
}

.pricing-card.premium:hover {
  transform: none;
}

.pricing-card.premium .popular-badge {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--text);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 12px;
  border: 2px solid var(--text);
}

.pricing-price {
  font-size: 3rem;
  font-weight: 900;
  color: var(--text);
  margin: 20px 0;
  line-height: 1;
}

.pricing-price span {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--muted);
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 30px 0;
  text-align: left;
}

.pricing-features li {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-features li::before {
  content: '✓';
  color: var(--good);
  font-weight: 900;
  font-size: 18px;
}

.pricing-features li.unavailable {
  color: var(--muted);
}

.pricing-features li.unavailable::before {
  content: '✗';
  color: var(--bad);
}

/* FAQ Section */
.faq-section {
  padding: 80px 0;
  background: #FFF9F7;
  border-top: 3px dashed var(--border);
}

.faq-search-wrapper {
  max-width: 600px;
  margin: 0 auto 40px;
  position: relative;
}

.faq-search-input {
  width: 100%;
  min-height: 54px;
  font-size: 18px;
  font-weight: 700;
  padding: 12px 20px 12px 50px;
  border: 3px solid var(--border);
  border-radius: 20px;
  box-shadow: inset 0 2px 4px rgba(124, 30, 24, 0.04);
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
}

.faq-search-input:focus {
  border-color: var(--axo-outline);
  outline: 3px solid var(--axo-body);
}

.faq-search-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  color: var(--muted);
  pointer-events: none;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--card);
  border: 3px solid var(--border);
  border-bottom: 6px solid var(--border-shadow);
  border-radius: 20px;
  margin-bottom: 16px;
  overflow: hidden;
  transition: transform 0.1s ease;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 20px 24px;
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  outline: none;
  font-family: inherit;
}

.faq-question::after {
  content: '▼';
  font-size: 12px;
  transition: transform 0.2s ease;
  color: var(--muted);
}

.faq-item.open .faq-question::after {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 24px 20px;
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.6;
  display: none;
}

.faq-item.open .faq-answer {
  display: block;
}

.faq-no-results {
  display: none;
  text-align: center;
  padding: 40px;
  font-size: 18px;
  font-weight: 800;
  color: var(--muted);
}

/* Footer */
.footer {
  background: var(--text);
  color: #FFF0ED;
  padding: 60px 0 30px;
  border-top: 5px solid var(--axo-outline);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  font-size: 24px;
  color: #FFF0ED;
  text-decoration: none;
}

.footer-logo img {
  width: 40px;
  height: 40px;
}

.footer-links h4 {
  color: var(--axo-body);
  margin-bottom: 16px;
  font-size: 18px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #FFF0ED;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  opacity: 0.85;
  transition: opacity 0.2s, color 0.2s;
}

.footer-links a:hover {
  opacity: 1;
  color: var(--axo-body);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 197, 190, 0.1);
  padding-top: 30px;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--muted);
}

/* Interactive Preview Game Inner Styles */
.game-preview-mc {
  text-align: center;
}

.preview-question-box {
  background: var(--bg);
  border: 3px solid var(--border);
  border-radius: 20px;
  padding: 20px;
  margin-bottom: 24px;
  font-size: 32px;
  font-weight: 900;
  display: inline-block;
  min-width: 160px;
}

.preview-options-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 320px;
  margin: 0 auto;
}

.preview-opt-btn {
  background: var(--card);
  border: 3px solid var(--border);
  border-bottom: 7px solid var(--border-shadow);
  border-radius: 18px;
  padding: 12px;
  font-size: 20px;
  font-weight: 800;
  cursor: pointer;
  font-family: inherit;
  transition: transform 0.1s, border-bottom-width 0.1s;
}

.preview-opt-btn:active {
  transform: translateY(4px);
  border-bottom-width: 3px;
}

.preview-opt-btn.correct {
  border-color: var(--good);
  border-bottom-color: var(--good-shadow);
  background: #EAFDF0;
  color: var(--good-shadow);
}

.preview-opt-btn.incorrect {
  border-color: var(--bad);
  border-bottom-color: var(--bad-shadow);
  background: #FFF1F2;
  color: var(--bad-shadow);
}

.preview-feedback-panel {
  margin-top: 24px;
  min-height: 48px;
  font-size: 18px;
  font-weight: 800;
}

.preview-game-drag {
  text-align: center;
}

.drag-slots-container {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin: 24px 0;
}

.drag-slot {
  width: 60px;
  height: 60px;
  border: 3px dashed var(--border);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 900;
  background: var(--bg);
  position: relative;
}

.drag-numbers-pool {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.drag-num-item {
  width: 54px;
  height: 54px;
  background: var(--card);
  border: 3px solid var(--border);
  border-bottom: 6px solid var(--border-shadow);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 900;
  cursor: grab;
  user-select: none;
  touch-action: none;
  transition: transform 0.1s ease, box-shadow 0.1s ease;
}

.drag-num-item:active {
  cursor: grabbing;
  transform: scale(1.12) rotate(-3deg);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.drag-num-item.placed {
  opacity: 0.3;
  pointer-events: none;
}

.drag-slot.drag-over {
  background: var(--axo-body);
  color: white;
  border-color: var(--axo-outline);
}

.game-preview-race {
  text-align: center;
}

.race-hud {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 400px;
  margin: 0 auto 20px;
  font-weight: 900;
  font-size: 18px;
}

.race-progress-container {
  width: 100%;
  height: 20px;
  background: var(--bg);
  border: 3px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
}

.race-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #FF9F43, var(--accent));
  transition: width 0.2s ease;
}

/* Wave Dividers */
.wave-divider {
  position: relative;
  width: 100%;
  height: 40px;
  overflow: hidden;
  line-height: 0;
}

.wave-divider svg {
  display: block;
  width: 100%;
  height: 40px;
}

/* Interactive didactics grid */
.didactics-hero {
  background: linear-gradient(180deg, #FFF0ED 0%, #FFFDFB 100%);
  padding: 60px 0;
  border-bottom: 3px solid var(--border);
}

.curriculum-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 10px;
  margin: 20px 0;
}

.curriculum-table th, .curriculum-table td {
  padding: 16px;
  text-align: left;
}

.curriculum-table th {
  background: var(--border);
  font-weight: 900;
  color: var(--text);
  border-radius: 12px;
}

.curriculum-table td {
  background: var(--card);
  border: 2px solid var(--border);
  border-width: 2px 0;
  font-weight: 700;
}

.curriculum-table td:first-child {
  border-left: 2px solid var(--border);
  border-top-left-radius: 14px;
  border-bottom-left-radius: 14px;
  font-weight: 900;
  color: var(--axo-outline);
}

.curriculum-table td:last-child {
  border-right: 2px solid var(--border);
  border-top-right-radius: 14px;
  border-bottom-right-radius: 14px;
}

.curriculum-tag {
  display: inline-block;
  background: #FFF3E0;
  color: #E65100;
  padding: 4px 10px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 800;
}

/* Privacy shield graphic */
.privacy-shield-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 0;
}

.privacy-shield-icon {
  font-size: 100px;
  margin-bottom: 20px;
  animation: float 4s ease-in-out infinite;
}

/* Form inputs for contact page */
.contact-form-group {
  margin-bottom: 20px;
  text-align: left;
}

.contact-form-group label {
  display: block;
  font-weight: 800;
  font-size: 16px;
  margin-bottom: 8px;
  color: var(--text);
}

.contact-form-group input, .contact-form-group textarea {
  width: 100%;
  border: 3px solid var(--border);
  border-radius: 16px;
  padding: 12px 16px;
  font-size: 16px;
  font-weight: 700;
  font-family: inherit;
}

.contact-form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form-group input:focus, .contact-form-group textarea:focus {
  outline: 3px solid var(--axo-body);
  border-color: var(--axo-outline);
}

/* Responsive queries */
@media (max-width: 1040px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-graphic {
    order: -1;
  }
  
  .nav-links {
    display: none;
  }

  .nav-hamburger {
    display: inline-flex;
    order: 3; /* hamburger rightmost */
  }

  #nav-play-btn {
    order: 2; /* Speel Nu just left of hamburger */
    /* Smaller on mobile so it doesn't crowd the header */
    font-size: 14px;
    padding: 6px 14px;
    min-height: 40px;
    border-radius: 12px;
    border-bottom-width: 4px;
  }

  .logo {
    order: 1;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.8rem; }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .split-card .mascot-float {
    position: static;
    margin-top: 20px;
    width: 80px;
    height: 80px;
  }
}

.hidden {
  display: none !important;
}

