@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@400;700&family=Poppins:wght@400;600&display=swap');

/* === GRUNDLAYOUT === */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #fffaf5;
  color: #2b2b2b;
  line-height: 1.6;
}

/* === HEADER === */
header {
  background: #9e0b0f;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 1.5rem;
  border-bottom: 4px solid #d4af37;
  flex-wrap: wrap; /* Für schmale Screens */
}

header .title-group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

header img.logo {
  height: 60px;
  width: auto;
  margin-right: 1rem;
  background: rgba(255,255,255,0.85);
  border-radius: 10px;
  padding: 4px;
}



header h1 {
  font-family: 'Merriweather', serif;
  font-size: 1.6rem;
  margin: 0;
  letter-spacing: 0.5px;
  line-height: 1.2;
}

/* === NAVIGATION === */
nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 0.3rem;
}

nav a {
  color: #fff;
  text-decoration: none;
  margin: 0.3rem 0.8rem;
  font-weight: 500;
  transition: color 0.3s;
}

nav a:hover,
nav a.active {
  color: #d4af37;
}

/* === HERO-BEREICH === */
.hero {
  background: linear-gradient(rgba(158,11,15,0.85), rgba(158,11,15,0.85)),
              url('../img/header.jpg') center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 6rem 1rem;
  position: relative;
}

.hero h2 {
  font-family: 'Merriweather', serif;
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}

.hero p {
  max-width: 700px;
  margin: 0 auto 1.5rem auto;
  font-size: 1.1rem;
}

/* === BUTTONS === */
.gold-button,
.buchung-btn {
  background: #d4af37;
  color: #9e0b0f !important;
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 3px 6px rgba(0,0,0,0.1);
  display: inline-block;
}

.gold-button:hover,
.buchung-btn:hover {
  background: #c09a2f;
  transform: translateY(-2px);
}

/* === BUCHUNGSSLOTS === */
.slot {
  display: inline-block;
  width: 110px;
  margin: 8px;
  padding: 12px;
  text-align: center;
  border-radius: 8px;
  color: #fff;
  cursor: pointer;
  font-weight: 500;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

.slot.frei {
  background: #4CAF50;
}

.slot.belegt {
  background: #9e0b0f;
  cursor: not-allowed;
}

.slot:hover.frei {
  background: #45a049;
  transform: scale(1.05);
}

/* === FOOTER === */
footer {
  background: #6e3b1e;
  color: #fff;
  text-align: center;
  padding: 1rem;
  border-top: 4px solid #d4af37;
  margin-top: 3rem;
  font-size: 0.9rem;
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 900px) {
  header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  header .title-group {
    flex-direction: column;
  }

  header img.logo {
    height: 55px;
    margin: 0 0 0.4rem 0;
  }

  header h1 {
    font-size: 1.4rem;
  }

  nav {
    margin-top: 0.6rem;
  }

  nav a {
    margin: 0.3rem 0.6rem;
    font-size: 0.95rem;
  }

  .hero {
    padding: 4rem 1rem;
  }

  .hero h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 600px) {
  header img.logo {
    height: 45px;
  }

  header h1 {
    font-size: 1.2rem;
  }

  .hero {
    padding: 3rem 1rem;
  }

  .hero h2 {
    font-size: 1.6rem;
  }

  .hero p {
    font-size: 1rem;
  }
}
