/* Grundlegendes Styling */
body {
  background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)),
              url("Bilder/pexels-pixabay-326333.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

/* Header */
header {
  background: url("Bilder/flammen-header.gif") center center no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

header h1 {
  font-size: 2em;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
  letter-spacing: 2px;
}

/* Navigation */
nav {
  margin-top: 0.5em;
}

nav a {
  margin: 0 1em;
  color: #fff8f0;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

nav a:hover {
  color: #ffe5b4;
}

/* Sections */
section {
  background: rgba(255, 255, 255, 0.85);
  border-radius: 12px;
  margin: 2em auto;
  padding: 2em;
  color: #222;
}

section h2 {
  color: #e53935;
  font-size: 1.8em;
  margin-bottom: 0.5em;
  border-left: 6px solid #ff7043;
  padding-left: 0.5em;
}

/* Menü-Liste */
#menu ul {
  list-style: none;
  padding: 0;
}

#menu li {
  background: #ffe0b2;
  padding: 1em;
  margin: 0.5em 0;
  border-left: 6px solid #ff6f00;
  font-weight: bold;
  box-shadow: 2px 2px 6px rgba(0,0,0,0.1);
}

/* === Slider === */
#slider {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 80vh; /* Große, auffällige Bannerhöhe */
  max-height: 700px;
}

.slider-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.65);
}

.slider-wrapper {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 300%; /* Anzahl der Slides */
  height: 100%;
}

.slide {
  flex: 1 0 100%;
  position: relative;
  height: 100%;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.65);
}

.slide-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  z-index: 2;
  padding: 1em;
}

.slide-content h3 {
  font-size: 2.5rem;
  margin-bottom: 1em;
  text-shadow: 0 0 10px black;
}

.order-btn {
  padding: 1em 2em;
  font-size: 1.2rem;
  background: #ff5722;
  color: white;
  border: none;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.3s, transform 0.2s;
}

.order-btn:hover {
  background: #e64a19;
  transform: scale(1.05);
}

.slider-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  z-index: 3;
}

.slider-nav button {
  background: rgba(0, 0, 0, 0.4);
  color: white;
  border: none;
  font-size: 2em;
  padding: 0.4em 0.6em;
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.3s;
}

.slider-nav button:hover {
  background: rgba(0, 0, 0, 0.8);
}

/* Responsive Anpassung */
@media (max-width: 768px) {
  #slider {
    height: 60vh;
  }

  .slide-content h3 {
    font-size: 1.6rem;
  }

  .order-btn {
    font-size: 1rem;
    padding: 0.8em 1.5em;
  }
}

@media (max-width: 480px) {
  #slider {
    height: 50vh;
  }

  .slide-content h3 {
    font-size: 1.3rem;
  }

  .order-btn {
    font-size: 0.9rem;
    padding: 0.6em 1em;
  }
}

/* Pickup */
#pickup {
  background: #fff3e0;
  border-top: 3px solid #ff9800;
  border-bottom: 3px solid #ff9800;
}

#pickup h2 {
  color: #fb8c00;
}

select {
  padding: 0.6em;
  border: 2px solid #ffb74d;
  border-radius: 6px;
  background: #fffaf5;
}

/* Formular */
form {
  background: rgba(255, 250, 240, 0.9);
  padding: 2em;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(4px);
}

input, textarea {
  padding: 0.8em;
  border: 2px solid #ff7043;
  border-radius: 8px;
  background: #fffaf7;
}

input:focus, textarea:focus {
  outline: none;
  border-color: #e64a19;
  box-shadow: 0 0 8px #ff8a65;
}

/* Button */
button {
  background: linear-gradient(to right, #ff6f00, #e53935);
  color: white;
  border: none;
  padding: 0.9em;
  border-radius: 8px;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

button:hover {
  background: linear-gradient(to right, #ff8f00, #d32f2f);
  transform: scale(1.05);
}

/* Footer */
.footer {
  background: linear-gradient(to top, #ff5722, #ff8a65);
  color: white;
  padding: 2em 1em;
  margin-top: 3em;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 2em;
  max-width: 1000px;
  margin: auto;
}

.footer-info h3,
.footer-social h4 {
  margin-bottom: 0.5em;
  font-size: 1.3em;
}

.footer-info p,
.footer-seo p {
  margin: 0.3em 0;
  font-size: 0.95em;
}

.footer-social a {
  margin-right: 1em;
  font-size: 1.5em;
  color: white;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-social a:hover {
  color: #ffe0b2;
}

.footer-seo a {
  color: white;
  text-decoration: underline;
}

.footer-location {
  background: rgba(0,0,0,0.1);
  padding: 1em;
  border-radius: 10px;
  margin-top: 1em;
}

@media (min-width: 768px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}

/* Mobile Navigation */
@media (max-width: 600px) {
  nav a {
    display: block;
    margin: 0.5em 0;
  }
}