body {
    font-family: 'Chalkboard', 'Comic Sans MS', cursive, sans-serif;
    margin: 0;
    background-color: rgba(196, 234, 212, 0.8);
    color: #b48d00;
  }
  
  header {
    background-color: rgba(179, 238, 204, 0.8);
    position: relative;
    top: -16px;
    z-index: 1000;
    text-align: center;
  
    
  }
  
  header img {
    max-height: 700px;
    display: block;
    margin: 0 auto;
  }
  
 


  nav ul.menu-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    list-style: none;

    
  }
  
  nav ul.menu-content li {
    margin: 0 1rem;
  }
  
  nav ul.menu-content li a {
    font-family: 'Chalkboard';
    text-decoration: none;
    color: #b48d00;
    font-weight: bold;
    transition: color 0.3s ease;
    font-size: 20pt;
  }
  
  nav ul.menu-content li a:hover {
    color: #b48d00;
  }
  
  .container {
    padding: 2rem 1rem;
  }
  
  .text h2 {
    text-align: center;
    font-size: 30pt;
  }
  .text p {
    font-family: 'Chalkboard', 'Comic Sans MS', cursive, sans-serif;
    font-size: 1.2rem;
    text-align: center;
  }
  
  .simpleSlides {
    height: 500px; /* oder eine andere gewünschte Höhe */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }
  
  .simpleSlides .slides {
    height: 100%;
    width: auto;
    object-fit: cover;
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
  }
  
  .animate-left {
    animation: animateleft 0.75s ease-in-out;
  }
  
  @keyframes animateleft {
    from {
      transform: translateX(-50%);
      opacity: 0;
    }
    to {
      transform: translateX(0);
      opacity: 1;
    }
  }
  
  footer {
    font-family: 'Chalkboard', 'Comic Sans MS', cursive, sans-serif;
    background-color: rgba(179, 238, 204, 0.8);
    color: #333;
    padding: 2rem 1rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
  }
  
  footer h3 {
    margin-bottom: 1rem;
    color: #b48d00;
    background-color:  rgba(179, 238, 204, 0.8);
  }

  
  footer ul {
    list-style: none;
    padding: 0;
  }
  
  footer ul li a {
    color: #b48d00;
    text-decoration: none;
  }
  
  .footer-bottom {
    font-family: 'Chalkboard', 'Comic Sans MS', cursive, sans-serif;
    background-color:  rgba(179, 238, 204, 0.8);
    text-align: center;
    margin-top: 2rem;
    font-size: 0.9rem;
    border-top: 1px solid #ccc;
    padding-top: 1rem;
    width: 100%;
  }
  
  .footer-bottom a {
   
    text-decoration: none;
  }




  .box {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
  }
  
  section.row {
    margin-left: auto;
    margin-right: auto;
    max-width: 1200px; /* oder so breit, wie du willst */
    padding-left: 70px; /* hier schiebst du die Karten nach rechts */
  }
  .card {
  
    max-width: 300px;
    text-align: center;
   
    border-radius: 10px;
    color: #b48d00;
    background-color: #e3e0d9;
  

  
  }
  
  .card img {
    width: 100%;
    height: 300px;
    
    border-radius: 10px;
    object-fit: contain;
    object-position: bottom;
  }

  .card.kopf img {
    width: 100%;
    height: 300px;
    
    border-radius: 10px;
    object-fit: cover;
  object-position: top;
  }

  .aufzucht {
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }

  .aufzucht img {
    width: auto;
    max-width: 100%;
    height: 225px;
    border-radius: 10px;
    margin: 25px;
    transition: transform 0.3s ease;
  }

  .aufzucht img:hover {
    transform: scale(1.05);
  }

  .wurfplanung {
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }

  .wurfplanung img {
    width: auto;
    max-width: 100%;
    height: 225px;
    border-radius: 10px;
    margin: 25px;
    transition: transform 0.3s ease;
  }

  .wurfplanung img:hover {
    transform: scale(1.05);
  }
  .fellpflege {
    border-radius: 10px;
    padding-left: 30px; /* verschiebt die ganze Zeile nach rechts */
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .fellpflege img {
    display: block;        /* wichtig, damit margin:auto greift */
    margin: 0 auto;        /* zentriert jedes Bild innerhalb seiner Spalte */
    max-width: 100%;
    height: 300px;
    border-radius: 10px;
    transition: transform 0.3s ease;
  }

  .fellpleg img:hover {
    transform: scale(1.05);
  }


/* Flexbox-Layout für die Bilder */
.row {
  display: flex;
  justify-content: space-between; /* Bilder nebeneinander */
   /* Abstand zwischen den Bildern */
}

.col {
  flex: 1 1 calc(33.33% - 10px); /* Drei Bilder nebeneinander */
}

/* Für den Text rechts neben den Bildern */


  
