/* ===========================
   Filiz Bakkerij & Pizzaria
   Colorful, warm, fun!
   =========================== */

:root {
  --red: #D4A017;
  --red-dark: #b38a12;
  --red-light: #fef8e1;
  --dark: #2C2C2C;
  --mid: #555555;
  --light: #EEEEEE;
  --bg: #F2F2F2;
  --warm-bg: #EBEBEB;
  --card-bg: #FFFFFF;
  --text: #1A1A1A;
  --text-light: #777777;
  --border: #DDDDDD;
  --green: #2DC653;
  --yellow: #D4A017;
  --yellow-dark: #b38a12;
  --yellow-light: #fef8e1;
  --black: #2C2C2C;
  --pizza-orange: #D4A017;
  --cream: #F2F2F2;
  --radius: 14px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.14);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-display: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  --font-body: 'Nunito', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background-color: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--pizza-orange);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--black);
}

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

/* ===========================
   Navigation
   =========================== */

.navbar {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(44, 44, 44, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 3px solid transparent;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(44, 44, 44, 0.99);
  border-bottom: 3px solid var(--red);
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  line-height: 1;
}

.nav-brand-text {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 800;
  color: white;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  line-height: 1;
  padding-bottom: 2px;
  border-bottom: 1.5px solid var(--red);
}

.nav-brand-sub {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  letter-spacing: 3px;
  text-transform: uppercase;
  line-height: 1;
  margin-top: 1px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  font-weight: 700;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 3px;
  background: var(--red);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.nav-links a:hover::after { width: 100%; }

.nav-order-btn {
  background: var(--red) !important;
  color: white !important;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 800 !important;
  font-size: 0.9rem !important;
  box-shadow: 0 4px 12px rgba(192,57,43,0.35);
}

.nav-order-btn::after { display: none !important; }

.nav-order-btn:hover {
  background: var(--red-dark) !important;
  color: white !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 26px; height: 3px;
  background: white;
  border-radius: 3px;
  transition: var(--transition);
}

/* ===========================
   HALAL bar (below navbar)
   =========================== */

.halal-bar {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  background: var(--red);
  color: var(--dark);
  border: none;
  border-radius: 2px;
  padding: 2px 8px;
  font-size: 0.42rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: var(--font-body);
  line-height: 1.5;
  cursor: default;
  white-space: nowrap;
  margin: 0;
}

.halal-bar-wrap {
  text-align: center;
  margin: -28px 0 24px;
}

.halal-bar .halal-arabic {
  font-size: 0.52rem;
  letter-spacing: 0;
  font-family: 'Arial', sans-serif;
}

/* ===========================
   Hero Section
   =========================== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(rgba(0,0,0,0.58), rgba(0,0,0,0.58)), url('images/bakkerij foto.jpg') center/cover no-repeat;
  padding-top: 72px;
  overflow: hidden;
}

.hero::before { display: none; }

.hero-overlay { display: none; }

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 24px;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 800;
  color: rgba(255,255,255,0.9);
  text-transform: uppercase;
  letter-spacing: 5px;
  margin-bottom: 14px;
  background: rgba(0,0,0,0.38);
  display: inline-block;
  padding: 4px 14px;
  border-radius: 6px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.8rem, 12vw, 7.5rem);
  font-weight: 800;
  color: white;
  line-height: 1;
  letter-spacing: 4px;
  margin-bottom: 0;
  text-shadow: 3px 3px 0 rgba(0,0,0,0.35);
  padding-bottom: 6px;
  border-bottom: 2px solid var(--red);
}

.hero-brand-sub {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 7.5vw, 4.7rem);
  font-weight: 800;
  color: rgba(255,255,255,0.7);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 24px;
  margin-top: 0;
  line-height: 1;
}

.hero-tagline {
  font-size: 1.2rem;
  font-weight: 600;
  color: rgba(255,255,255,0.95);
  max-width: 520px;
  margin: 0 auto 24px;
  background: rgba(0,0,0,0.38);
  display: inline-block;
  padding: 6px 16px;
  border-radius: 6px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 800;
  font-family: var(--font-body);
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-decoration: none;
}

.btn-hero-bestellen {
  background: var(--red);
  color: white;
  font-size: 0.95rem;
  padding: 12px 38px;
  border-radius: 0;
  font-weight: 800;
  box-shadow: 0 4px 20px rgba(212,160,23,0.4);
  letter-spacing: 1px;
}

.btn-hero-bestellen:hover {
  background: var(--red-dark);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(212,160,23,0.5);
}

.btn-primary {
  background: var(--red);
  color: white;
  box-shadow: 0 4px 20px rgba(212,160,23,0.4);
}

.btn-primary:hover {
  background: var(--red-dark);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(212,160,23,0.5);
}

.btn-deliveroo {
  background: #00CCBC;
  color: white;
  box-shadow: 0 4px 16px rgba(0,204,188,0.35);
}

.btn-deliveroo:hover {
  background: #00b5a6;
  color: white;
  transform: translateY(-3px);
}

.btn-tgtg {
  background: #5C8A3C;
  color: white;
  box-shadow: 0 4px 16px rgba(92,138,60,0.35);
}

.btn-tgtg:hover {
  background: #4a7030;
  color: white;
  transform: translateY(-3px);
}

.btn-secondary {
  background: rgba(255,255,255,0.1);
  color: white;
  border: 2px solid rgba(255,255,255,0.4);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.2);
  color: white;
  transform: translateY(-3px);
}

/* ===========================
   Section Styles
   =========================== */

.nav-halal-badge { display: none; }

.halal-arabic {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0;
  font-family: 'Arial', sans-serif;
}

.nav-order-btn {
  background: transparent !important;
  color: rgba(255,255,255,0.85) !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  font-weight: 600 !important;
  font-size: 0.95rem !important;
  box-shadow: none !important;
}

.section-title {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--dark);
  text-align: center;
  margin-bottom: 12px;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 5px;
  background: var(--red);
  border-radius: 3px;
  margin: 12px auto 0;
}

.section-title.left::after {
  margin: 12px 0 0;
}

.section-title.left { text-align: left; }

.section-subtitle {
  text-align: center;
  color: var(--text-light);
  font-size: 1.05rem;
  font-weight: 600;
  max-width: 600px;
  margin: 8px auto 40px;
}

/* ===========================
   Menu Section
   =========================== */

.menu-section {
  padding: 100px 0 80px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

/* Food background illustrations */
.food-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.fb {
  position: absolute;
  font-size: 3rem;
  opacity: 0.06;
  animation: floatFood 8s ease-in-out infinite;
  user-select: none;
}

.fb1 { top: 5%; left: 5%; animation-delay: 0s; }
.fb2 { top: 15%; right: 8%; animation-delay: 1.2s; }
.fb3 { top: 45%; left: 2%; animation-delay: 2.4s; }
.fb4 { bottom: 20%; right: 4%; animation-delay: 0.8s; }
.fb5 { bottom: 10%; left: 15%; animation-delay: 1.8s; }
.fb6 { top: 65%; right: 12%; animation-delay: 3s; }

@keyframes floatFood {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(8deg); }
}

.menu-section .container {
  position: relative;
  z-index: 1;
}

/* Main Switcher */
.menu-switcher {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.switcher-btn {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  padding: 10px 32px;
  border: 2px solid var(--border);
  border-radius: 4px;
  background: white;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-display);
  min-width: 160px;
  justify-content: center;
  letter-spacing: 1.5px;
}

.switcher-btn:hover {
  border-color: var(--red);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.switcher-btn.active {
  background: var(--red);
  border-color: var(--red);
  box-shadow: 0 4px 16px rgba(192,57,43,0.35);
  transform: translateY(-2px);
}

.switcher-btn.active .switcher-label {
  color: white;
}

.switcher-icon {
  font-size: 1.1rem;
  line-height: 1;
}

.switcher-label {
  font-size: 1rem;
  font-weight: 800;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Sub tabs */
.menu-sub-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.menu-sub-tabs.sub-hidden { display: none; }

.menu-tab {
  padding: 10px 22px;
  border: 2px solid var(--dark);
  border-radius: 50px;
  background: white;
  color: var(--dark);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}

.menu-tab:hover {
  border-color: var(--red);
  background: var(--red-light);
}

.menu-tab.active {
  background: var(--red);
  border-color: var(--red);
  color: var(--dark);
  font-weight: 800;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 14px;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 18px 22px;
  background: var(--red);
  border-radius: var(--radius);
  border: 2px solid var(--red-dark);
  transition: var(--transition);
}

.menu-item:hover {
  border-color: var(--red);
  box-shadow: 0 4px 16px rgba(212,160,23,0.2);
  transform: translateY(-2px);
}

.menu-item.hidden { display: none; }

.menu-item-info h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
  font-family: var(--font-body);
}

.menu-item-info p {
  font-size: 0.82rem;
  color: rgba(0,0,0,0.55);
  line-height: 1.4;
}

.menu-item-price {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--dark);
  white-space: nowrap;
  margin-left: 16px;
}

.badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 2px 10px;
  border-radius: 50px;
  vertical-align: middle;
  margin-left: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-popular { background: #3a3a3a; color: white; font-weight: 900; }
.badge-halal   { background: #D4EDDA; color: #155724; }

/* ===========================
   About Section
   =========================== */

.about-section {
  padding: 100px 0;
  background: white;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-photo {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.about-image-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  background: var(--light);
  border: 3px dashed var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--mid);
  font-size: 3rem;
}

.about-image-placeholder p { font-size: 0.9rem; font-weight: 700; }

.about-text h2 { margin-bottom: 24px; }

.about-text p {
  color: var(--text-light);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-features {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.feature {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--red-light);
  border: 2px solid var(--red);
  border-radius: 50px;
  padding: 8px 16px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--dark);
}

.feature-icon { font-size: 1.3rem; }

/* ===========================
   Opening Hours
   =========================== */

.hours-section {
  padding: 100px 0;
  background: var(--black);
  color: white;
}

.hours-section .section-title { color: white; }
.hours-section .section-title::after { background: var(--red); }

.hours-card {
  max-width: 520px;
  margin: 40px auto 0;
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius-lg);
  border: 2px solid rgba(212,160,23,0.3);
  padding: 8px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  border-radius: var(--radius);
  transition: var(--transition);
}

.hours-row:hover { background: rgba(255,255,255,0.06); }
.hours-row .day { font-weight: 700; font-size: 1rem; color: white; }
.hours-row .time { font-weight: 800; color: white; font-size: 1rem; }
.hours-row.closed .day { color: rgba(255,255,255,0.45); }
.hours-row.closed .time { color: rgba(255,255,255,0.45); }
.hours-row.today { background: rgba(212,160,23,0.15); border-left: 4px solid var(--red); }

/* ===========================
   Contact Section
   =========================== */

.contact-section {
  padding: 100px 0;
  background: var(--warm-bg);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.contact-grid-2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.contact-card {
  text-align: center;
  padding: 40px 24px;
  background: white;
  border-radius: var(--radius-lg);
  border: 2px solid var(--border);
  transition: var(--transition);
}

.contact-card:hover {
  border-color: var(--red);
  box-shadow: 0 8px 30px rgba(212,160,23,0.15);
  transform: translateY(-4px);
}

.contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--red-light);
  color: var(--red);
  margin-bottom: 20px;
  border: 2px solid var(--red);
}

.contact-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--black);
  margin-bottom: 8px;
}

.contact-card p {
  color: var(--text-light);
  font-weight: 600;
  line-height: 1.7;
}

.contact-card a { font-weight: 700; }

.contact-hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
  margin-bottom: 0;
}

.contact-cards-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-cards-col .contact-card {
  display: flex;
  align-items: center;
  gap: 20px;
  text-align: left;
  padding: 24px 20px;
}

.contact-cards-col .contact-card h3 { margin-bottom: 4px; }

.hours-col-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

@media (max-width: 768px) {
  .contact-hours-grid { grid-template-columns: 1fr; }
  .contact-cards-col .contact-card { text-align: left; }
}

.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 3px solid var(--red);
}

.map-container iframe { display: block; }

/* ===========================
   Global: vierkante hoeken
   =========================== */

.btn,
.btn-hero-bestellen,
.btn-deliveroo,
.btn-tgtg,
.switcher-btn,
.contact-card,
.bestellen-card,
.bestellen-btn-link,
.hours-card,
.foto-item,
.about-photo,
.about-image-placeholder,
.badge,
.menu-item,
.menu-tab {
  border-radius: 8px !important;
}

/* ===========================
   Bestellen Section
   =========================== */

.bestellen-section {
  padding: 80px 0;
  background: var(--light);
}

.bestellen-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.bestellen-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.bestellen-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.bestellen-header {
  padding: 28px 28px 20px;
}

.bestellen-platform {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.deliveroo-name { color: #00CCBC; }
.tgtg-name { color: #5C8A3C; }

.bestellen-deliveroo .bestellen-header { border-bottom: 4px solid #00CCBC; }
.bestellen-tgtg .bestellen-header { border-bottom: 4px solid #5C8A3C; }

.bestellen-tagline {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.bestellen-body {
  padding: 20px 28px;
  flex: 1;
}

.bestellen-body p {
  font-size: 0.95rem;
  color: var(--text-light);
  font-weight: 600;
  line-height: 1.7;
  margin-bottom: 16px;
}

.bestellen-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bestellen-features li {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
}

.bestellen-btn-link {
  display: block;
  text-align: center;
  padding: 16px 24px;
  font-weight: 800;
  font-size: 1rem;
  font-family: var(--font-body);
  text-decoration: none;
  transition: var(--transition);
  letter-spacing: 0.5px;
}

.deliveroo-link {
  background: #00CCBC;
  color: white;
}

.deliveroo-link:hover {
  background: #00b5a6;
  color: white;
}

.tgtg-link {
  background: #5C8A3C;
  color: white;
}

.tgtg-link:hover {
  background: #4a7030;
  color: white;
}

@media (max-width: 768px) {
  .bestellen-grid { grid-template-columns: 1fr; }
}

/* ===========================
   Foto's Section
   =========================== */

.fotos-section {
  padding: 80px 0;
  background: white;
}

.fotos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.foto-item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--light);
}

.foto-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.foto-item:hover img {
  transform: scale(1.05);
}

@media (max-width: 600px) {
  .fotos-grid { grid-template-columns: 1fr; }
}


/* ===========================
   Footer
   =========================== */

.footer {
  background: var(--black);
  color: rgba(255,255,255,0.8);
  padding: 60px 0 0;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-bottom: 40px;
  border-bottom: 2px solid rgba(212,160,23,0.3);
}

.footer-top-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.footer-brand h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--red);
  margin-bottom: 4px;
}

.footer-brand p { color: rgba(255,255,255,0.6); font-weight: 600; }

.footer-links {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px 24px;
  align-items: center;
  justify-content: center;
  padding: 16px 0 4px;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-links a {
  color: rgba(255,255,255,0.65);
  font-size: 0.95rem;
  font-weight: 600;
}

.footer-links a:hover { color: var(--red); }

.footer-info p { margin-bottom: 8px; font-size: 0.95rem; font-weight: 600; }
.footer-info a { color: var(--red); }

.footer-bottom {
  padding: 24px 0;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.35);
  font-weight: 600;
}

/* ===========================
   WhatsApp Float Button
   =========================== */

.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 999;
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 30px rgba(37,211,102,0.55);
}

/* ===========================
   Animations
   =========================== */

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===========================
   Responsive Design
   =========================== */

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-text { text-align: center; }
  .about-text h2 { text-align: center; }
  .about-text h2::after { margin: 12px auto 0; }
  .about-features { justify-content: center; }
  .footer-top-row { flex-direction: column; gap: 16px; text-align: center; }
  .footer-links { justify-content: center; }
  .bestellen-grid { grid-template-columns: 1fr; }
  .fotos-grid { grid-template-columns: 1fr; }
  .hours-card { max-width: 100%; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }

  .nav-links {
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: #2c2c2c;
    flex-direction: column;
    gap: 0;
    padding: 16px;
    border-bottom: 3px solid var(--red);
    box-shadow: var(--shadow-lg);
    transform: translateY(-120%);
    transition: transform 0.3s ease;
    z-index: 999;
  }

  .nav-links.open { transform: translateY(0); }
  .nav-links li { width: 100%; }

  .nav-links a {
    display: block;
    padding: 14px 16px;
    border-radius: 10px;
    font-weight: 700;
  }

  .nav-links a:hover { background: rgba(212,160,23,0.1); color: white; }
  .nav-links a::after { display: none; }
  .nav-order-btn { text-align: center; margin-top: 8px; }

  .hero-title { font-size: clamp(3rem, 16vw, 5.5rem); }
  .section-title { font-size: 2rem; }
  .menu-grid { grid-template-columns: 1fr; }
  .switcher-btn { padding: 10px 24px; min-width: 140px; }
  .switcher-icon { font-size: 1.2rem; }
  .switcher-label { font-size: 1rem; }

  .whatsapp-float { bottom: 20px; right: 20px; width: 54px; height: 54px; }
}

@media (max-width: 480px) {
  .hero-buttons { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 280px; justify-content: center; }
  .menu-switcher { gap: 12px; }
  .switcher-btn { padding: 10px 20px; min-width: 130px; }

  .menu-sub-tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .menu-tab {
    padding: 8px 6px;
    font-size: 0.78rem;
    letter-spacing: 0;
    text-align: center;
  }
}
