/* Allgemeine CSS-Resets */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Grundlegende Schrift-Einstellungen */
html {
  font-size: 16px; /* Standard, lässt sich gut skalieren */
  font-family: Arial, sans-serif;
  color: #333;     /* Textfarbe */
}

/* Body */
body {
  margin: 0;
  padding: 0;
}

.avatar {
  display: block;
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  margin: 20px auto;
}

/* Hintergrundbild für die Startseite */
body.startseite {
  background: url('bilder/titelbild.png') no-repeat center center fixed;
  background-size: cover;
  background-blend-mode: lighten;
  min-height: 100vh;
  height: 100dvh;
  display: flex;
  flex-direction: column;
  /*justify-content: space-between; */
}

/* Weißer Hintergrund für die Buchungsseite */
body.buchung-seite {
  background-color: #fff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Header */
header {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  position: relative;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.header-content {
  /*max-width: 1200px;*/
  margin: 0 auto;
  padding: 0.5rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center; /* Logo wird zentriert */
  position: relative;
}

/* Logo (zentriert) */
.logo img {
  height: 70px;
  width: auto;
}

/* Hamburger container */
.hamburger {
  /* place it absolutely in the header */
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);

  /* size of the entire hamburger icon area */
  width: 30px;
  height: 24px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 1001; /* ensure it stays above the sidebar */
}

/* The three lines */
.hamburger span {
  display: block;
  width: 100%;        /* same as .hamburger width */
  height: 2px;        /* line thickness */
  background-color: #333;
}


/* Sidebar-Navigation */
.sidebar {
  position: fixed;
  top: 0;
  width: 200px;
  right: -250px; /* Start außerhalb des Bildschirms */
  height: 100vh;
  background-color: #fff;
  box-shadow: -2px 0 5px rgba(0, 0, 0, 0.2);
  transition: right 0.3s ease;
  z-index: 1000; /* Menü hat niedrigere Z-Index als Hamburger-Icon */
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sidebar.active {
  right: 0; /* Wenn aktiv, rutscht ins Bild */
}

/* Links im Sidebar-Menü */
.sidebar ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  text-align: left;
  padding: 20px;
}

.sidebar li {
  margin: 1rem 0;
}

.sidebar a {
  text-decoration: none;
  color: #333;
  font-size: 1.2rem;
  transition: color 0.2s ease;
}

.sidebar a:hover {
  color: #666;
}

/* Buttons auf der Startseite unten zentriert */
.button-container {
  margin: 2rem auto;
  text-align: center;
  padding-bottom: 2rem; /* damit es nicht ganz an den Rand stößt */
}

.btn {
    display: inline-block;
    margin: 0.5rem;
    background-color: #ffffff;
    color: #000000 ;
    padding: 0.8rem;
    width: 250px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.start_text {
  line-height: 2.8rem;
  
}


.welcome-text {
  text-align: center;
  font-family: 'Aptos', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  color: #000000;
  font-size: 3.2rem;
  margin-top: 0rem;
  
}

.welcome-text-sub {
  text-align: center;
  font-family: 'Aptos', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  color: #000000;
  line-height: 1rem;
  font-size: 1.2rem;
  margin-top: 0rem;
}



.btn:hover {
  background-color: #333;
  color: #fff;
}

/* Allgemeine Text-Elemente (Überschriften, Absätze) */
h1, h2, h3, h4, h5, h6 {
  margin: 1rem 0;
  font-weight: 600;
}

p {
  margin: 0.5rem 0;
  line-height: 1.5;
}



/* Responsives Verhalten für kleinere Bildschirme */
@media (max-width: 600px) {
  .header-content {
    padding: 0.5rem;
  }
  .hamburger {
    right: 2rem;
  }
  .sidebar {
    
    right: -200px;
  }
}
