/* RESET / BASIS */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #f5f5f5;
  color: #222;
  line-height: 1.5;
}

img {
  max-width: 100%;
  border-radius: 6px;
  display: block;
}

a {
  color: #0066cc;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

ul {
  padding-left: 18px;
}

/* CONTAINER */
.container {
  width: 94%;
  max-width: 1160px;
  margin: 0 auto;
}

/* TOPBAR */
.topbar {
  background: #111;
  color: #fff;
  padding: 6px 0;
  font-size: 13px;
}

.topbar a {
  color: #fff;
}

.topbar-inner {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

@media (min-width: 600px) {
  .topbar-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

/* HEADER */
#main-header {
  background: #fff;
  border-bottom: 1px solid #ddd;
  padding: 10px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* BRAND */
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: inherit;
}

.brand:hover {
  text-decoration: none;
}

.logo {
  width: 52px;
  height: auto;
  border-radius: 4px;
}

.brand-name {
  font-size: 18px;
  font-weight: bold;
}

.brand-sub {
  font-size: 13px;
  opacity: 0.75;
}

/* NAVIGATION */
.nav {
  position: relative;
}

.burger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  background: none;
  border: none;
  padding: 6px 8px;
  cursor: pointer;
}

.nav-links {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 110%;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 0 0 8px 8px;
  flex-direction: column;
  padding: 10px 14px;
  gap: 8px;
}

.nav-links a {
  padding: 8px 4px;
  font-size: 15px;
}

.nav-links.show {
  display: flex;
}

/* DESKTOP NAV */
@media (min-width: 768px) {
  .burger {
    display: none;
  }

  .nav-links {
    position: static;
    display: flex;
    flex-direction: row;
    border: none;
    border-radius: 0;
    background: transparent;
    padding: 0;
    gap: 16px;
  }

  .nav-links a {
    padding: 4px 0;
    font-size: 15px;
  }

  .nav-links a:hover {
    text-decoration: underline;
  }
}

/* HERO */
.hero {
  position: relative;
  height: 60vh;
  min-height: 360px;
  overflow: hidden;
}

/* Slides */
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding-top: 80px;
}

.hero-content h1 {
  font-size: 26px;
  margin-bottom: 8px;
}

.hero-content p {
  font-size: 15px;
  max-width: 380px;
}

/* Hero buttons */
.hero-buttons {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.btn-primary,
.btn-light {
  display: inline-block;
  text-align: center;
  padding: 10px 16px;
  border-radius: 6px;
  font-weight: bold;
  border: none;
}

.btn-primary {
  background: #d4af37;
  color: #000;
}

.btn-light {
  background: #fff;
  color: #000;
}

/* Buttons Desktop */
@media (min-width: 600px) {
  .hero-content {
    padding-top: 100px;
  }

  .hero-content h1 {
    font-size: 32px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .hero-buttons {
    flex-direction: row;
    gap: 12px;
  }

  .btn-primary,
  .btn-light {
    width: auto;
  }
}

/* SECTIONS */
.section {
  padding: 32px 0;
}

.section.alt {
  background: #eee;
}

.section h2 {
  font-size: 24px;
  margin-bottom: 10px;
}

.lead {
  opacity: 0.9;
  margin-bottom: 16px;
}

/* Desktop spacing */
@media (min-width: 768px) {
  .section {
    padding: 56px 0;
  }

  .section h2 {
    font-size: 30px;
    margin-bottom: 12px;
  }

  .lead {
    margin-bottom: 22px;
  }
}

/* GRID 2 */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
}

/* CARDS */
.card,
.room-card {
  background: #fff;
  padding: 16px;
  border-radius: 6px;
}

.card h3,
.room-card h3 {
  margin-bottom: 8px;
  font-size: 18px;
}

/* Room cards */
.room-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.room-card img {
  width: 100%;
}

/* GALLERY (Startseite & Zimmerseite) */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 10px;
}

@media (min-width: 600px) {
  .gallery {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }
}

/* MAP */
.map iframe {
  width: 100%;
  height: 320px;
  border: 0;
}

@media (min-width: 768px) {
  .map iframe {
    height: 360px;
  }
}

/* FOOTER */
.footer {
  background: #111;
  color: #fff;
  padding: 16px 0 70px; /* Platz für FAB auf Mobil */
  font-size: 13px;
}

.footer a {
  color: #fff;
}

.footer .container {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-start;
}

@media (min-width: 600px) {
  .footer .container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

/* FLOATING CALL BUTTON */
.fab {
  position: fixed;
  bottom: 14px;
  right: 14px;
  background: #d4af37;
  color: #000;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: bold;
  font-size: 14px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 1500;
}

@media (min-width: 768px) {
  .fab {
    bottom: 20px;
    right: 20px;
    padding: 12px 22px;
    font-size: 15px;
  }
}

/* DATENSCHUTZ / IMPRESSUM SIMPLE SECTIONS
   (verwenden die gleiche .section / .container Struktur) */
.section h1 {
  font-size: 24px;
  margin-bottom: 12px;
}

@media (min-width: 768px) {
  .section h1 {
    font-size: 30px;
  }
}

/* KLEINE TWEAKS FÜR ZIMMERSEITE
   (nutzt dieselben Klassen wie Startseite) */
#zimmer h1,
#zimmer h2 {
  margin-bottom: 12px;
}
