@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&family=Source+Sans+3:wght@300;400;600&display=swap');

:root {
  --forest: #2C4A2E;
  --forest-dark: #1a2e1b;
  --wood: #8B5E3C;
  --wood-light: #C4924A;
  --bark: #5C3D1E;
  --cream: #F5F0E8;
  --sand: #E8DCC8;
  --white: #FDFBF7;
  --text: #1E1A16;
  --text-light: #5A4F44;
  --accent: #C4924A;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Source Sans 3', sans-serif;
  background-color: var(--white);
  color: var(--text);
  line-height: 1.7;
}

/* ─── NAVIGATION ─── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(28, 40, 20, 0.95);
  backdrop-filter: blur(8px);
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  border-bottom: 2px solid var(--wood-light);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.nav-logo .logo-icon {
  width: 36px;
  height: 36px;
  fill: var(--wood-light);
}

.nav-logo span {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--cream);
  font-weight: 700;
  line-height: 1.2;
}

.nav-logo span em {
  display: block;
  font-style: normal;
  font-size: 0.7rem;
  color: var(--wood-light);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 300;
}

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

.nav-links a {
  color: var(--sand);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.5rem 0.9rem;
  border-radius: 3px;
  transition: all 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  background: var(--wood-light);
  color: var(--forest-dark);
}

.nav-cta {
  background: var(--wood-light) !important;
  color: var(--forest-dark) !important;
  font-weight: 600 !important;
  padding: 0.5rem 1.2rem !important;
  border-radius: 3px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  transition: all 0.3s;
}

/* ─── HERO ─── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/aerial.webp');
  background-size: cover;
  background-position: center 40%;
  filter: brightness(0.55);
  transform: scale(1.05);
  animation: subtle-zoom 20s ease-in-out infinite alternate;
}

@keyframes subtle-zoom {
  from { transform: scale(1.05); }
  to { transform: scale(1.12); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(28,40,20,0.5) 0%, rgba(92,61,30,0.3) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 4rem;
  max-width: 800px;
  animation: hero-enter 1.2s ease-out forwards;
}

@keyframes hero-enter {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-badge {
  display: inline-block;
  background: var(--wood-light);
  color: var(--forest-dark);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  color: var(--white);
  line-height: 1.1;
  font-weight: 900;
  margin-bottom: 0.5rem;
}

.hero h1 span {
  color: var(--wood-light);
  display: block;
}

.hero-sub {
  font-size: 1.2rem;
  color: var(--sand);
  margin-bottom: 2.5rem;
  font-weight: 300;
  max-width: 500px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--wood-light);
  color: var(--forest-dark);
  padding: 0.9rem 2rem;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  display: inline-block;
}

.btn-primary:hover {
  background: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--cream);
  padding: 0.9rem 2rem;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid rgba(245,240,232,0.5);
  cursor: pointer;
  transition: all 0.25s;
  display: inline-block;
}

.btn-secondary:hover {
  border-color: var(--cream);
  background: rgba(245,240,232,0.1);
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--sand);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: bounce 2s ease-in-out infinite;
}

.hero-scroll::after {
  content: '';
  width: 1px;
  height: 40px;
  background: var(--wood-light);
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ─── SECTIONS ─── */
section {
  padding: 5rem 2rem;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--wood-light);
  margin-bottom: 0.75rem;
}

h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--forest-dark);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

/* ─── STATS BAR ─── */
.stats-bar {
  background: var(--forest-dark);
  padding: 3rem 2rem;
}

.stats-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: var(--wood-light);
  font-weight: 900;
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--sand);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.4rem;
}

/* ─── ABOUT / LEISTUNGEN ─── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-img {
  position: relative;
}

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

.about-img::before {
  content: '';
  position: absolute;
  top: -12px;
  left: -12px;
  right: 12px;
  bottom: 12px;
  border: 3px solid var(--wood-light);
  z-index: -1;
}

.about-text p {
  color: var(--text-light);
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

.leistungen-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.leistung-card {
  background: var(--cream);
  padding: 2rem;
  border-bottom: 3px solid var(--wood-light);
  transition: all 0.3s;
}

.leistung-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.leistung-icon {
  width: 48px;
  height: 48px;
  fill: var(--wood-light);
  margin-bottom: 1rem;
}

.leistung-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--forest-dark);
  margin-bottom: 0.75rem;
}

.leistung-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ─── GALLERY STRIP ─── */
.gallery-strip {
  background: var(--forest);
  padding: 4rem 2rem;
}

.gallery-strip .section-label,
.gallery-strip h2 {
  color: var(--cream);
  text-align: center;
}

.gallery-strip h2 { margin-bottom: 2.5rem; }

.gallery-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
}

.gallery-two img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-two img:hover {
  transform: scale(1.02);
}

/* ─── FAQ ─── */
.faq-section { background: var(--white); }

.faq-list {
  margin-top: 2.5rem;
  max-width: 800px;
}

.faq-item {
  border-bottom: 1px solid var(--sand);
  padding: 0 0;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1.25rem 0;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--forest-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--wood-light);
  font-weight: 300;
  flex-shrink: 0;
  transition: transform 0.25s;
}

.faq-item.open .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding-bottom: 1.25rem;
}

/* ─── KONTAKT ─── */
.kontakt-section {
  background: var(--forest-dark);
  padding: 5rem 2rem;
}

.kontakt-section .section-label { color: var(--wood-light); }
.kontakt-section h2 { color: var(--cream); }

.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 2.5rem;
}

.kontakt-info p {
  color: var(--sand);
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
}

.kontakt-info strong {
  color: var(--wood-light);
}

.kontakt-divider {
  width: 48px;
  height: 2px;
  background: var(--wood-light);
  margin: 1.5rem 0;
}

.map-embed {
  border: 0;
  width: 100%;
  height: 280px;
  filter: grayscale(30%) contrast(1.1);
}

/* ─── PAGE HERO (Unterseiten) ─── */
.page-hero {
  background: var(--forest-dark);
  padding: 9rem 2rem 4rem;
  text-align: center;
  border-bottom: 3px solid var(--wood-light);
}

.page-hero .section-label { justify-content: center; display: flex; }
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--cream);
  margin-top: 0.5rem;
}

/* ─── IMPRESSUM / DATENSCHUTZ ─── */
.prose-section {
  padding: 5rem 2rem;
  background: var(--white);
}

.prose-section .container {
  max-width: 800px;
}

.prose-section h2 {
  font-size: 1.6rem;
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
}

.prose-section p {
  color: var(--text-light);
  margin-bottom: 1rem;
}

.prose-section a {
  color: var(--wood);
  text-decoration: underline;
}

/* ─── FOOTER ─── */
footer {
  background: #111;
  color: var(--sand);
  padding: 3rem 2rem 1.5rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #333;
  margin-bottom: 1.5rem;
}

.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--cream);
  margin-bottom: 0.75rem;
}

.footer-tagline {
  font-size: 0.85rem;
  color: #888;
  line-height: 1.6;
}

.footer-col h4 {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--wood-light);
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.5rem;
}

.footer-col ul a {
  color: #888;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s;
}

.footer-col ul a:hover {
  color: var(--sand);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: #666;
}

.footer-bottom a {
  color: #888;
  text-decoration: none;
}

.footer-bottom a:hover { color: var(--sand); }

/* ─── ÜBER UNS ─── */
.team-section {
  background: var(--cream);
  padding: 5rem 2rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.value-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: var(--white);
  border-top: 4px solid var(--wood-light);
}

.value-num {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  color: var(--sand);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.value-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--forest-dark);
  margin-bottom: 0.75rem;
}

.value-card p {
  font-size: 0.875rem;
  color: var(--text-light);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero-content { padding: 0 1.5rem; }

  .about-grid,
  .kontakt-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .leistungen-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-two {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  section { padding: 3.5rem 1.5rem; }
}
