@font-face {
  font-family: 'Quicksand';
  src: url('/static/fonts/Quicksand-VariableFont_wght.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}

body {
  font-family: 'Quicksand', sans-serif;
  background-color: #ffffff;
  margin: 0;
  padding: 0;
  color: #333;
}

header {
  background-color: #312f38;
  padding: 20px 40px;
  text-align: left;
  display: flex;
  align-items: center;
}

header img {
  max-width: 120px;
  margin-right: 20px;
}

header h1 {
  color: #ffffff;
  font-size: 24px;
  margin: 0;
}

.main-content {
  background-color: #ffffff;
  padding: 40px 60px;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
  border: none;
}

button.btn, a.btn {
  display: inline-block;
  width: 100%;
  text-align: center;
  padding: 15px;
  font-size: 18px;
}

button.btn {
  border-radius: 10px;
}

a.btn {
  border-radius: 10px;
}

.btn-slot {
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  min-width: 250px;
}

.booked {
  background-color: #cccccc;
  color: #666666;
}

.available {
  background-color: #312f38;
  color: #ffffff;
}

.available:hover {
  background-color: #cccccc;
}

.btn-primary {
  background-color: #312f38;
  border-color: #312f38;
  color: #ffffff;
}

.btn-primary:hover, .btn-primary:focus {
  background-color: #444047;
  border-color: #444047;
  color: #ffffff;
}

.btn-secondary {
  background-color: #666666;
  border-color: #666666;
  color: #ffffff;
}

.btn-secondary:hover, .btn-secondary:focus {
  background-color: #888888;
  border-color: #888888;
  color: #ffffff;
}

input[type="checkbox"] {
  accent-color: #312f38;
  width: 18px;
  height: 18px;
  border-radius: 4px;
}

input[type="checkbox"]:hover {
  accent-color: #444047;
}

/* Geänderte und kommentierte Footer-Styles */
.footer {
  background-color: #312f38;
  padding: 60px; /* Reduziertes Padding von 360px auf 60px */
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  color: #ffffff;
  flex-wrap: wrap;
}

.footer-left, .footer-right {
  flex-basis: 45%; /* Gibt beiden Elementen etwa die gleiche Breite */
  max-width: 45%; /* Verhindert, dass sie zu breit werden */
}

.footer-left {
  display: flex; /* Flexbox für nebeneinander Anordnung */
  margin-right: 5%; /* Abstand zwischen linkem und rechtem Bereich */
}

.footer-logo {
  margin-bottom: 20px; /* Abstand zwischen Logo und Text */
  padding: 0 20px 0 0; /* Abstand rechts vom Logo */
}

.footer-logo img {
  max-width: 80px;
}

.footer-text p {
  margin: 0;
  color: #ffffff;
}

.footer-right {
  text-align: right; /* Rechtsbündige Ausrichtung für rechte Seite */
}

.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0; /* Abstand nach unten für "Back to Top" Link */
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end; /* Rechtsausrichtung der Menüpunkte */
  gap: 15px;
}

.footer-menu li {
  margin: 0;
}

.footer-menu a {
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
}

.footer-menu a:hover {
  color: #aaaaaa;
}

.back-to-top {
  display: block;
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
}

.back-to-top:hover {
  color: #aaaaaa;
}

/* Angepasste Media Queries für responsive Design */
@media (max-width: 768px) {
  .footer {
    padding: 40px; /* Noch weiter reduziertes Padding für mobile Ansicht */
    flex-direction: column;
  }
  
  .footer-left, .footer-right {
    flex-basis: 100%;
    max-width: 100%;
    margin-right: 0;
    margin-bottom: 30px;
  }
  
  .footer-right {
    text-align: left; /* Linksausrichtung auf mobilen Geräten */
  }
  
  .footer-menu {
    justify-content: flex-start; /* Linksausrichtung der Menüpunkte auf mobilen Geräten */
  }
}

h2 {
  margin-bottom: 40px;
  text-align: center;
  font-weight: bold; 
}

h3 {
  margin-bottom: 30px;
  text-align: center;
}

.card {
  margin-bottom: 30px;
}

.list-group-item {
  border: none;
}

.no-border {
  border: none;
}

.navbar {
  background-color: #312f38;
}

.navbar-brand img {
  max-height: 50px;
}

.navbar-nav .nav-link {
  color: #ffffff;
}

.navbar-nav .nav-link:hover {
  color: #aaaaaa;
}