@import url('https://fonts.googleapis.com/css2?family=Amatic+SC:wght@400;700&family=Cabin:wght@400;500;600;700&display=swap');

:root {
  --primary: #B5651D;
  --primary-dark: #8B4513;
  --accent: #D4A017;
  --bg: #FDF8F0;
  --bg-warm: #F5ECD8;
  --text: #3B2A1A;
  --text-light: #7A5C3A;
  --cream: #FFF8ED;
  --border: #E8D5B0;
  --shadow: 0 8px 32px rgba(90, 50, 10, 0.10);
  --radius: 18px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Cabin', sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.7;
}

h1, h2, h3 {
  font-family: 'Amatic SC', sans-serif;
  letter-spacing: 0.02em;
}

/* NAV */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 248, 240, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-line1 {
  font-family: 'Amatic SC', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary-dark);
  letter-spacing: 0.04em;
}

.logo-line2 {
  font-family: 'Cabin', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-light);
}

.nav-logo-old {
  font-family: 'Amatic SC', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}

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

.nav-links a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s;
}

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

/* HERO */
.hero {
  min-height: 92vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 0;
  overflow: hidden;
}

.hero-content {
  padding: 5rem 4rem 5rem 5rem;
  animation: fadeInLeft 0.9s ease both;
}

.hero-badge {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-family: 'Cabin', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: clamp(3.5rem, 6vw, 6rem);
  line-height: 1.05;
  color: var(--primary-dark);
  margin-bottom: 1.2rem;
}

.hero h1 span {
  color: var(--accent);
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 420px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.btn {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  padding: 0.9rem 2.2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.25s;
  box-shadow: 0 4px 16px rgba(181, 101, 29, 0.3);
}

.btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(181, 101, 29, 0.4);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: #fff;
}

.hero-buttons {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 1rem;
  align-items: center;
}

.hero-image {
  height: 92vh;
  position: relative;
  overflow: hidden;
  animation: fadeIn 1.2s ease both;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--bg) 0%, transparent 25%);
}

/* SORTEN SECTION */
.section {
  padding: 6rem 2rem;
}

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

.section-title {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  color: var(--primary-dark);
  text-align: center;
  margin-bottom: 0.5rem;
}

.section-sub {
  text-align: center;
  color: var(--text-light);
  margin-bottom: 3.5rem;
  font-size: 1rem;
}

.sorten-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 860px;
  margin: 0 auto;
}

.sorte-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.sorte-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(to right, var(--primary), var(--accent));
}

.sorte-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.sorte-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.sorte-card h3 {
  font-size: 2rem;
  color: var(--primary-dark);
  margin-bottom: 0.8rem;
}

.sorte-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* FRÜHTRACHT */
.fruehtracht {
  background: var(--cream);
}

.fruehtracht-box {
  max-width: 720px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 3rem 3rem 2.5rem;
  position: relative;
  box-shadow: var(--shadow);
  text-align: center;
}

.fruehtracht-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 1rem;
}

.fruehtracht-box h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

.fruehtracht-intro {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.2rem;
}

.fruehtracht-mehr {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s ease, opacity 0.4s ease;
  opacity: 0;
  text-align: left;
}

.fruehtracht-mehr.open {
  max-height: 1200px;
  opacity: 1;
}

.fruehtracht-mehr p {
  color: var(--text-light);
  font-size: 0.97rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.fruehtracht-mehr p:last-child {
  margin-bottom: 1.2rem;
}

.fruehtracht-btn {
  background: none;
  border: 2px solid var(--primary);
  color: var(--primary);
  padding: 0.6rem 1.8rem;
  border-radius: 50px;
  font-family: 'Cabin', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.25s;
  margin-top: 0.5rem;
}

.fruehtracht-btn:hover {
  background: var(--primary);
  color: #fff;
}

/* RUDOLF / ÜBER UNS */
.rudolf {
  background: var(--bg);
}

.rudolf-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.rudolf-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4/5;
}

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

.rudolf-content h2 {
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  color: var(--primary-dark);
  margin-bottom: 1.5rem;
}

.rudolf-content p {
  color: var(--text-light);
  margin-bottom: 1.2rem;
  line-height: 1.8;
}

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

/* ÜBER MICH */
.ueber {
  background: var(--bg-warm);
  position: relative;
  overflow: hidden;
}

.ueber::before {
  content: '🍯';
  position: absolute;
  font-size: 18rem;
  opacity: 0.04;
  right: -3rem;
  bottom: -3rem;
  line-height: 1;
}

.ueber-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.ueber-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4/5;
}

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

.ueber-content h2 {
  font-size: clamp(2.5rem, 3.5vw, 3.5rem);
  color: var(--primary-dark);
  margin-bottom: 1.5rem;
}

.ueber-content p {
  color: var(--text-light);
  margin-bottom: 1.2rem;
  line-height: 1.8;
}

.ueber-facts {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.fact {
  text-align: center;
}

.fact-num {
  font-family: 'Amatic SC', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
  display: block;
  line-height: 1;
}

.fact-label {
  font-size: 0.85rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* BILD GALERIE */
.galerie-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1rem;
}

.galerie-grid img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 12px;
}

.galerie-grid img:first-child {
  grid-row: span 2;
  height: 100%;
}

/* KAUFEN / KONTAKT */
.kaufen {
  background: var(--primary-dark);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.kaufen::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.kaufen-inner {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.kaufen h2 {
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.kaufen p {
  font-size: 1.1rem;
  opacity: 0.85;
  margin-bottom: 3rem;
  line-height: 1.8;
}

.kaufen-fotos {
  display: flex;
  gap: 1.2rem;
  margin: 0 auto 2.5rem;
  max-width: 860px;
  justify-content: center;
}

.kaufen-fotos img {
  flex: 1;
  width: 50%;
  height: 320px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  display: block;
}

.kontakt-box {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.kontakt-item {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 1.5rem 2rem;
  min-width: 200px;
}

.kontakt-item .icon {
  font-size: 1.8rem;
  display: block;
  margin-bottom: 0.5rem;
}

.kontakt-item strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
  color: var(--accent);
  font-family: 'Amatic SC', sans-serif;
  font-size: 1.4rem;
}

.kontakt-item span {
  font-size: 0.9rem;
  opacity: 0.8;
}

.btn-light {
  background: var(--accent);
  color: var(--primary-dark);
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(212, 160, 23, 0.3);
}

.btn-light:hover {
  background: #e6b020;
  transform: translateY(-2px);
  color: var(--primary-dark);
}

/* FOOTER */
footer {
  background: var(--text);
  color: rgba(255,255,255,0.7);
  text-align: center;
  padding: 2.5rem 2rem;
  font-size: 0.85rem;
}

footer a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  margin: 0 0.8rem;
  transition: color 0.2s;
}

footer a:hover {
  color: var(--accent);
}

footer .footer-name {
  color: var(--accent);
  font-family: 'Amatic SC', sans-serif;
  font-size: 1.3rem;
  display: block;
  margin-bottom: 0.5rem;
}

/* ANIMATIONEN */
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* MOBILE */
@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-content {
    padding: 3rem 1.5rem 2rem;
    animation: none;
  }

  .hero-image {
    height: 60vw;
    min-height: 260px;
    animation: none;
  }

  .hero-image::after {
    background: linear-gradient(to bottom, var(--bg) 0%, transparent 25%);
  }

  .sorten-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

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

  .galerie-grid {
    grid-template-columns: 1fr 1fr;
  }

  .galerie-grid img:first-child {
    grid-column: span 2;
    grid-row: span 1;
    height: 200px;
  }

  .galerie-grid img {
    height: 160px;
  }

  nav {
    padding: 1rem 1.5rem;
  }

  .nav-links {
    gap: 1.2rem;
  }

  .section {
    padding: 4rem 1.5rem;
  }

  .ueber-facts {
    gap: 1.5rem;
  }

  .kaufen-fotos {
  display: flex;
  gap: 1.2rem;
  margin: 0 auto 2.5rem;
  max-width: 860px;
  justify-content: center;
}

.kaufen-fotos img {
  flex: 1;
  width: 50%;
  height: 320px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  display: block;
}

.kontakt-box {
    flex-direction: column;
    align-items: stretch;
  }
}
