/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: #1a1a1a; background: #fff; line-height: 1.6; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ===== TOKENS ===== */
:root {
  --red: #d42b2b;
  --red-dark: #b01f1f;
  --black: #0d0d0d;
  --white: #ffffff;
  --gray-light: #f8f8f6;
  --gray-mid: #e8e8e4;
  --gray-text: #666;
  --gold: #c9a84c;
  --radius: 14px;
  --shadow: 0 4px 24px rgba(0,0,0,0.10);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.18);
  --transition: 0.25s ease;
}

/* ===== LAYOUT ===== */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section-dark { background: var(--black); color: var(--white); }
.section-light { background: var(--gray-light); }

/* ===== TYPOGRAPHY ===== */
h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 700; line-height: 1.15; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; line-height: 1.2; }
h3 { font-size: 1.2rem; font-weight: 600; }
.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}
.section-label.light { color: var(--gold); }
.section-header { text-align: center; margin-bottom: 56px; }
.section-header p { color: var(--gray-text); margin-top: 12px; font-size: 1.05rem; }
.section-dark .section-header p { color: rgba(255,255,255,0.6); }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--red); color: var(--white);
  padding: 14px 28px; border-radius: 50px;
  font-weight: 600; font-size: 0.95rem;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(212,43,43,0.35); }
.btn-primary.btn-large { padding: 18px 36px; font-size: 1.05rem; }
.btn-primary.btn-full { width: 100%; justify-content: center; }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--white);
  padding: 14px 28px; border-radius: 50px;
  font-weight: 600; font-size: 0.95rem;
  border: 2px solid rgba(255,255,255,0.5);
  transition: border-color var(--transition), background var(--transition);
}
.btn-secondary:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }

/* ===== NAVBAR ===== */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
}
#navbar.scrolled { background: rgba(13,13,13,0.97); box-shadow: 0 2px 20px rgba(0,0,0,0.3); }
.nav-inner {
  display: flex; align-items: center; gap: 32px;
  max-width: 1180px; margin: 0 auto; padding: 0 24px;
  height: 72px;
}
.logo { display: flex; align-items: center; gap: 0; font-weight: 900; font-size: 1.1rem; letter-spacing: 0.02em; }
.logo-sensations { color: var(--white); }
.logo-to {
  background: var(--red); color: var(--white);
  padding: 2px 8px; margin-left: 6px; border-radius: 4px;
}
.nav-links { display: flex; gap: 28px; margin-left: auto; }
.nav-links a { color: rgba(255,255,255,0.85); font-size: 0.9rem; font-weight: 500; transition: color var(--transition); }
.nav-links a:hover { color: var(--white); }
.btn-bestel {
  background: var(--red); color: var(--white);
  padding: 10px 22px; border-radius: 50px;
  font-weight: 600; font-size: 0.88rem;
  transition: background var(--transition);
  white-space: nowrap;
}
.btn-bestel:hover { background: var(--red-dark); }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); transition: var(--transition); border-radius: 2px; }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu {
  display: none; flex-direction: column; gap: 0;
  background: rgba(13,13,13,0.98);
  padding: 16px 24px 24px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { color: rgba(255,255,255,0.85); padding: 12px 0; font-size: 1rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
.mobile-menu a:last-child { border-bottom: none; }
.btn-bestel-mobile { color: var(--red) !important; font-weight: 700; border-bottom: none !important; }

/* ===== HERO ===== */
.hero {
  position: relative; height: 100vh; min-height: 600px;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  filter: brightness(0.45) saturate(1.1);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(13,13,13,0.7) 0%, rgba(212,43,43,0.15) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 1180px; margin: 0 auto; padding: 0 24px;
  padding-top: 72px;
}
.hero-tag {
  font-size: 0.82rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 16px;
}
.hero-content h1 { color: var(--white); margin-bottom: 20px; }
.hero-content h1 em { color: var(--red); font-style: normal; }
.hero-sub { color: rgba(255,255,255,0.8); font-size: 1.15rem; max-width: 520px; margin-bottom: 36px; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-badges { display: flex; gap: 20px; flex-wrap: wrap; }
.badge {
  display: flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.85); font-size: 0.88rem; font-weight: 500;
}
.badge-icon { color: var(--gold); font-size: 0.7rem; }

/* ===== USP STRIP ===== */
.usp-strip { background: var(--black); padding: 40px 0; }
.usp-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.usp-item { display: flex; align-items: flex-start; gap: 16px; }
.usp-icon { font-size: 1.2rem; flex-shrink: 0; color: var(--red); width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; background: rgba(212,43,43,0.15); border-radius: 8px; }
.usp-item strong { display: block; color: var(--white); font-size: 0.95rem; margin-bottom: 4px; }
.usp-item p { color: rgba(255,255,255,0.55); font-size: 0.82rem; line-height: 1.5; }

/* ===== CONCEPT ===== */
.concept-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.concept-images { position: relative; }
.concept-img-main { width: 100%; height: 480px; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.concept-img-accent {
  position: absolute; bottom: -32px; right: -32px;
  width: 200px; height: 200px; object-fit: cover;
  border-radius: var(--radius); border: 4px solid var(--white);
  box-shadow: var(--shadow-lg);
}
.concept-text h2 { margin-bottom: 20px; }
.concept-text p { color: var(--gray-text); margin-bottom: 16px; font-size: 1.02rem; }
.concept-stats { display: flex; gap: 32px; margin-top: 36px; padding-top: 32px; border-top: 1px solid var(--gray-mid); }
.stat { display: flex; flex-direction: column; }
.stat-num { font-size: 2rem; font-weight: 800; color: var(--red); line-height: 1; }
.stat-lbl { font-size: 0.8rem; color: var(--gray-text); margin-top: 4px; }

/* ===== MENU ===== */
.menu-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.menu-card {
  background: rgba(255,255,255,0.05); border-radius: var(--radius);
  overflow: hidden; border: 1px solid rgba(255,255,255,0.08);
  transition: transform var(--transition), box-shadow var(--transition);
}
.menu-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.4); }
.menu-img-wrap { height: 200px; overflow: hidden; }
.menu-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.menu-card:hover .menu-img-wrap img { transform: scale(1.06); }
.menu-card-body { padding: 20px; }
.menu-card-body h3 { color: var(--white); margin-bottom: 8px; }
.menu-card-body p { color: rgba(255,255,255,0.55); font-size: 0.88rem; line-height: 1.6; margin-bottom: 12px; }
.menu-tag {
  display: inline-block;
  background: rgba(212,43,43,0.2); color: #f87171;
  padding: 3px 10px; border-radius: 20px; font-size: 0.75rem; font-weight: 600;
  border: 1px solid rgba(212,43,43,0.3);
}
.menu-cta { text-align: center; margin-top: 48px; }

/* ===== LOCATIES ===== */
.locaties-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.locatie-card {
  background: var(--white); border-radius: var(--radius);
  padding: 28px 24px; border: 1px solid var(--gray-mid);
  box-shadow: var(--shadow); transition: transform var(--transition), box-shadow var(--transition);
  display: flex; flex-direction: column; gap: 8px;
}
.locatie-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.locatie-card--origin { border-color: var(--gold); border-width: 2px; }
.locatie-icon { font-size: 1.1rem; margin-bottom: 14px; color: var(--red); width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; background: rgba(212,43,43,0.08); border-radius: 10px; }
.locatie-card h3 { font-size: 1.05rem; }
.locatie-adres { color: var(--gray-text); font-size: 0.88rem; }
.locatie-info { display: flex; flex-wrap: wrap; gap: 8px; margin: 4px 0; }
.locatie-info span { font-size: 0.8rem; color: var(--gray-text); }
.locatie-actions { display: flex; gap: 10px; margin-top: auto; padding-top: 12px; }
.btn-locatie {
  flex: 1; text-align: center;
  background: var(--red); color: var(--white);
  padding: 10px 14px; border-radius: 8px;
  font-weight: 600; font-size: 0.85rem;
  transition: background var(--transition);
}
.btn-locatie:hover { background: var(--red-dark); }
.btn-maps {
  padding: 10px 14px; border-radius: 8px;
  border: 1px solid var(--gray-mid); color: var(--gray-text);
  font-size: 0.85rem; font-weight: 500;
  transition: border-color var(--transition), color var(--transition);
}
.btn-maps:hover { border-color: var(--red); color: var(--red); }

/* ===== OPENINGSTIJDEN ===== */
.tijden-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.tijden-card {
  background: var(--white); border-radius: var(--radius);
  padding: 28px 24px; border: 1px solid var(--gray-mid);
  box-shadow: var(--shadow);
}
.tijden-card h3 { font-size: 1rem; margin-bottom: 16px; color: var(--red); }
.tijden-table { width: 100%; border-collapse: collapse; }
.tijden-table tr td { padding: 8px 0; font-size: 0.85rem; border-bottom: 1px solid var(--gray-mid); }
.tijden-table tr:last-child td { border-bottom: none; }
.tijden-table td:last-child { text-align: right; }
.tijden-note { text-align: center; margin-top: 32px; color: var(--gray-text); font-size: 0.85rem; font-style: italic; }

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--red) 0%, #8b0000 100%);
  padding: 72px 0;
}
.cta-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap;
}
.cta-inner h2 { color: var(--white); font-size: clamp(1.5rem, 3vw, 2.2rem); }
.cta-inner p { color: rgba(255,255,255,0.8); margin-top: 8px; }
.cta-inner .btn-primary { background: var(--white); color: var(--red); flex-shrink: 0; }
.cta-inner .btn-primary:hover { background: var(--gray-light); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: flex-start; }
.contact-info h2 { margin-bottom: 16px; }
.contact-info > p { color: var(--gray-text); margin-bottom: 32px; font-size: 1rem; }
.contact-items { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; }
.contact-icon { font-size: 0.95rem; flex-shrink: 0; color: var(--red); width: 38px; height: 38px; display: flex; align-items: center; justify-content: center; background: rgba(212,43,43,0.08); border-radius: 8px; margin-top: 2px; }
.contact-item strong { display: block; font-size: 0.88rem; color: var(--gray-text); margin-bottom: 2px; }
.contact-item a { color: var(--red); font-weight: 500; font-size: 0.95rem; }
.contact-item a:hover { text-decoration: underline; }
.social-links { display: flex; gap: 12px; flex-wrap: wrap; }
.social-btn {
  padding: 8px 18px; border-radius: 50px;
  border: 1px solid var(--gray-mid); color: var(--gray-text);
  font-size: 0.85rem; font-weight: 500;
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}
.social-btn:hover { border-color: var(--red); color: var(--red); background: rgba(212,43,43,0.05); }
.contact-form {
  background: var(--gray-light); border-radius: var(--radius);
  padding: 40px; border: 1px solid var(--gray-mid);
}
.contact-form h3 { margin-bottom: 24px; font-size: 1.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: #444; }
.form-group input, .form-group select, .form-group textarea {
  padding: 12px 16px; border-radius: 10px;
  border: 1px solid var(--gray-mid); background: var(--white);
  font-size: 0.92rem; font-family: inherit;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--red); box-shadow: 0 0 0 3px rgba(212,43,43,0.1);
}
.form-group textarea { resize: vertical; }

/* ===== FOOTER ===== */
.footer { background: var(--black); color: rgba(255,255,255,0.7); padding: 72px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; }
.footer-logo { margin-bottom: 16px; }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; margin-bottom: 20px; }
.footer-platforms { display: flex; flex-direction: column; gap: 8px; }
.footer-platforms a { font-size: 0.85rem; color: rgba(255,255,255,0.5); transition: color var(--transition); }
.footer-platforms a:hover { color: var(--white); }
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col h4 { color: var(--white); font-size: 0.88rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 4px; }
.footer-col a { font-size: 0.88rem; color: rgba(255,255,255,0.5); transition: color var(--transition); }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.35); }
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: var(--white); }

/* ===== ANIMATIONS ===== */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.5s ease, transform 0.5s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .usp-grid { grid-template-columns: repeat(2, 1fr); }
  .concept-grid { grid-template-columns: 1fr; gap: 48px; }
  .concept-img-accent { display: none; }
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .locaties-grid { grid-template-columns: repeat(2, 1fr); }
  .tijden-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .container { padding: 0 18px; }
  .nav-links, .btn-bestel { display: none; }
  .hamburger { display: flex; }
  .hero { height: 88vh; min-height: 520px; }
  .hero-content { padding: 0 18px; padding-top: 80px; }
  .hero-ctas { flex-direction: column; gap: 12px; }
  .hero-ctas a { width: 100%; justify-content: center; text-align: center; }
  .hero-badges { gap: 14px; }
  .usp-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .menu-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .locaties-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .tijden-grid { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-inner .btn-primary { width: 100%; justify-content: center; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-form { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .concept-stats { flex-direction: row; gap: 20px; flex-wrap: wrap; }
  .concept-grid { gap: 36px; }
  .concept-img-main { height: 320px; }
  .section-header { margin-bottom: 36px; }
  .btn-primary, .btn-secondary, .btn-outline { padding: 13px 22px; font-size: 0.92rem; }
  .btn-primary.btn-large { padding: 15px 28px; font-size: 0.98rem; }
}

@media (max-width: 480px) {
  .hero-content h1 { font-size: 1.9rem; }
  .hero-badges { flex-direction: column; gap: 10px; }
  .usp-grid { grid-template-columns: 1fr; }
  .menu-grid { grid-template-columns: 1fr; }
  .locaties-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-sub { font-size: 1rem; }
  .cta-banner { padding: 48px 0; }
  .tijden-table tr td { font-size: 0.8rem; padding: 6px 0; }
  .mobile-menu a { font-size: 1.05rem; padding: 14px 0; }
}
