:root {
  --dh-primary: #e63946;     /* kräftiges Koralle-Rot */
  --dh-accent: #1d7874;      /* dunkles Türkis */
  --dh-dark: #ffffff;
  --dh-muted: #6b7280;
  --radius-2xl: 1.25rem;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial;
  color: #222222;
  background: #f5f6f8;
}

.navbar-toggler {
  border-color: #878787 !important;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' fill='%23878787' viewBox='0 0 16 16'%3E%3Cpath stroke='%23878787' stroke-linecap='round' stroke-width='2' d='M2 4h12M2 8h12M2 12h12'/%3E%3C/svg%3E");
}


/* -------------------------------------------
   WHITE BUTTONS (NEU)
------------------------------------------- */

.btn-white {
  background: #ffffff;
  color: #1d7874; /* dunkles Türkis */
  border: 2px solid #1d7874;
  padding: .75rem 1.3rem;
  border-radius: 999px;
  font-weight: 600;
  transition: all 0.25s ease;
}

.btn-white:hover {
  background: #1d7874;       /* füllt sich beim Hover */
  color: #ffffff;            /* weiße Schrift */
  border-color: #1d7874;
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}


/* -------------------------------------------
   NAVIGATION (sichtbar gemacht)
------------------------------------------- */

.navbar {
  transition: background-color .25s ease, box-shadow .25s ease;
  background: #ffffff; 
  box-shadow: 0 4px 20px rgba(0,0,0,0.10);
  border-bottom: 1px solid rgba(0,0,0,.12);
}

.navbar.scrolled {
  background: #ffffff;
  box-shadow: 0 6px 25px rgba(0,0,0,.12);
  border-bottom: 1px solid rgba(0,0,0,.15);
}

.nav-link {
  position: relative;
  color: #222 !important;
  font-weight: 600;
}

.nav-link.active::after,
.nav-link:hover::after {
  content: "";
  position: absolute;
  left: .5rem;
  right: .5rem;
  bottom: .35rem;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--dh-accent), var(--dh-primary));
}

@font-face {
  font-family: 'Poppins';
  src: url('/assets/fonts/Poppins-Bold.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

.navbar-brand strong {
  font-family: Poppins, Inter, sans-serif;
  letter-spacing: .3px;
  color: #222;
}

/* -------------------------------------------
   HERO (Header-Bild) – heller Overlay
------------------------------------------- */

.hero {
  min-height: 100vh;
  position: relative;
  display: grid;
  place-items: center;
  text-align: center;
  background: url('../img/header_doener.jpg') center/cover fixed;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, .3),
    rgba(255, 255, 255, .3) 45%,
    rgba(255, 255, 255, .3)
  );
}

.hero .content {
  position: relative;
  z-index: 1;
}

.hero .lead {
  color: #333;
  max-width: 820px;
  margin-inline: auto;
}

/* Dunklere Buttons statt outline-light */
.btn-outline-light {
  color: #444 !important;
  border: 1px solid #878787 !important;
  background: #ffffff;
  font-weight: 600;
  transition: all .25s ease;
}

.btn-outline-light:hover {
  color: #000 !important;
}


/* -------------------------------------------
   BUTTONS
------------------------------------------- */

.btn-pill {
  border-radius: 999px;
  padding: .8rem 1.35rem;
}

.btn-gradient {
  color: #fff;
  border: none;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .15);
  background: linear-gradient(90deg, var(--dh-accent), var(--dh-primary));
}

/* -------------------------------------------
   SECTIONS
------------------------------------------- */

section {
  padding: 4.5rem 0;
}

.section-title {
  font-family: Poppins, Inter, sans-serif;
  color: #222;
}

.section-subtitle {
  color: #555;
}

/* -------------------------------------------
   CATEGORY + MENU
------------------------------------------- */

.menu-category {
  margin-top: 2rem;
}

.menu-category h3 {
  font-size: 1.25rem;
  margin-bottom: .75rem;
  color: #222;
}

/* Karten / Glass Cards */

.glass-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 16px rgba(0, 0, 0, .05);
}

.list-group-item {
  background: #ffffff;
  color: #222;
  border-color: rgba(0, 0, 0, .08);
}

/* Menü-Karten */

.menu-card {
  position: relative;
  background: #ffffff;
  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 18px rgba(0, 0, 0, .06);
  transition: transform .2s ease, box-shadow .2s ease;
}

.menu-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, .10);
}

.menu-card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--dh-accent), var(--dh-primary));
  border-top-left-radius: var(--radius-2xl);
  border-top-right-radius: var(--radius-2xl);
}

.menu-card .card-title,
.menu-card .card-text {
  color: #333;
}

.price {
  font-weight: 800;
  white-space: nowrap;
  color: var(--dh-primary); /* Rot */
  font-size: 1.3rem;
}

.bs {
  border-color: #000;
}

/* -------------------------------------------
   CATEGORY NAV
------------------------------------------- */

.category-nav .cat-chip {
  display: inline-block;
  padding: .45rem .9rem;
  border: 1px solid rgba(0, 0, 0, .15);
  border-radius: 999px;
  color: #333;
  text-decoration: none;
  background: #ffffff;
}

.category-nav .cat-chip:hover {
  background: #ececec;
}

/* -------------------------------------------
   TEXT + TABLES
------------------------------------------- */

.text-secondary,
.text-muted,
p,
li,
small,
td,
th {
  color: #333 !important;
}

/* -------------------------------------------
   FOOTER
------------------------------------------- */

footer {
  background: #ffffff;
  border-top: 1px solid rgba(0, 0, 0, .10);
  color: #333;
  padding: 2rem 0;
}

/* -------------------------------------------
   RESPONSIVE
------------------------------------------- */

.navbar .brand-title {
  font-size: 1rem;
}

@media (max-width: 768px) {
  .navbar .brand-title { font-size: 0.92rem; }
}

@media (max-width: 420px) {
  .navbar .brand-title { font-size: 0.80rem; }
}

@media (min-width:1200px) {
  .hero h1 {
    font-size: clamp(2.4rem, 4vw, 4.25rem);
  }
}
