:root {
  --forest: #33503f;
  --forest-dark: #223a2d;
  --wood: #8a6242;
  --cream: #f7f3ea;
  --gold: #c9a15a;
  --text: #2c2c2c;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Nunito', sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
}

h1, h2 {
  font-family: 'Playfair Display', serif;
}

/* Header / Hero */
.hero {
  background: linear-gradient(rgba(34, 58, 45, 0.55), rgba(34, 58, 45, 0.55)),
              url("../images/background.jpg") center/cover no-repeat;
  color: white;
  min-height: 90vh;
  display: flex;
  flex-direction: column;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 600;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.8rem;
  cursor: pointer;
}

.hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
}

.hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.2rem;
  max-width: 40ch;
}

/* Sections */
.section {
  max-width: 900px;
  margin: 0 auto;
  padding: 1.5rem 1.5rem;
}

.section h2 {
  font-size: 2rem;
  color: var(--forest-dark);
  margin-bottom: 1.5rem;
  border-bottom: 3px solid var(--gold);
  display: inline-block;
  padding-bottom: 0.3rem;
}

.section p {
  margin-bottom: 1rem;
}

/* Ausstattung (aufklappbar) */
.ausstattung {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(34, 58, 45, 0.15);
}

.ausstattung summary {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--forest-dark);
  list-style: none;
}

.ausstattung summary::-webkit-details-marker {
  display: none;
}

.ausstattung .chevron {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  fill: none;
  stroke: var(--forest-dark);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.2s ease;
}

.ausstattung[open] .chevron {
  transform: rotate(180deg);
}

.ausstattung-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem 2rem;
  margin-top: 1.75rem;
}

.ausstattung-item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.ausstattung-item svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.ausstattung-item svg path,
.ausstattung-item svg circle,
.ausstattung-item svg rect,
.ausstattung-item svg line {
  fill: none;
  stroke: var(--forest-dark);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ausstattung-item svg .filled {
  fill: var(--forest-dark);
  stroke: none;
}

/* Photo gallery / slideshows */
.gallery-category {
  margin-top: 2.5rem;
}

.gallery-category h3 {
  font-family: 'Playfair Display', serif;
  color: var(--forest-dark);
  margin-bottom: 1rem;
}

.slideshow {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  overflow: hidden;
  background: var(--forest-dark);
}

.slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.slide.active {
  opacity: 1;
}

.slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 2.5rem 1.25rem 1rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
  color: white;
  font-weight: 600;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}

.slide-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.4);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.slide-btn:hover {
  background: rgba(0, 0, 0, 0.65);
}

.slide-btn.prev {
  left: 12px;
}

.slide-btn.next {
  right: 12px;
}

.slide-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.2s ease;
}

.dot.active {
  background: white;
}

/* Map */
#map {
  height: 400px;
  width: 100%;
  border-radius: 8px;
  margin-top: 1.5rem;
  border: 2px solid var(--forest);
}

.poi-marker {
  background: transparent;
  border: none;
}

.poi-marker span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid white;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
  font-size: 15px;
}

/* Contact */
.kontakt {
  text-align: center;
}

.kontakt-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  background: var(--forest);
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  transition: background 0.2s ease;
}

.btn:hover {
  background: var(--forest-dark);
}

.btn-buchen {
  background: var(--gold);
  color: var(--forest-dark);
}

.btn-buchen:hover {
  background: #b78e46;
}

/* Footer */
footer {
  text-align: center;
  padding: 2rem;
  background: var(--forest-dark);
  color: white;
  font-size: 0.9rem;
}

/* Mobile nav */
@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    right: 0;
    background: var(--forest-dark);
    flex-direction: column;
    gap: 0;
    width: 220px;
    display: none;
  }

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

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    padding: 1rem 1.5rem;
  }
}
