:root {
  --primary: #b71c1c;
  --accent: #ffa726;
  --bg: #121212;
  --fg: #eeeeee;
  --section: #1c1c1c;
  --font: 'Inter', sans-serif;
  --font-head: 'Playfair Display', serif;
  --radius: 12px;
  --shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

main {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-align: center;
}

body {
  font-family: var(--font);
  background-color: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  margin: 0;
}

button {
  text-align: center;
  font-size: 1.3rem;
  cursor: pointer;
  padding: 20px;
  border-radius: 10px;
  background-color: rgba(0, 0, 0, 0.5);
  color: var(--accent);
  transition: transform 0.3s ease;
  border: 3px solid var(--accent);
}

button:hover {
  transform: translateY(-5px);
}

h1,
h2,
h3 {
  font-family: var(--font-head);
  color: var(--fg);
}

main {
  max-width: 1000px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.hero {
  position: relative;
  height: 100vh;
  width: 100vw;
  background: url("assets/wallpaper-small.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

@media (min-width: 768px) {
  .hero {
    background: url('assets/wallpaper.jpg') center/cover no-repeat;
  }
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-content {
  padding: 2rem;
  max-width: 600px;
}

.hero-content h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-style: italic;
}

.margin-bottom {
  margin-bottom: 20rem;
}

.margin-top {
  margin-top: 20rem;
}

.intro-text {
  margin-top: 2rem;
}

.status p {
  text-align: center;
  font-size: 1.3rem;
  color: var(--accent);
  margin-bottom: 3rem;
  margin-top: 1rem;
  padding: 15px;
}

.status {
  margin: 0 auto;
  width: auto;
  max-width: 350px;
  border-radius: 20px;
}

.menu-title {
  margin-top: 20rem;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.menu-card {
  background: var(--section);
  padding: 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  align-items: center;
  display: grid;
  cursor: pointer;
  height: 180px;
  transition: transform 0.3s ease;
}

.menu-card:hover {
  transform: translateY(-5px);
}

.menu-card h4 {
  margin: 0;
  color: var(--accent);
}

.menu-card p {
  color: #ccc;
  font-size: 0.95rem;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}

.pagination button {
  background: none;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  cursor: pointer;
}

.hours ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  font-size: 1.2rem;
  line-height: 2.8;
  text-align: center;
  white-space: pre-line;
  max-width: 400px;
  margin-top: 2rem;
}

.hours li {
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hours li:last-child {
  border-bottom: none;
}


.hidden {
  display: none;
}

.contact {
  margin-top: 4rem;
  text-align: center;
  line-height: 2;
  font-size: 1.2rem;
}

.contact a {
  color: var(--accent);
  text-decoration: none;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 12rem);
}

h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
}

h3 {
  font-size: clamp(3rem, 3vw, 2.2rem);
}

h4 {
  font-size: clamp(1.5rem, 3vw, 1.2rem);
}

p {
  font-size: clamp(1rem, 2.5vw, 1rem);
}

a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.7);
}

/* Neuer Footer */
.footer-clean {
  background: transparent;
  color: #aaa;
  text-align: center;
  padding: 3rem 1rem 4rem;
  font-size: 0.95rem;
  line-height: 1.8;
}

.footer-clean a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-clean a:hover {
  color: #fff;
}

.footer-elevated {
  background: #1a1a1a;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 3rem 1rem;
  margin-top: 6rem;
  text-align: center;
  font-size: 0.95rem;
  color: #ccc;
  box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.4);
}

.footer-elevated .footer-content p {
  margin: 0.4rem 0;
}

.footer-elevated a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-elevated a:hover {
  color: #fff;
}

.footer-elevated .footer-links {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  flex-wrap: wrap;
  font-size: 0.9rem;
  opacity: 0.85;
}

.menu-section {
  margin-top: 5rem;
  text-align: center;
}

#no-credit-card{
  height: 150px;
  width: auto;
}

.menu-section h3 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  margin-bottom: 2rem;
  color: var(--accent);
}

.menu-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  padding: 0 1rem;
  justify-content: center;
}

.menu-item {
  background: var(--section);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding-bottom: 1.5rem;
  text-align: center;
  transition: transform 0.3s ease;
  display: grid;
  align-items: center;
  justify-content: center;
  height: auto;
}

.menu-item:hover {
  transform: translateY(-5px);
}

.menu-item h4 {
  color: var(--accent);
  font-size: 1.3rem;
  margin: 0;
  margin-top: 1rem;
  padding: 0;
}

.menu-item p {
  color: #ccc;
  margin-top: 0;
  margin-top: 0;
  margin-left: 5%;
  width: 90%;
}

.menu-item .price {
  font-weight: bold;
  color: #fff;
}

.menu-item .allergens {
  font-size: 0.9rem;
  color: #ffa726;
}

.menu-item img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  margin-top: 1rem;
}

.category-desc {
  font-size: 1.2rem;
  color: #ccc;
  margin-top: -1rem;
  margin-bottom: 1rem;
}

.category-sub-desc {
  font-size: 1rem;
  color: #aaa;
  margin-top: 2rem;
  font-style: italic;
}

.menu {
  margin-bottom: 5rem;
}


@media (max-width: 600px) {

  .menu-grid,
  .menu-items {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 1rem;
  }

  .menu-card,
  .menu-item {
    height: auto;
    padding: 1rem;
  }

  .menu-card h4,
  .menu-item h4 {
    margin: 0;
    padding: 0;
    font-size: 1.1rem;
  }

  .menu-card p,
  .menu-item p {
    font-size: 0.9rem;
  }


  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }
}

.navbar {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 1rem 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  position: sticky;
  width: 80%;
  border-radius: 15px;
  top: 0;
  z-index: 1000;
  display: flex;
  margin: 0 auto;
  justify-content: center;

}

.navbar ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.navbar a {
  color: var(--fg);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.navbar a:hover,
.navbar a.active {
  color: var(--accent);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

.burger {
  display: none;
  font-size: 2rem;
  cursor: pointer;
  color: var(--fg);
}

.call-now {
  display: none;
}

.speisekarte-header {
  display: none;
}

.call-now-header {
  display: inline-block;
  background: none;
  border: 2px solid var(--accent);
  color: var(--accent);
  padding: 1rem 1.5rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.call-now-header:hover {
  transform: translateY(-5px);
}


.banner {
  background: linear-gradient(90deg, #b22222, #e04a2f4d);
  color: #fff;
  text-align: center;
  padding: 12px 8px;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 1rem;
  border-radius: 10px;
  font-weight: 500;
}

.banner strong {
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-right: 6px;
}

@media (max-width: 600px) {
  .banner {
    font-size: 0.9rem;
    padding: 10px 6px;
  }
}