/* ============================================
   === INDEX.PHP SPEZIFISCHE STYLES ===
   ============================================ */

/* ============================================
   === IMPRESSIONEN SEKTION ===
   ============================================ */

#Eindrücke {
  width: 100%;
  background-color: #eee8d2;
  padding: 20px 0 45px;
  box-shadow: 0 0 15px #37384d;
}

#Eindrücke .intro-container {
  margin: 20px auto 15px;
}

#Eindrücke .intro-container h1 {
  color: #37384d;
  letter-spacing: 1.5px;
  font-size: 2.2rem;
  font-weight: bold;
  text-align: center;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

#Eindrücke .eindrücke-img-container {
  width: 100%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  overflow: hidden;
}

#Eindrücke .eindrücke-img-container > img {
  width: auto;
  height: auto;
  max-height: 500px;
  margin: 0 auto;
  box-shadow: 0 0 6px #37384d;
  border-radius: 4px;
  transition:
    transform 0.4s ease,
    filter 0.4s ease,
    box-shadow 0.4s ease;
  display: block;
}

#Eindrücke .eindrücke-img-container > img:hover {
  transform: scale(1.04) translateY(-6px);
  filter: brightness(1.06);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

#Eindrücke .right > img {
  float: right;
  border-top-left-radius: 25px;
  border-bottom-left-radius: 25px;
}

#Eindrücke .left > img {
  float: left;
  border-top-right-radius: 25px;
  border-bottom-right-radius: 25px;
}

@media (max-width: 865px) {
  #Eindrücke .container > .row > .col-2:last-of-type {
    display: none;
  }

  #Eindrücke .container > .row > .col-2 {
    width: 50%;
  }

  #Eindrücke .eindrücke-img-container > img {
    max-height: 400px;
  }

  #Eindrücke .right > img {
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
    float: inherit;
  }
}

@media (max-width: 610px) {
  #Eindrücke .container > .row > .col-2:first-of-type,
  #Eindrücke .container > .row > .col-2:last-of-type {
    display: none;
  }

  #Eindrücke .container > .row > .col-2 {
    width: 100%;
  }

  #Eindrücke .eindrücke-img-container > img {
    max-height: 350px;
  }

  #Eindrücke .left > img,
  #Eindrücke .right > img {
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
    float: inherit;
  }
}

/* ============================================
   === MAIN BANNER ===
   ============================================ */

#main-banner {
  width: 100%;
  color: #fff;
  box-shadow: 0 15px #37384d;
}

#main-banner [class*="col-"] {
  padding: 1rem;
}

#main-banner .intro-container {
  text-align: center;
  margin: 15px auto 10px;
}

/* ============================================
   === UNSERE BETRIEB SECTION ===
   ============================================ */

#unsere-betrieb {
  margin-bottom: 0;
  padding: 60px 50px 0px 50px;
  border: none;
  width: 100%;
  max-width: 700px;
  margin-bottom: 40px;
  box-sizing: border-box;
}

#unsere-betrieb .intro-container h1 {
  margin: 0 0 30px 0;
  color: #37384d;
  letter-spacing: 1.5px;
  font-size: 2.2rem;
  font-weight: bold;
  text-align: center;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

#unsere-betrieb .col-6 > p {
  text-align: center;
  font-size: 1.2rem;
  line-height: 1.75;
  color: #333;
  background: transparent;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  border-left: none;
  transition: all 0.3s ease;
}

#unsere-betrieb .col-6 > p:hover {
  box-shadow: none;
  transform: none;
}

#unsere-betrieb .col-6 > p strong {
  color: #d59e5b;
  font-size: 1rem;
  display: block;
  margin-top: 20px;
}

/* ============================================
   === DEXTER RASSE INFO SECTION ===
   ============================================ */

#dexter-rasse-info .intro-container {
  margin: 30px auto 20px;
}

#dexter-rasse-info .intro-container h1 {
  margin: 0;
  color: #37384d;
  letter-spacing: 1.5px;
  font-size: 2.2rem;
  font-weight: bold;
  text-align: center;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

#dexter-rasse-info .intro-container p {
  color: #37384d;
}

#dexter-rasse-info .col-3 {
  padding: 20px;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#dexter-rasse-info .col-3 > h2 {
  margin: 10px;
  color: #d59e5b;
  font-size: 1.6rem;
  border-bottom: 3px solid #e2de02;
  padding-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

#dexter-rasse-info .col-3 > p {
  padding: 0 20px;
  text-align: justify;
  line-height: 1.75;
  font-size: 0.95rem;
  color: #333;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  border-left: none;
  transition: all 0.3s ease;
}

@media (max-width: 885px) {
  #main-banner .intro-container {
    margin: 15px auto 10px;
  }

  #main-banner .intro-container > h1 {
    font-size: 25px;
  }

  #dexter-rasse-info .intro-container {
    margin: 15px auto 10px;
  }

  #unsere-betrieb {
    padding: 40px 60px 0 60px;
  }

  #dexter-rasse-info .col-3 > h2 {
    font-size: 20px;
  }

  #unsere-betrieb .col-6 > p,
  #dexter-rasse-info .col-3 > p {
    font-size: 0.95rem;
    padding: 0 12px;
    color: #333;
  }
}

@media (max-width: 768px) {
  #main-banner .intro-container > h1 {
    margin: 0;
    font-size: 22px;
  }

  #unsere-betrieb {
    padding: 30px 40px 0 40px;
  }

  #unsere-betrieb .intro-container h1 {
    font-size: 1.8rem;
    margin: 0 0 25px 0;
  }

  #unsere-betrieb .col-6 > p {
    font-size: 15px;
    line-height: 1.6;
    padding: 0 8px;
  }

  #dexter-rasse-info {
    padding: 30px 0 0 0;
  }

  #dexter-rasse-info .intro-container h1 {
    font-size: 1.8rem;
  }

  #dexter-rasse-info .col-3 {
    padding: 15px;
  }

  #dexter-rasse-info .col-3 > h2 {
    margin: 7px;
    font-size: 1.4rem;
  }

  #dexter-rasse-info .col-3 > p {
    font-size: 0.95rem;
    line-height: 1.6;
    padding: 0 10px;
    color: #333;
  }
}

@media (max-width: 600px) {
  #Eindrücke .intro-container h1 {
    font-size: 1.8rem;
  }

  #unsere-betrieb {
    padding: 0 10px;
    margin: 20px auto 50px;
    width: 100%;
    max-width: none;
  }

  #unsere-betrieb .intro-container h1 {
    font-size: 1.6rem;
    margin: 0 0 20px 0;
  }

  #unsere-betrieb .col-6 > p {
    font-size: 0.95rem;
    line-height: 1.5;
    text-align: center !important;
    padding: 0;
    margin-bottom: 0.8rem;
    width: 100%;
  }

  #unsere-betrieb .col-6 > p strong {
    display: inline;
    margin-top: 0;
    margin-left: 0;
  }

  #dexter-rasse-info {
    padding: 20px 0 0 0;
    width: 100%;
    margin: 0;
  }

  #dexter-rasse-info .intro-container h1 {
    font-size: 1.6rem;
    margin: 0 0 15px 0;
  }

  #dexter-rasse-info .col-3 {
    padding: 10px;
    margin: 0 0 20px 0;
    width: 100% !important;
    box-sizing: border-box;
    display: block;
  }

  #dexter-rasse-info .col-3 > h2 {
    margin: 5px 0;
    font-size: 1.2rem;
    padding-bottom: 8px;
  }

  #dexter-rasse-info .col-3 > p {
    font-size: 0.95rem;
    line-height: 1.5;
    padding: 0 5px;
    text-align: left;
    color: #333;
    width: 100%;
  }
}

@media (max-width: 480px) {
  #main-banner {
    padding-top: 20px;
    padding-bottom: 40px;
  }

  #Eindrücke .intro-container h1 {
    font-size: 1.5rem;
  }

  #Eindrücke .eindrücke-img-container > img {
    max-height: 300px;
  }

  #unsere-betrieb {
    padding: 15px 15px 0 15px;
  }

  #unsere-betrieb .intro-container h1 {
    font-size: 1.4rem;
    margin: 0 0 15px 0;
  }

  #unsere-betrieb .col-6 > p {
    font-size: 0.9rem;
    padding: 0;
    text-align: center !important;
    width: 100%;
  }

  #unsere-betrieb .col-6 > p strong {
    display: inline;
    margin-top: 0;
  }

  #dexter-rasse-info {
    padding: 15px 0 0 0;
    width: 100%;
    margin: 0;
  }

  #dexter-rasse-info .intro-container h1 {
    font-size: 1.4rem;
  }

  #dexter-rasse-info .col-3 {
    padding: 10px;
    margin: 0 0 15px 0;
    width: 100%;
    box-sizing: border-box;
  }

  #dexter-rasse-info .col-3 > h2 {
    font-size: 1.1rem;
    margin: 5px 0;
    padding-bottom: 6px;
  }

  #dexter-rasse-info .col-3 > p {
    font-size: 0.85rem;
    padding: 0;
  }
}

@media (max-width: 380px) {
  #Eindrücke .intro-container h1,
  #main-banner .intro-container > h1 {
    font-size: 1.3rem;
  }

  #unsere-betrieb {
    padding: 12px 10px 0 10px;
  }

  #unsere-betrieb .intro-container h1 {
    font-size: 1.2rem;
  }

  #unsere-betrieb .col-6 > p {
    font-size: 0.85rem;
    text-align: center;
  }

  #dexter-rasse-info .intro-container h1 {
    font-size: 1.2rem;
  }

  #dexter-rasse-info .col-3 > h2 {
    font-size: 1rem;
  }

  #dexter-rasse-info .col-3 {
    padding: 10px;
    margin: 0;
    width: 100%;
    box-sizing: border-box;
  }

  #dexter-rasse-info .col-3 > p {
    font-size: 0.8rem;
  }
}
