/* ===================== BASE ===================== */

html {
  background-color: #FEEBC9;
}

body {
  margin: 0;
  font-family: 'IBM Plex Serif', serif;
}

h1, h2, h3, p { 
  font-weight: normal;
  margin: 0;
  padding: 0;
}

a {
  color: #000;
  text-decoration: none;
}
/* ===================== TOPBAR ===================== */

.topbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 1rem 0;
  background: transparent;
  text-align: center;
  z-index: 1000;
  font-weight: 400;
  background-color: rgba(0, 0, 0, 0.85);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.topbar nav {
  display: flex;
  justify-content: center;
  align-items: center;
}

.topbar ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex; /* horizontale Anordnung */
  gap: 2rem;
}

.topbar li {
  font-size: 1.25rem;
}

.topbar li a {
  text-decoration: none;
  color: #FEEBC9;
  transition: color 0.3s ease;
}

.topbar.scrolled li a {
  color: #fcd7a8;
}

.mobile-menu {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 1100;
  display: none; /* sichtbar über Media Query */
}

.burger {
  font-size: 2rem;
  border: 1px solid grey;
  background-color: #CDC9A2;
  color: black;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  cursor: pointer;
}

/* Slide-In Navigation */
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  background: #CDC9A2;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  transform: translateX(-100%);
  transition: transform 0.4s ease-in-out;
  z-index: 1200;
}

/* Aktivierter Zustand */
.mobile-nav.open {
  transform: translateX(0);
}

/* Schließen-Button */
.close-btn {
  background: transparent;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: black;
  margin-bottom: 2rem;
}

/* Navigation Links */
.mobile-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-nav a {
  color: black;
  text-decoration: none;
  font-size: 1.5rem;
}
/*===================== PACKAGES HEADER ===================== */
.packages {
  text-align: center;
  padding-top: 5rem;
  padding-bottom: 1rem;
}

.packages h1 {
  font-size: 3.5rem;
  margin-bottom: 0.5rem;
}

.packages-underline {
  width: 700px; /* anpassbar */
  height: auto;
  display: block;
  margin: 0 auto;
}
/*===================== SHARED ROOM – PACKAGE =====================*/
.shared-room-package {
  padding: 5vw 2vw;
  text-align: center;
}

/* Überschrift + Bild */
.header-with-image {
  position: relative;       /* notwendig für das absolute Positionieren des Bildes */
  display: inline-block;    /* damit margin auto wirkt und Inhalt zentriert */
  margin: 0 auto 2rem;      /* zentrieren und Abstand nach unten */
  text-align: center;       /* Überschrift in der Mitte */
}

.header-with-image h2 {
  margin: 0;                /* Standard-Rand entfernen */
  font-size: 2.5rem;
  font-weight: normal;
  color: #000;
  line-height: 1.2;
  padding-bottom: 5rem;
}

.header-with-image .header-image {
  position: absolute;
  top: 75px;               /* Bild 30px über der Überschrift */
  right: -250px;             /* Bild 40px rechts vom Ende der Überschrift */
  width: 400px;             /* gewünschte Breite */
  height: auto;
}


/* List-Styling */
.shared-room-list {
  list-style: disc outside;
  padding-left: 2rem;
  margin: 0 auto 2rem;     /* zentriert + Abstand darunter */
  max-width: 600px;
  text-align: left;
}
.shared-room-list li {
  padding: 0.5rem 0;
  font-size: 1.125rem;
  color: #000;
}

/* Preis & Button unter Shared Room – Package */
.package-price {
  text-align: center;       /* Preis zentrieren */
  margin: 2rem auto 0;
}
.package-price p {
  font-size: 2rem;
  font-weight: normal;
  color: black;
  margin: 0 0 1rem;
}

/* Wrapper für Button + Icon */
.button-wrapper {
  position: relative;
  display: inline-block;    /* sorgt dafür, dass margin auto ihn zentriert */
  margin: 0 auto;           /* zentriert den Wrapper (und somit den Button) */
}

/* Button zentriert im Wrapper */
.btn-book-now {
  font-family: 'IBM Plex Serif', serif;
  background-color: #CDC9A2;
  color: #000;
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: 30px;
  font-size: 2rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: block;           /* Vollbreite des Wrappers */
}

/* Icon absolut relativ zum Button ausrichten */
.button-image {
  position: absolute;
  left: 100%;               /* direkt rechts am Button */
  top: 50%;
  transform: translate(0, -50%); /* vertikal mittig am Button */
  max-width: 250px;
  height: auto;
  margin-left: -30rem;        /* Abstand zwischen Button und Icon */
}

.btn-book-now:hover {
  background-color: #e4e1cf;
}

/*===================== SINGLE ROOM – PACKAGE 2 =====================*/
.single-room-package2 {
  padding: 5vw 2vw;
  text-align: center;
  background-color: #CDC9A2;
}

/* Überschrift + Bild */
.header-with-image2 {
  position: relative;       /* notwendig für das absolute Positionieren des Bildes */
  display: inline-block;    /* damit margin auto wirkt und Inhalt zentriert */
  margin: 0 auto 2rem;      /* zentrieren und Abstand nach unten */
  text-align: center;       /* Überschrift in der Mitte */
}

.header-with-image2 h2 {
  margin: 0;                /* Standard-Rand entfernen */
  font-size: 2.5rem;
  font-weight: normal;
  color: #000;
  line-height: 1.2;
  padding-bottom: 5rem;
}

.header-with-image2 .header-image2 {
  position: absolute;
  top: 50px;               /* Bild 30px über der Überschrift */
  right: 350px;             /* Bild 40px rechts vom Ende der Überschrift */
  width: 250px;             /* gewünschte Breite */
  height: auto;
}

/* Wrapper für Liste + Bild 2 */
.single-room-content2 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}
.single-room-list2 {
  list-style: disc outside;
  padding-left: 2rem;
  margin: 0 auto 2rem;
  max-width: 600px;
  text-align: left;
}
.single-room-list2 li {
  padding: 0.5rem 0;
  font-size: 1.125rem;
  color: #000;
}
.list-image2 {
  max-width: 200px;
  height: auto;
}

/* Preis & Book‑now Button 2 */
.package-price2 {
  text-align: center;
  margin: 2rem auto 0;
}
.package-price2 p {
  font-size: 2rem;
  font-weight: normal;
  color: black;
  margin: 0 0 1rem;
}
/* Button-Wrapper 2 */
.button-wrapper2 {
  position: relative;
  display: inline-block;
  margin: 0 auto;
}
.btn-book-now2 {
   font-family: 'IBM Plex Serif', serif;
  background-color: #FEEBC9;
  color: #000;
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: 30px;
  font-size: 2rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: block;           /* Vollbreite des Wrappers */
}
.btn-book-now2:hover {
  background-color: #e4e1cf;
}
.button-image2 {
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translate(0, -80%);
  max-width: 500px;
  height: auto;
  margin-left: 1rem;
}
/*===================== DOUBLE ROOM – PACKAGE 3 =====================*/
.double-room-package3 {
  padding: 5vw 2vw;
  text-align: center;  /* zentriert alle inline-block Elemente darunter */
  margin-bottom: 5vw;
}

/* Überschrift + Bild 3 */
.header-with-image3 {
  position: relative;    /* für absolute Positionierung des Bilds */
  display: inline-block; /* Wrapper shrink-to-fit, zentriert durch parent text-align */
  margin-bottom: 1.5rem; 
  text-align: center;    /* stellt sicher, dass das H2 zentriert bleibt */
}
.header-with-image3 h2 {
  margin: 0;
  margin-bottom: 5rem;
  font-size: 2.5rem;
  font-weight: normal;
  color: #000;
}
.header-image3 {
  position: absolute;
  top: 200px;            /* Bild 20px über der Überschrift */
  right: 600px;         /* Bild 100px rechts vom Wrapper */
  max-width: 200px;      /* Breite des Bilds */
  height: auto;
}

/* List-Styling 3 */
.double-room-list3 {
  list-style: disc outside;
  padding-left: 2rem;
  margin: 0 auto 2rem;
  max-width: 600px;
  text-align: left;
}
.double-room-list3 li {
  padding: 0.5rem 0;
  font-size: 1.125rem;
  color: #000;
}

/* Preis & Button 3 */
.package-price3 {
  text-align: center;  
  margin: 2rem auto 0;
}
.package-price3 p {
  font-size: 2rem;
  font-weight: normal;
  color: #000;
  margin: 0 0 1rem;
}

/* Wrapper für Button + Icons 3 */
.button-wrapper3 {
  position: relative;    /* Icons absolut relativ zu diesem Wrapper */
  display: inline-block; /* Wrapper shrink-to-fit, zentriert durch parent text-align */
}

/* Book now Button 3 */
.btn-book-now3 {
  display: inline-block; /* Button selbst wird shrink-to-fit */
  font-family: 'IBM Plex Serif', serif;
  background-color: #CDC9A2;
  color: #000;
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: 30px;
  font-size: 2rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.btn-book-now3:hover {
  background-color: #e4e1cf;
}

/* Icons absolut positionieren 3 */
/* erst Icon links vom Button */
.button-image3a {
  position: absolute;
  top: 0%;
  left: 250px;
  transform: translateY(-50%);
  max-width: 400px;
  height: auto;
}
/* zweites Icon rechts vom Button */
.button-image3b {
  position: absolute;
  top: 200%;
  left: calc(0%); /* Button-Breite + 60px Abstand */
  transform: translateY(-50%);
  max-width: 250px;
  height: auto;
}
/* ===================== FOOTER ===================== */

footer {
 
  background-color: #000;
  text-align: center;
  padding: 2rem 0;
}

footer p {
 color: #CDC9A2; 
 font-family:'IBM Plex Serif', sans-serif ;
}

footer img {
height: 150px;
}

/* ===================== MOBILE & TABLET @ <=1024px ===================== */
@media (max-width: 1024px) {

  /* Navigation umschalten */
  .mobile-menu { display: block; }
  .topbar { display: none; }

  /* PACKAGES-HEADER */
  .packages h1 {
    font-size: 2.5rem;
  }
  .packages-underline {
    width: 300px;
  }

  /* SHARED ROOM – PACKAGE */
  .shared-room-package {
    padding: 5vw 2vw;
  }
  .header-with-image {
    position: static;
    display: block;
    text-align: center;
    margin-bottom: 1rem;
  }
  .header-with-image .header-image {
    position: static;
    width: 250px;
    margin: 0.5rem auto;
  }
  .shared-room-list {
    padding-left: 1.5rem;
    margin: 0 auto 1.5rem;
  }
  .button-wrapper {
    position: static;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    margin: 1rem auto;
  }
  .button-image {
    display: none;
  }

  /* SINGLE ROOM – PACKAGE 2 */
  .single-room-package2 {
    padding: 5vw 2vw;
  }
  .header-with-image2 {
    position: static;
    display: block;
    text-align: center;
    margin-bottom: 1rem;
  }
  .header-with-image2 .header-image2 {
    position: static;
    width: 150px;
    margin: 0.5rem auto;
  }
  .single-room-content2 {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .single-room-list2 {
    padding-left: 1.5rem;
    margin: 0 auto 1.5rem;
  }
  .button-wrapper2 {
    position: static;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    margin: 1rem auto;
  }
  .button-image2 {
 display: none;
  }

  /* DOUBLE ROOM – PACKAGE 3 */
  .double-room-package3 {
    padding: 5vw 2vw;
    margin-bottom: 5vw;
  }
  .header-with-image3 {
    position: static;
    display: block;
    text-align: center;
    margin-bottom: 1rem;
  }
  .header-image3 {
    position: static;
    width: 100px;
    margin: 0.5rem auto;
  }
  .double-room-list3 {
    padding-left: 1.5rem;
    margin: 0 auto 1.5rem;
  }
  .button-wrapper3 {
    position: static;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    margin: 1rem auto;
  }
  .button-image3a,
  .button-image3b {
 display: none;
  }
}
/* ===== Landscape Mobile: volle Menü‑Scrollbarkeit ===== */
@media screen and (max-width: 768px) and (orientation: landscape) {
  /* mobile-nav selbst nimmt 100 % Höhe und wird scroll‑bar */
  .mobile-nav {
    max-height: 100vh;
    overflow-y: auto;
  }
  /* etwas kleinere Schrift, damit mehr Platz pro Eintrag bleibt */
  .mobile-nav a {
    font-size: 1.25rem;
    padding: 0.75rem 0;
  }
}