
    :root {
      --weinrot: #7b1f32;
      --weinrot-dunkel: #5c1526;
      --beige: #f0ebe7;
      --weiß: #ffffff;
      --text: #222222;
    }

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

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

   /* === Schriftarten-Zuweisung === */

/* Headlines: modern, kraftvoll */
h1, h2, h3 {
  font-family: 'Outfit', sans-serif;
  font-weight: 600; /* Semibold */
  color: var(--weinrot);
  line-height: 1.3;
  margin-bottom: 1rem;
}

/* H1 = Hauptüberschrift */
h1 {
  font-size: 2.8rem;
}

/* H2 = Sektionen */
h2 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 2rem;
}

/* H3 = kleinere Unterüberschriften */
h3 {
  font-size: 1.4rem;
}

/* Fließtext, Buttons, Labels, Inputs: freundlich & lesbar */
body, p, li, label, input, textarea, button {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6;
}

/* Optional: kleinere Schrift für Footer o.Ä. */
small {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-size: 0.875rem;
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.6rem; }
  h3 { font-size: 1.2rem; }
}

[id] {
    scroll-margin-top: 120px; /* entspricht header-Höhe + Abstand */
  }
  
  html {
    scroll-behavior: smooth;
  }
  

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

    header {
      background: url(img/hero.JPG) center/cover no-repeat;
      height: 95vh;
      color: var(--weiß);
      position: relative;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
    }

    

    header .content {
      position: relative;
      z-index: 2;
    }

    header img.logo {
      width: max-content
      
    }

    header h1 {
      font-size: 2.5rem;
      margin-bottom: 0.5rem;
    }

    .divider {
  background: var(--weinrot);
  height: 15px; /* fixierte Höhe für Balken */
        
  margin: 0 auto;

  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.8s ease-out 0.5s;
}
.divider.animate {
  transform: scaleX(1);
}


    .ticker {
      background: var(--weinrot);
      color: var(--weiß);
      text-align: center;
      padding: 0.5rem 1rem;
      font-size: 1.3rem;
    }

    .angebot {
      background: var(--beige);
  padding-bottom: 20px;
  padding-right: 10px;
  padding-left: 10px;
    
    }

    .angebot h2 {
      text-align: center;
      margin-bottom: 2rem;
      padding-top: 20px;
    }

    .angebot-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 2rem;
      
    
    }

    .angebot-card {
      background: var(--weiß);
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
      overflow: hidden;
      padding-bottom: 1rem;
      
    }

    .angebot-card img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      object-position: top; /* Standard: oben zeigen */
    }
    
    .angebot-card-center img {
      object-position: center center; /* Ausnahme: zentriert */
    }

    .angebot-card .text {
      padding: 1rem;
    }

    .angebot-card .text p {
      margin: 0.5rem 0;
    }

    .angebot-card .preis {
      font-weight: bold;
      color: var(--weinrot);
    }

    .ueber-uns {
        display: grid;
        background: var(--beige);
        padding-top: 20px;
        padding-bottom: 20px;
    }
    .ueber-uns h2, 
    
    .referenzen h2,
    .kontakt h2 {
      text-align: center;
      margin-bottom: 2rem;
      padding-top: 20px;
    }

    .ueber-uns p {
        
      max-width: 800px;
      margin: 0 auto 1.5rem auto;
    }
    .referenzen {
        padding-top: 20px;
        background: var(--beige);
    }
    .referenz-grid {
        
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 1rem;
      padding-right: 15px;
      padding-left: 15px;
      padding-bottom: 20px;
    }

    .referenz-grid img {
      width: 100%;
      border-radius: 8px;
      height: 200px;
      object-fit: cover;
    }

    .kontakt-info {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 1rem;
      margin-bottom: 3rem;
      
    }

    .kontakt-info div {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      
    }

    .kontakt-info div i {
      color: var(--weinrot);
      
    }

    form {
      max-width: 600px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 1rem;
      padding-bottom: 20px;
    }

    input, textarea {
      padding: 0.75rem;
      border: 1px solid #ccc;
      border-radius: 6px;
      font-size: 1rem;
    }

    button {
      background: var(--weinrot);
      color: var(--weiß);
      border: none;
      padding: 0.75rem;
      border-radius: 6px;
      cursor: pointer;
      font-size: 1rem;
      transition: background 0.3s ease;
    }

    button:hover {
      background: var(--weinrot-dunkel);
    }

    @media (max-width: 768px) {
      header h1 {
        font-size: 2rem;
      }
    }
    .anfrage-section {
  background: #f0ebe7;
  padding: 4rem 1rem;
  max-width: 1200px;
      margin: 0 auto;
  
  
}

.anfrage-section h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: #7b1f32;
  font-family: 'Outfit', sans-serif;
}

.anfrage-section form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-step {
  display: none;
  flex-direction: column;
  gap: 1rem;
  background: #fff;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.form-step.active {
  display: flex;
}

input[type="text"],
input[type="email"],
input[type="date"],
select,
textarea {
  padding: 0.75rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
}

textarea {
  resize: vertical;
}

label {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.form-navigation {
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
}

button {
  background: #7b1f32;
  color: #fff;
  border: none;
  padding: 0.75rem 1.25rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

button:hover {
  background: #5c1526;
}
/* Anfangszustand: unsichtbar und leicht nach unten versetzt */
.slide-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease-out 0.5s; /* 0,5s Verzögerung */
}

/* Wenn sichtbar: sichtbar und an der richtigen Position */
.slide-up.animate {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-img {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

/* Sichtbar + zurück auf Position */
.fade-in-img.animate {
  opacity: 1;
  transform: translateY(0);
}
/* Gesamtcontainer */
.slide-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}
.slide-up.animate {
  opacity: 1;
  transform: translateY(0);
}

/* Angebot-Karten (alle starten unsichtbar) */
.anangebot-card, .slide-in-left, .slide-in-right, .slide-in-bottom {
  opacity: 0;
  transition: all 0.8s ease-out;
}

/* Einzeln animiert */
.slide-in-left {
  transform: translateX(-50px);
}
.slide-in-right {
  transform: translateX(50px);
}
.slide-in-bottom {
  transform: translateY(50px);
}

.slide-in-left.animate,
.slide-in-right.animate,
.slide-in-bottom.animate {
  opacity: 1;
  transform: translate(0, 0);
}
.site-header {
  background: var(--weinrot-dunkel);
  height: 100px;
  display: flex;
  align-items: center;
  padding: 0 1rem;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 9999;
  backdrop-filter: blur(4px);
  
}
.header-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.header-logo img {
  max-height: 150px;
  margin-top: 20px;

}
.main-nav ul {
  list-style: none;
  display: flex;
  gap: 1.2rem;
  margin: 0;
  padding: 0;
}
.main-nav a {
  text-decoration: none;
  color: var(--weiß);
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
}
.main-nav a:hover {
  text-decoration: underline;
}
.burger {
  display: none;
  font-size: 1.8rem;
  background: none;
  border: none;
  color: var(--weinrot);
  cursor: pointer;
}
@media (max-width: 768px) {
  .main-nav ul {
    flex-direction: column;
    background: var(--weinrot);
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    padding: 1rem;
  }
  .main-nav.open ul {
    display: flex;
  }
  .burger {
    display: block;
  }
}



.hero {
  background: url('img/hero.JPG') center/cover no-repeat;
  height: 700px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--weiß);
  position: relative;
  z-index: 2;

}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(123, 31, 50, 0.5);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
}
.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 0.5rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  color: var(--weiß);
}
.hero h3 {
  font-size: 1.3rem;
  font-family: 'Poppins', sans-serif;
  color: var(--weiß)
}

@media (max-width: 768px) {
    .footer-grid {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
  
    .footer-nav ul {
      flex-direction: column;
    }
  }
  
.footer {
    background: var(--weinrot);
    color: var(--weiß);
    padding: 2rem 1rem;
  }
  .footer-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-logo img {
    max-height: 100px;
  }
  .footer-nav ul {
    display: flex;
    gap: 1rem;
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-nav a {
    color: var(--weiß);
    text-decoration: none;
  }
  .footer-nav a:hover {
    text-decoration: underline;
  }
  .footer-social {
    display: flex;
    align-items: center;
  }
  
  .footer-social a img {
    width: 28px;
    height: 28px;
    margin-left: 0.75rem;
    transition: transform 0.2s, opacity 0.2s;
  }
  
  .footer-social a:first-child img {
    margin-left: 0; /* beim ersten Icon kein linker Abstand */
  }
  
  .footer-social a:hover img {
    transform: scale(1.1);
    opacity: 0.8;
  }
  
  .ueber-uns-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 2rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  .ueber-uns-text {
    font-size: 1rem;
    line-height: 1.6;
  }
  
  .ueber-uns-bild {
    overflow: hidden;       /* schützt das runde Bild */
    border-radius: 10px;    /* hier an den Container statt nur ans Bild */
  }
  
  .ueber-uns-bild img {
    width: 100%;
    display: block;
    object-fit: cover;
  }
  
  
  /* Mobile Optimierung */
  @media (max-width: 768px) {
    .ueber-uns-grid {
      grid-template-columns: 1fr;
    }
  
    .ueber-uns {
      padding-left: 1rem;
      padding-right: 1rem;
    }
  
    .ueber-uns-text {
      padding-bottom: 1rem;
    }
  }
  .angebot-liste {
    list-style: none;        /* 👈 entfernt die Browser-Punkte */
    padding: 0;
    margin: 0.5rem 0 0 0;
  }
  
  .angebot-liste li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.3rem;
    font-size: 0.95rem;
    line-height: 1.4;
  }
  
  .angebot-liste li::before {
    content: "\27A4";            /* oder dein gewünschtes Symbol */
    position: absolute;
    left: 0;
    top: 0;
    color: var(--weinrot);
    font-weight: bold;
  }
  .input-error {
    border: 2px solid #e53935; /* rot */
    background-color: #ffebee; /* leicht rötlicher Hintergrund */
  }
  