/* =========================
   RESET & BASIS
   ========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  background-color: #f6f3ef; /* warmes Beige */
  color: #2b2b2b;
  line-height: 1.7;
}

/* =========================
   CONTAINER
   ========================= */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.new {
  text-align: left;
  display: flex;
  justify-content: center;
  align-items: left;
  flex-direction:column;
  padding: 3rem 1.5rem;
  background-color: #ffffff;
  max-width: 850px;
  margin: 0 auto;
}

.new p,
.new ul {
  max-width: 100%;
  padding: 0;
  line-height: 1.7;
  list-style-position: outside;
}

.uebersicht {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: left;
  flex-direction:column;
  padding: 3rem 0;
  background-color: #ffffff;
  margin: 0 auto;
  width: 100%;
  margin-bottom: 2rem;
}

.rechtliches {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
  line-height: 1.7;
}

.desktop-paragraphs p + p {
    margin-top: 24px !important;
}

.desktop-paragraphs p + h4 {
    margin-top: 32px !important;
}

.desktop-paragraphs p + ul {
    margin-top: 32px !important;
}


/* =========================
   HEADER & NAVIGATION NEU
   ========================= */
.header {
  position: relative;
  text-align: center;
  background-color: #fff;
  padding: 1rem;
  border-bottom: 1px solid #ddd;
}

.header h1 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

/* Verstecke den Hamburger-Button standardmäßig auf Desktop */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  margin: 10px auto; /* Zentriert den Button mobil */
}

.menu-toggle span {
  width: 100%;
  height: 3px;
  background-color: #7a6a58;
  transition: all 0.3s ease;
}

/* NAVIGATION DESKTOP */
.main-nav {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.main-nav a {
  text-decoration: none;
  color: #2b2b2b;
  font-weight: 500;
  text-transform: uppercase;
  padding: 0.5rem 0;
  font-size: 0.95rem;
}

/* MOBIL-STYLING (max-width: 768px) */
@media (max-width: 768px) {
  .menu-toggle {
    display: flex; /* Zeige Button auf Handy */
  }

  .main-nav {
    display: none; /* Verstecke Links standardmäßig */
    flex-direction: column;
    width: 100%;
    background-color: #fff;
    padding: 1rem 0;
    gap: 1rem;
  }

  /* Diese Klasse wird per JS hinzugefügt, wenn das Menü offen ist */
  .main-nav.active {
    display: flex;
  }
  
  /* Kleiner Effekt: Hamburger wird zum X (optional) */
  .menu-toggle.open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
  .menu-toggle.open span:nth-child(2) { opacity: 0; }
  .menu-toggle.open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }
}


h1 {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 500;
  letter-spacing: 1px;
  margin: 2rem 0 1rem;
}

h2 {
  font-weight: 500;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

h4 {
  font-weight: 600;
}

h3 + p {
  margin-top: 1rem;
}

h3 {
  font-weight: 400;
  font-family: "Georgia", "Times New Roman", serif;
  font-style: italic;
  text-align: center;
}

nav {
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding-bottom: 1.5rem;
}

nav a {
  text-decoration: none;
  color: #2b2b2b;
  font-size: 0.95rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 1px;
  background: #7a6a58;
  transition: width 0.3s ease;
}

nav a:hover::after {
  width: 100%;
}

/* =========================
   SEKTIONEN
   ========================= */
.section {
  width: 100%;
  background-color: #ffffff;
  padding: 3rem 0; 
  margin-bottom: 2rem;
  text-align: left;
  line-height: 1.7;
}

.section.light {
  background-color: #ebe6df;
}

.section-content {
  max-width: 1100px;  
  margin: 0 auto;  
  padding: 0 1.5rem;        
}

.section-content h1,
.section-content h2,
.section-content h3,
.section-content p,
.section-content ul {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.section-content ul {
  padding-left: 1.5rem;
  list-style-position: outside;
}

.section-content ul li {
  margin-bottom: 0.5rem;
}

.section.angebot {
  margin-bottom: 0;
}

/* =========================
   LISTEN
   ========================= */
ul {
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
}

ul il {
  display: list-item;
  margin-bottom: 0.5rem;
}

/* =========================
   BUTTONS
   ========================= */
button,
.btn,
.section a {
  display: inline-block;     
  margin-top: 1rem;
  padding: 0.6rem 1.5rem;   
  border: 2px solid #7a6a58;  
  background-color: #f6f3ef; 
  color: #7a6a58;   
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;  
  cursor: pointer; 
  transition: all 0.3s ease;   
}

/* Hover-Effekt */
button:hover,
.btn:hover,
.section a:hover {
  background-color: #7a6a58;  
  color: #f6f3ef;      
  transform: translateY(-1px);
  box-shadow: 0 4px 6px rgba(0,0,0,0.1); 
}

/* =========================
   FOOTER
   ========================= */
.footer {
  background-color: #2b2b2b;
  color: #eaeaea;
  padding-top: 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.footer h3 {
  font-size: 1rem;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.footer ul {
  list-style: none;
  margin: 0;
}

.footer ul li {
  margin-bottom: 0.5rem;
}

.footer a {
  color: #eaeaea;
  text-decoration: none;
  font-size: 0.9rem;
}

.footer a:hover {
  color: #c8b8a6;
}

.footer-bottom {
  text-align: center;
  padding: 1rem;
  font-size: 0.8rem;
  background-color: #1f1f1f;
  margin-top: 2rem;
}

.zitation {
  background-color: #f6f3ef;
}

/* =========================
   TESTIMONIALS
   ========================= */
.testimonials {
  min-height: 500px;
  display: flex;
  justify-content: center;
  text-align: center;
  align-items: center;
  flex-direction: column;
}

.testimonial {
  display: none;
  min-height: 500px;
  width: 100%;
}

.testimonial.active {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.quote {
  font-family: "Georgia", "Times New Roman", serif;
  font-style: italic;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  line-height: 1.7;
}

.author {
  font-size: 0.9rem;
  color: #7a6a58;
}

.testimonial-controls {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.highlight-block {
  background-color: white;
}

/* =========================
   RESPONSIVE
   ========================= */
@media (max-width: 768px) {
  nav {
    flex-direction: column;
    gap: 1rem;
  }

  h1 {
    font-size: 1.8rem;
  }

  .container {
    padding: 2rem 1rem;
  }
}

/* =========================
   BILDER
   ========================= */

#uebermich {
  position: relative;
  background-image: url("images/pferd.jpg");
  background-size: cover; 
  background-position: center;
  background-repeat: no-repeat;
  color: #2b2b2b;           
  padding: 5rem 1.5rem; 
}

/* Overlay für 70% Transparenz */
#uebermich::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.7);
  z-index: 1;
}

#uebermich .container {
  position: relative;
  z-index: 2;
}

#news-section {
  position: relative;
  background-image: url("images/kleine.jpg"); /* Hier dein neues Bild */
  background-size: cover; 
  background-position: center;
  background-repeat: no-repeat;
  padding: 5rem 1.5rem; 
}

/* Auch das Overlay musst du für die neue ID wiederholen */
#news-section::before {
  content: "";
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background-color: rgba(255, 255, 255, 0.7);
  z-index: 1;
}

#news-section .container {
  position: relative;
  z-index: 2;
}
/* Media Query für mobile Geräte (max. 768px Breite) */
@media (max-width: 768px) {
  #news-section {
    background-image: none; /* Entfernt das Hintergrundbild */
    background-color: #f6f3ef; /* Optional: Eine Fallback-Farbe setzen */
  }

  #news-section::before {
    display: none; /* Entfernt das Overlay, da kein Bild mehr da ist */
  }
}

.fullwidth-image img {
  width: 100%;       /* Bild immer so breit wie der Container / Bildschirm */
  height:fit-content;      /* Höhe proportional */
  display: block;
   justify-content: center;
}

@media (max-width: 768px) {
  .fullwidth-image {
    padding: 40px 0;
   display: block;
  }

  .fullwidth-image img {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  #uebermich {
    background-position: center top; /* Motiv oben zentrieren */
    background-size: cover;          /* bleibt gleich, füllt weiter den Container */
  }
}

section.fullwidth-image.hero-narrow img {
  height: 600px !important; /* Hier die gewünschte Höhe für alle einstellen */
  object-fit: cover;        /* Verhindert Verzerrung */
  object-position: center;  /* Richtet den Fokus auf die Mitte des Bildes */
}

/* Optional: Mobil noch schmaler für bessere Lesbarkeit */
@media (max-width: 768px) {
  section.fullwidth-image.hero-narrow img {
    height: 250px !important;
  }
}

/* Erhöhte Spezifität durch das Anhängen der Klasse direkt an den Tag */
/* DESKTOP-EINSTELLUNGEN (ab 769px Breite) */
@media (min-width: 769px) {
    section.fullwidth-image.flaches-bild {
        background-color: #ffffff !important; /* Rand-Farbe Weiß */
        padding: 0 !important;
        margin: 0 !important;
        display: flex !important;           /* Aktiviert Zentrierung */
        justify-content: center !important;
        line-height: 0;
    }

    section.fullwidth-image.flaches-bild img {
        /* Rand erzeugen: Entweder über % oder eine feste maximale Breite */
        width: 95% !important; 
        max-width: 900px !important; 

        /* Höhe festlegen */
        height: 600px !important; 
        
        /* Bildqualität & Ausschnitt */
        object-fit: cover !important; 
        object-position: center !important;
        
        display: block !important;
        margin: 0 auto !important;
    }
}

/* MOBIL-EINSTELLUNGEN (Handy) */
@media (max-width: 768px) {
    section.fullwidth-image.flaches-bild {
        background-color: transparent !important;
    }

    section.fullwidth-image.flaches-bild img {
        width: 100% !important;   /* Mobil kein Rand */
        max-width: 100% !important;
        height: auto !important;  /* Mobil Höhe proportional (besser bedienbar) */
    }
}
/* =========================
   KONTAKTFORMULAR
   ========================= */

/* =========================
   BASIS & RESET
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Helvetica Neue", Arial, sans-serif;
}

body {
  background-color: #f6f3ef;
  color: #2b2b2b;
}

/* =========================
   KONTAKT SECTION
========================= */
.contact-section {
  padding: 4rem 1rem;
}

.contact-box {
  background-color: #f6f3ef;
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem;
  border-radius: 8px;
  text-align: center;
}

.contact-box h2 {
  margin-bottom: 0.5rem;
}

.contact-box p {
  margin-bottom: 2rem;
}

/* =========================
   FORM
========================= */
form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row {
  display: flex;
  gap: 1rem;
}

.form-row input {
  flex: 1;
  padding: 0.5rem;
  border: none;
  border-bottom: 2px solid #2b2b2b;
  background-color: #f6f3ef;
  font-size: 1rem;
}

textarea {
  width: 100%;
  padding: 0.5rem;
  border: none;
  border-bottom: 2px solid #2b2b2b;
  background-color: #f6f3ef;
  resize: vertical;
  font-size: 1rem;
  min-height: 120px;
}

/* =========================
   BUTTON
========================= */
.button-wrapper {
  text-align: center;
  margin-top: 1rem;
}

button.btn {
  padding: 0.6rem 1.5rem;
  border: 2px solid #2b2b2b;
  background-color: #f6f3ef;
  color: #2b2b2b;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

button.btn:hover {
  background-color: #2b2b2b;
  color: #f6f3ef;
  transform: translateY(-1px);
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

/* =========================
   DANKE TEXT
========================= */
.thank-you {
  display: none;
  margin-top: 1rem;
  font-weight: 500;
  color: #2b2b2b;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
  .form-row {
    flex-direction: column;
  }
}

/* =========================
   BILDER NEBEN DEM TEXT
========================= */

.content-block {
  width: 100%;
  background-color: white;   /* weißer Hintergrund */
  padding: 60px 0;           /* Abstand oben/unten */
  display: flex;
  justify-content: center; 
  margin-bottom: 60px;  
}

/* Innerer Inhalt: max-width & Padding */
.content-block > .text,
.content-block > .image {
  flex: 1 1 auto;             /* flexibel nebeneinander */
  max-width: 550px;            /* optional, falls du Breite begrenzen willst */
  padding: 0 20px;             /* horizontaler Abstand innerhalb */
}

/* Bilder */
.content-block .image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Links/rechts Layout */
.text-left {
  flex-direction: row;
}
.text-right {
  flex-direction: row-reverse;
}

/* Mobile Ansicht */
@media (max-width: 768px) {
  .content-block {
    flex-direction: column !important;
    text-align: center;
    padding: 40px 20px; 
  }
   
 .content-block .text {
    order: 1;
  }
   
  .content-block .image {
  order: 2;
  margin-top: 20px;
}

   .content-block .image img {
    width: 100%;
    height: auto;
  }
}


/* =========================
   FULLWIDTH IMAGE FIX
========================= */

.fullwidth-image {
  margin: 0;
  padding: 0;
  background: none;
}

.fullwidth-image picture,
.fullwidth-image img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
}

/* =========================
   FULLWIDTH IMAGE – HARTER RESET
========================= */

section.fullwidth-image {
  padding: 0 !important;
  margin: 0 !important;
  line-height: 0;
  background: none;
}

section.fullwidth-image picture {
  display: block;
  line-height: 0;
}

section.fullwidth-image img {
  display: block;
  width: 100%;
  height: auto;
}

 * =========================
   ANGEBOT
========================= */

.section.angebot {
  background-color: white;
  padding: 5rem 0 5rem 0; /* nur oben Abstand */
}

.section.angebot .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 4rem;
  background-color: white;
  border-radius: 12px; /* Gesamtcontainer rund */
  position: relative;
}

/* Wrapper */
.angebote-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 0; /* kein vertikaler Abstand */
  align-items: stretch;
}


/* Blöcke */
.angebot-block {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 1.5rem;
  background-color: white;
  border-radius: 0; /* nur oben rund, unten eckig */
  justify-content: space-between;
  margin-bottom: 0;
  position: relative; 
}


/* Buttons */
.angebot-block .btn {
  padding: 0.8rem 1.6rem;
  border-radius: 30px;
  background-color: #f6f3ef;
  color: white;
  text-decoration: none;
  text-align: center;
  color: black;
}

/* Mobile */
@media (max-width: 768px) {
  .section.angebot {
    display: none !important;
  }
}



























































