@font-face {
  font-family: 'GT Alpina';
  src: url('/fonts/GT-Alpina-Standard-Regular.woff2') format('woff2'),
       url('/fonts/GT-Alpina-Standard-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'GT Alpina';
  src: url('/fonts/GT-Alpina-Standard-Regular-Italic.woff2') format('woff2'),
       url('/fonts/GT-Alpina-Standard-Regular-Italic.woff') format('woff');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'GT Alpina Typewriter';
  src: url('/fonts/GT-Alpina-Typewriter-Regular.woff2') format('woff2'),
       url('/fonts/GT-Alpina-Typewriter-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --green: #A2CB71;
  --green-dark: #7DAD52;
  --green-light: #C7E4AA;
  --green-section: #C7E4AA;
  --blue: #5B9BD5;
  --blue-light: #7ab3e0;
  --text: #1A1A1A;
  --white: #FFFFFF;
  --bg-light: #f4f3ef;
  --salbei: #A2CB71;
  --hellblau: #2dafe6;
  --tiefblau: #0756C2;
  --aubergine: #5E1A3B;
  --gelb: #d9b44a;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'GT Alpina', Georgia, serif;
  color: var(--text);
  line-height: 1.7;
  background: var(--white);
}

img {
  display: block;
  width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ===== NAVIGATION ===== */
nav {
  background: var(--green);
  padding: 14px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-size: 20px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--text);
  transition: opacity 0.2s;
}

.nav-links a:hover {
  opacity: 0.7;
}

.nav-links a.active {
  border-bottom: 2px solid var(--text);
  padding-bottom: 2px;
}

.nav-btn {
  background: var(--text);
  color: var(--white);
  border: none;
  padding: 10px 26px;
  border-radius: 50px;
  font-family: 'GT Alpina', serif;
  font-size: 18px;
  letter-spacing: 0.12em;
  cursor: pointer;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.nav-btn:hover {
  background: #333;
}

/* ===== HERO SECTION ===== */
.hero {
  background: var(--white);
  text-align: center;
  padding: 80px 40px 60px;
}

.hero-logo-wrapper {
  margin-bottom: 36px;
}

.hero-wordmark {
  width: min(600px, 85vw);
  height: auto;
  display: block;
  margin: 0 auto;
}

.hero-text {
  font-style: italic;
  font-size: 2.0rem;
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.38;
}

/* ===== PAGE HERO (full image top) ===== */
.page-hero {
  position: relative;
  height: 680px;
  overflow: hidden;
}

.page-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.15);
}

/* ===== FULL-WIDTH IMAGE ===== */
.full-image {
  width: 100%;
  height: 680px;
  object-fit: cover;
}

/* ===== SECTIONS ===== */
section {
  padding: 64px 80px;
}

.section-center {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}

.section-title {
  font-size: clamp(2.4rem, 3.5vw, 3.5rem);
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.38;
}

.section-title.upright {
  font-style: normal;
}

.section-text {
  font-style: italic;
  line-height: 1.38;
  font-size: 2rem;
}

.section-text-large {
  font-style: italic;
  line-height: 1.38;
  font-size: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

/* ===== TAGS / CHIPS ===== */
.tags {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
  justify-content: center;
}

.tag {
  border: 1.5px solid var(--text);
  padding: 11px 33px;
  border-radius: 50px;
  font-size: 17px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--text);
  transition: background 0.2s, color 0.2s;
}

.tag:hover {
  background: var(--text);
  color: var(--white);
}

/* ===== TWO COLUMN ===== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 24px;
}

.two-col-content {
  padding: 80px 48px 80px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  align-items: center;
  text-align: center;
}

.two-col-image {
  padding: 32px 24px 32px 32px;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}

.two-col-image img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 11px 33px;
  border-radius: 50px;
  font-family: 'GT Alpina', serif;
  font-size: 17px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  white-space: normal;
  text-align: center;
  border: 1.5px solid var(--text);
  color: var(--text);
  background: transparent;
  transition: background 0.2s, color 0.2s;
  font-weight: 600;
}

.btn:hover {
  background: var(--text);
  color: var(--white);
}

.btn-dark {
  background: var(--text);
  color: var(--white);
  border-color: var(--text);
}

.btn-dark:hover {
  background: #333;
}

.btn-white {
  border-color: var(--white);
  color: var(--white);
}

.btn-white:hover {
  background: var(--white);
  color: var(--text);
}

.btn-group {
  display: flex;
  gap: 14px;
  margin-top: 28px;
  flex-wrap: nowrap;
}

/* ===== BACKGROUND VARIANTS ===== */
.bg-green,
.bg-salbei {
  background: var(--salbei);
}

.bg-green-light {
  background: var(--green-section);
}

.bg-blue,
.bg-hellblau {
  background: var(--hellblau);
}

.bg-tiefblau {
  background: var(--tiefblau);
}

.bg-aubergine {
  background: var(--aubergine);
  color: var(--white);
}

.bg-gelb {
  background: var(--gelb);
}

.bg-light {
  background: var(--bg-light);
}

/* ===== PERSON CARD ===== */
.person-card {
  display: grid;
  grid-template-columns: 35fr 65fr;
  gap: 40px;
  margin-bottom: 0;
}

.person-card:nth-child(even) {
  grid-template-columns: 65fr 35fr;
}

.person-card:nth-child(even) .card-image {
  order: 2;
}

.person-card:nth-child(even) .card-text {
  order: 1;
}

.person-card .card-text {
  padding: 48px 56px 48px 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.person-card .card-image {
  overflow: hidden;
  padding: 32px 2px 32px 32px;
  display: flex;
  align-items: center;
}

.person-card:nth-child(even) .card-image {
  padding: 32px 32px 32px 2px;
  justify-content: flex-end;
}

.person-card:nth-child(even) .card-text {
  padding: 48px 8px 48px 56px;
}

.person-card .card-image img {
  width: 100%;
  height: auto;
  border-radius: 0;
}

.person-name {
  font-size: clamp(2.4rem, 3.5vw, 3.5rem);
  font-style: italic;
  font-weight: normal;
  margin-bottom: 16px;
}

/* ===== TEAM PAGE ===== */
.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: 1200px;
  margin: 0 auto 80px;
  padding: 0 80px;
}

.team-card {
  display: flex;
  flex-direction: column;
  padding: 0 48px 64px 0;
}

.team-card:nth-child(even) {
  padding: 0 0 64px 48px;
}

.team-card-image {
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  margin-bottom: 32px;
  border-radius: 0;
}

.team-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.person-text {
  font-style: normal;
  line-height: 1.8;
  font-size: 1.5rem;
  margin-bottom: 32px;
}

/* ===== EVENTS SECTION ===== */
.events-section {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 0;
}

.events-image {
  padding: 32px;
}

.events-image img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  object-position: center;
  display: block;
}

.events-content {
  padding: 60px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.events-btn-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
}

.events-btn-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ===== IMAGE GALLERY ===== */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  height: 360px;
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== PRODUCTS GRID ===== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}

/* ===== FOOTER ===== */
footer {
  background: var(--green);
  color: var(--text);
}

.footer-newsletter-row {
  padding: 48px 80px 32px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
}

.footer-newsletter-left {
  flex: 1;
}

.footer-newsletter-label {
  font-style: italic;
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.footer-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-input {
  border: 1.5px solid var(--text);
  padding: 10px 20px;
  border-radius: 50px;
  font-family: 'GT Alpina', serif;
  font-size: 17px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  outline: none;
  background: transparent;
  color: var(--text);
  width: 160px;
}

.footer-input::placeholder {
  color: var(--text);
  opacity: 0.7;
}

.footer-submit {
  background: var(--text);
  color: white;
  border: none;
  padding: 10px 28px;
  border-radius: 50px;
  font-family: 'GT Alpina', serif;
  font-size: 17px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
}

.footer-submit:hover {
  background: #333;
}

.footer-social {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-shrink: 0;
}

.social-icon-filled {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
}

.social-icon-filled:hover {
  opacity: 0.75;
}

.footer-info-row {
  padding: 0 80px 40px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.footer-address {
  font-size: 1.5rem;
  line-height: 1.7;
}

.footer-link-underline {
  text-decoration: underline;
}

.footer-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0;
  font-size: 1.5rem;
  line-height: 1.7;
  text-align: right;
}

.footer-bottom {
  padding: 20px 80px 40px;
}

.footer-wordmark {
  width: 100%;
  height: auto;
  display: block;
}

/* ===== UPCOMING EVENTS ===== */
.upcoming-title {
  font-size: 2rem;
  font-style: italic;
  margin-bottom: 16px;
}

/* ===== SLIDER (Haus am See) ===== */
.slider {
  position: relative;
  overflow: hidden;
  height: 680px;
}

.slider-track {
  display: flex;
  transition: transform 0.5s ease;
  height: 100%;
}

.slider-track img {
  min-width: 100%;
  height: 100%;
  object-fit: cover;
  flex-shrink: 0;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.8);
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background 0.2s;
}

.slider-btn:hover { background: white; }
.slider-btn.prev { left: 16px; }
.slider-btn.next { right: 16px; }

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

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.6);
  cursor: pointer;
  border: none;
  transition: background 0.2s;
}

.slider-dot.active { background: white; }

.bullets {
  list-style: none;
  margin-top: 16px;
}

.bullets li {
  font-style: italic;
  padding: 4px 0;
  padding-left: 20px;
  position: relative;
}

.bullets li::before {
  content: '–';
  position: absolute;
  left: 0;
}

/* ===== PRODUKTE FILTER ===== */
.filter-bar {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  padding: 28px 80px;
  background: var(--bg-light);
  border-bottom: 1px solid #d8d6d0;
}

.filter-btn {
  padding: 8px 22px;
  border-radius: 50px;
  border: 1.5px solid #999;
  font-family: 'GT Alpina', serif;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  background: transparent;
  color: var(--text);
  transition: all 0.2s;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--text);
  color: white;
  border-color: var(--text);
}

.produkt-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.produkt-section .produkt-img {
  overflow: hidden;
  border-radius: 20px;
}

.produkt-section .produkt-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 380px;
  border-radius: 20px;
}

.produkt-section .produkt-text {
  padding: 60px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.produkt-section.reverse {
  direction: rtl;
}

.produkt-section.reverse > * {
  direction: ltr;
}

/* ===== ANFRAGE FORM ===== */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* ===== MOBILE BOTTOM NAV ===== */
.mobile-bottom-nav {
  display: none;
}

.produkt-tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 12px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .mobile-bottom-nav {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text);
    z-index: 1000;
    padding: 10px 0 22px;
  }

  .mobile-bottom-nav-item {
    color: var(--white);
    text-decoration: none;
    font-family: 'GT Alpina Typewriter', monospace;
    font-size: 9px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 4px;
    border-right: 1px solid rgba(255,255,255,0.3);
  }

  .mobile-bottom-nav-item:last-child {
    border-right: none;
  }

  .mobile-bottom-nav-item.active {
    opacity: 0.5;
  }

  body {
    padding-bottom: 64px;
  }

  .team-grid {
    grid-template-columns: 1fr;
    padding: 0 32px;
  }

  .team-card,
  .team-card:nth-child(even) {
    padding: 0 0 48px 0;
    border-left: none;
  }

  nav {
    padding: 14px 24px;
  }

  .nav-links {
    display: none;
  }

  section {
    padding: 48px 32px;
  }

  .two-col,
  .person-card,
  .person-card:nth-child(even),
  .events-section,
  .products-grid {
    grid-template-columns: 1fr !important;
  }

  .person-card:nth-child(even) .card-image {
    order: unset;
  }

  .person-card:nth-child(even) .card-text {
    order: unset;
  }

  .two-col-content,
  .person-card .card-text,
  .events-content {
    padding: 40px 32px;
  }

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

  .gallery img {
    height: 240px;
  }

  .filter-bar {
    padding: 20px 24px;
  }

  .produkt-section,
  .produkt-section.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .produkt-section .produkt-text {
    padding: 40px 32px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    padding: 40px 32px;
    gap: 32px;
  }

  .footer-right {
    align-items: flex-start;
  }

  .footer-bottom {
    display: none;
  }

  /* Anfrage Form */
  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    font-size: 2rem;
  }

  .footer-brand-wrapper {
    padding: 16px 32px;
  }

  .footer-info-row {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    padding: 0 24px 32px;
    gap: 8px;
  }

  .footer-address {
    font-size: 0.9rem;
    line-height: 1.9;
    white-space: nowrap;
  }

  .footer-meta {
    align-items: flex-end;
    text-align: right;
    font-size: 0.9rem;
    line-height: 1.9;
    white-space: nowrap;
  }

  .footer-newsletter-row {
    flex-direction: column;
    gap: 16px;
    padding: 32px 24px 24px;
    position: relative;
  }

  .footer-social {
    position: absolute;
    top: 26px;
    right: 24px;
    margin-top: 0;
    gap: 12px;
  }

  .footer-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 8px;
    width: 100%;
  }

  .footer-form #nl-email {
    grid-column: 1;
    grid-row: 2;
  }

  .footer-form #nl-vorname {
    grid-column: 1;
    grid-row: 1;
  }

  .footer-form #nl-nachname {
    grid-column: 2;
    grid-row: 1;
  }

  .footer-form .footer-submit {
    grid-column: 2;
    grid-row: 2;
  }

  .footer-input {
    width: 100% !important;
    box-sizing: border-box !important;
    font-size: 16px !important;
    padding: 6px 16px !important;
  }

  .footer-submit {
    font-size: 16px !important;
    padding: 6px 16px !important;
  }

  .footer-address {
    font-size: 1rem;
  }

  .footer-meta {
    font-size: 1rem;
  }

  .footer-newsletter-label {
    font-size: 1.1rem;
  }

  /* Schriftgrössen */
  .section-text-large {
    font-size: 1.2rem;
  }

  .section-text {
    font-size: 1.1rem;
  }

  .hero-text {
    font-size: 1.2rem;
  }

  .person-text {
    font-size: 1rem !important;
  }

  .section-title {
    font-size: clamp(1.8rem, 7vw, 2.8rem);
  }

  .person-name {
    font-size: clamp(1.6rem, 5vw, 2.2rem);
  }

  /* Bilder */
  .full-image {
    height: 300px;
  }

  .page-hero {
    height: 300px;
  }

  .slider {
    height: 300px;
    margin: 0 0 32px !important;
  }

  .two-col-image img {
    height: 260px;
  }

  .events-image img {
    height: 260px;
  }

  /* Sektionen */
  section {
    padding: 48px 12px !important;
  }

  .two-col-content {
    padding: 40px 24px;
    text-align: center;
  }

  .events-content {
    padding: 40px 24px;
  }

  /* Buttons */
  .btn-group {
    flex-wrap: wrap;
    justify-content: center;
  }

  .btn {
    white-space: normal;
    text-align: center;
    font-size: 9px !important;
    padding: 6px 17px !important;
  }

  .tag {
    font-size: 9px !important;
    padding: 6px 17px !important;
  }

  .nav-btn {
    font-size: 9px !important;
    padding: 6px 14px !important;
  }

  /* Produzenten */
  .person-card .card-image {
    padding: 24px 24px 0;
  }

  .person-card:nth-child(even) .card-image {
    padding: 24px 24px 0;
  }

  .person-card .card-text,
  .person-card:nth-child(even) .card-text {
    padding: 12px 24px 24px !important;
    text-align: left;
  }

  .person-text {
    margin-bottom: 16px !important;
  }
}
