/* ============================================
   FRAG DEIN TIER — Hauptstylesheet
   Farben: Cremeweiß + Dunkelgrün
   ============================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600&display=swap');

/* ---- CSS Variablen ---- */
:root {
  --cream:        #f4f0e6;
  --cream-dark:   #ede8d8;
  --green-dark:   #2a5c27;
  --green-medium: #3d7a35;
  --green-light:  #e8f0e6;
  --green-hover:  #1a3d18;
  --text-dark:    #1a2e19;
  --text-gray:    #5a6b59;
  --white:        #ffffff;
  --shadow-sm:    0 2px 8px rgba(42,92,39,0.10);
  --shadow-md:    0 8px 32px rgba(42,92,39,0.14);
  --shadow-lg:    0 20px 60px rgba(42,92,39,0.18);
  --radius:       12px;
  --radius-lg:    20px;
  --transition:   all 0.3s ease;
}

/* ---- Reset & Base ---- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--cream);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

/* ---- Typographie ---- */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.25;
  color: var(--text-dark);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.1rem; }

p {
  font-size: 1.05rem;
  color: var(--text-gray);
  line-height: 1.8;
}

/* ---- Hilfklassen ---- */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green-medium);
  margin-bottom: 1rem;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--green-medium);
  vertical-align: middle;
  margin-right: 10px;
}

.text-center { text-align: center; }

.section-header {
  margin-bottom: 3.5rem;
}

.section-header p {
  max-width: 600px;
  margin: 1rem auto 0;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}

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

.btn-primary:hover {
  background: var(--green-hover);
  border-color: var(--green-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--green-dark);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--green-dark);
  border-color: var(--green-dark);
}

.btn-outline-dark:hover {
  background: var(--green-dark);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 1.1rem 2.5rem;
  font-size: 1.05rem;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.2rem 0;
  transition: all 0.4s ease;
}

.navbar.scrolled {
  background: rgba(244, 240, 230, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.8rem 0;
  box-shadow: 0 2px 20px rgba(42,92,39,0.12);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-logo img {
  height: 64px;
  width: auto;
  transition: var(--transition);
}

.navbar.scrolled .nav-logo img {
  height: 52px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--white);
  position: relative;
  padding-bottom: 4px;
}

.navbar.scrolled .nav-links a {
  color: var(--text-dark);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--green-medium);
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

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

.navbar.scrolled .nav-links a:hover {
  color: var(--green-dark);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-instagram {
  color: var(--white);
  font-size: 1.3rem;
  opacity: 0.85;
}

.navbar.scrolled .nav-instagram {
  color: var(--text-dark);
}

.nav-instagram:hover {
  opacity: 1;
  transform: scale(1.1);
}

.nav-btn {
  background: var(--green-dark);
  color: var(--white) !important;
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.9rem;
  border: 2px solid var(--green-dark);
}

.navbar.scrolled .nav-btn {
  background: var(--green-dark);
  color: var(--white) !important;
}

.nav-btn:hover {
  background: var(--green-hover) !important;
  border-color: var(--green-hover) !important;
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.navbar.scrolled .nav-toggle span {
  background: var(--text-dark);
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero.jpg');
  background-size: cover;
  background-position: center 30%;
  /* Fallback-Gradient wenn kein Bild vorhanden */
  background-color: var(--green-dark);
  transform: scale(1.05);
  transition: transform 8s ease;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 46, 25, 0.65) 0%,
    rgba(42, 92, 39, 0.35) 50%,
    rgba(26, 46, 25, 0.55) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding: 0 2rem;
  margin-left: 8vw;
  animation: fadeInUp 1s ease both;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255,255,255,0.85);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1.5px;
  background: rgba(255,255,255,0.7);
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  line-height: 1.15;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.hero h1 em {
  font-style: italic;
  color: rgba(255,255,255,0.85);
}

.hero-sub {
  color: rgba(255,255,255,0.88);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  max-width: 520px;
  line-height: 1.7;
}

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

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.7);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
  z-index: 1;
}

.hero-scroll::after {
  content: '';
  display: block;
  width: 1.5px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.7), transparent);
}

/* ============================================
   WILLKOMMEN
   ============================================ */
.willkommen {
  padding: 6rem 0;
  background: var(--white);
  position: relative;
}

.willkommen::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--green-medium);
  border-radius: 2px;
}

.willkommen-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.willkommen-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.willkommen h2 {
  margin-bottom: 1.25rem;
}

.willkommen p {
  font-size: 1.1rem;
  line-height: 1.85;
}

.willkommen-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 2.5rem auto;
  max-width: 300px;
}

.willkommen-divider::before,
.willkommen-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--cream-dark);
}

.willkommen-divider span {
  color: var(--green-medium);
  font-size: 1.2rem;
}

/* ============================================
   TIERKOMMUNIKATION
   ============================================ */
.tierkommunikation {
  padding: 6rem 0;
  background: var(--cream);
}

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

.tk-content .section-label {
  display: block;
  text-align: left;
}

.tk-content h2 {
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.tk-content p {
  margin-bottom: 1.25rem;
}

.tk-content p:last-of-type {
  margin-bottom: 2rem;
}

.tk-image-wrap {
  position: relative;
}

.tk-image-wrap img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.tk-image-badge {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: var(--green-dark);
  color: var(--white);
  padding: 1.25rem 1.75rem;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-md);
}

.tk-image-badge strong {
  display: block;
  font-size: 2rem;
  font-family: 'Playfair Display', serif;
  line-height: 1;
}

.tk-image-badge span {
  font-size: 0.8rem;
  opacity: 0.85;
}

/* ============================================
   ANGEBOTE / LEISTUNGEN
   ============================================ */
.angebote {
  padding: 6rem 0;
  background: var(--white);
}

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

.angebot-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
}

.angebot-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--green-medium);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.angebot-card:hover {
  border-color: var(--green-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}

.angebot-card:hover::before {
  transform: scaleX(1);
}

.angebot-icon {
  font-size: 2.5rem;
  margin-bottom: 1.25rem;
}

.angebot-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}

.angebot-card p {
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.angebot-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--green-dark);
  font-size: 0.9rem;
  font-weight: 600;
}

.angebot-link:hover {
  gap: 0.7rem;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  padding: 6rem 0;
  background: var(--cream);
}

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

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: var(--transition);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.testimonials .fade-in {
  transition: opacity 1.4s ease, transform 1.4s ease;
}

.testimonial-quote {
  font-size: 4rem;
  line-height: 1;
  color: var(--green-light);
  font-family: 'Playfair Display', serif;
  margin-bottom: 0.5rem;
}

.testimonial-card p {
  font-size: 0.97rem;
  line-height: 1.8;
  font-style: italic;
  color: var(--text-gray);
  margin-bottom: 1.75rem;
}

.testimonial-stars {
  color: #c8a84b;
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 0.75rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-dark);
  font-weight: 600;
  font-size: 1rem;
  flex-shrink: 0;
}

.testimonial-info strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text-dark);
  font-weight: 600;
}

.testimonial-info span {
  font-size: 0.82rem;
  color: var(--text-gray);
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-section {
  padding: 7rem 0;
  background: var(--green-dark);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}

.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 1.25rem;
}

.cta-section p {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
}

.cta-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.cta-phone {
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  justify-content: center;
}

.cta-phone a {
  color: var(--white);
  font-weight: 600;
}

.cta-phone a:hover {
  text-decoration: underline;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.75);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 2rem;
}

.footer-brand img {
  height: 70px;
  width: auto;
  margin-bottom: 1.25rem;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer-brand p {
  color: rgba(255,255,255,0.6);
  font-size: 0.92rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--green-medium);
  color: var(--white);
}

.footer-col h4 {
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

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

.footer-col ul li a {
  color: rgba(255,255,255,0.6);
  font-size: 0.92rem;
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--white);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
}

.footer-contact-item span:first-child {
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  color: rgba(255,255,255,0.4);
  font-size: 0.85rem;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  color: rgba(255,255,255,0.4);
  font-size: 0.85rem;
}

.footer-bottom-links a:hover {
  color: rgba(255,255,255,0.7);
}

/* ============================================
   ANIMATIONEN
   ============================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   INNERE SEITEN (Tierkommunikation, etc.)
   ============================================ */
.page-hero {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-medium) 100%);
  padding: 10rem 0 5rem;
  text-align: center;
  color: var(--white);
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 1rem;
}

.page-hero p {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  max-width: 580px;
  margin: 0 auto;
}

.page-content {
  padding: 5rem 0;
  background: var(--cream);
}

.page-content-inner {
  max-width: 780px;
  margin: 0 auto;
}

.page-content h2 {
  margin: 2.5rem 0 1rem;
  color: var(--text-dark);
}

.page-content p {
  margin-bottom: 1.25rem;
}

/* Kontakt Formular */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.contact-info h2 {
  margin-bottom: 1rem;
}

.contact-info p {
  margin-bottom: 1.5rem;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  color: var(--text-gray);
  font-size: 0.95rem;
}

.contact-detail-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.85rem 1.25rem;
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius);
  background: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--green-medium);
  box-shadow: 0 0 0 3px rgba(61,122,53,0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

/* ============================================
   FLOATING INSTAGRAM BUTTON
   ============================================ */
.insta-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--green-dark);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 4px 20px rgba(42,92,39,0.35);
  transition: var(--transition);
}

.insta-float:hover {
  background: var(--green-hover);
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 8px 28px rgba(42,92,39,0.45);
  color: var(--white);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 992px) {
  .tk-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .tk-image-wrap img {
    height: 380px;
  }

  .tk-image-badge {
    bottom: 1rem;
    left: 1rem;
  }

  .angebote-grid,
  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }

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

/* ============================================
   MOBILE MENU OVERLAY
   ============================================ */
#mobileOverlay {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 1100;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 2rem;
}

#mobileOverlay.open {
  display: flex;
}

#mobileClose {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: var(--text-dark);
  line-height: 1;
  padding: 0.25rem 0.5rem;
}

.mobile-overlay-logo {
  position: absolute;
  top: 1.2rem;
  left: 50%;
  transform: translateX(-50%);
}

.mobile-overlay-logo img {
  height: 52px;
  width: auto;
}

#mobileOverlay nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
  text-align: center;
}

#mobileOverlay nav a {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--text-dark);
  font-weight: 400;
}

#mobileOverlay nav a:hover {
  color: var(--green-dark);
}

.mobile-overlay-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--cream-dark);
  width: 100%;
  max-width: 280px;
}

.mobile-overlay-footer .btn {
  width: 100%;
  justify-content: center;
}

.mobile-overlay-insta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-gray);
  font-size: 0.95rem;
}

/* Hamburger-Striche zu X wenn offen */
.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 768px) {
  /* Desktop-Nav ausblenden */
  .nav-links,
  .nav-instagram,
  .nav-btn {
    display: none;
  }

  /* Hamburger anzeigen */
  .nav-toggle {
    display: flex;
  }

  .hero-content {
    margin-left: 0;
    padding: 0 1.5rem;
    text-align: center;
  }

  .hero-eyebrow {
    justify-content: center;
  }

  .hero-sub {
    margin: 0 auto 2rem;
  }

  .hero-actions {
    justify-content: center;
  }

  .angebote-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

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

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

  .page-hero {
    padding: 8rem 0 4rem;
  }
}

@media (max-width: 480px) {
  .btn-lg {
    padding: 0.9rem 1.8rem;
    font-size: 0.95rem;
  }

  .cta-actions {
    flex-direction: column;
  }
}
