* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande",
    "Lucida Sans", Arial, sans-serif;
}

body {
  background-color: #f4f4f4;
  color: #333;
  font-size: 16px;
  margin: 0;
}
section {
  padding: 0px 10px;
  line-height: 1.6;
}

header {
  color: #000;
  padding: 10px 15px;
  text-align: center;
  display: flex;
  justify-content: space-between;
  background-color: #f4f4f4;
}

/* New desktop styles for sticky header */
@media screen and (min-width: 769px) {
  header {
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }
}

/* Media Query für mobile Geräte */
@media screen and (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: center;
    gap: 20px; /* Abstand zwischen Überschrift und Kontaktliste */
  }
}

/* Rest of the CSS remains unchanged */
ul.contact-list {
  display: flex;
  justify-content: center;
  list-style-type: none;
  gap: 10px;
}

/* Media Query für sehr kleine Bildschirme */
@media screen and (max-width: 480px) {
  ul.contact-list {
    flex-direction: column;
    align-items: center;
  }
}

ul.contact-list a {
  color: #000;
  text-decoration: none;
  border: 1px solid #000;
  padding: 5px 10px;
  font-weight: 500;
}

ul.contact-list a:hover {
  background-color: #000;
  color: #f4f4f4;
}

ul.contact-list a:focus {
  outline: 2px solid #744734;
  offset: 2px;
}

/* Keyframes für die Animationen */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Animation für das Hero-Bild */
.left-hero-column img {
  width: 100%;
  max-width: 400px;
  height: auto;
  margin-top: 2rem;
  border-radius: 0.5rem;
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.1);
  animation: fadeIn 1s ease forwards;
}

/* Animationen für die Texte */
.right-hero-column h2:first-child {
  animation: slideDown 0.8s ease forwards;
  animation-delay: 0.2s;
  opacity: 0;
}

.right-hero-column p:first-of-type {
  animation: slideDown 0.8s ease forwards;
  animation-delay: 0.4s;
  opacity: 0;
}

.right-hero-column h2:last-of-type {
  animation: slideDown 0.8s ease forwards;
  animation-delay: 0.6s;
  opacity: 0;
}

.right-hero-column p:last-of-type {
  animation: slideDown 0.8s ease forwards;
  animation-delay: 0.8s;
  opacity: 0; /* Startzustand */
}

/* Der Rest des bestehenden Hero-Styles bleibt unverändert */
.hero {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.left-hero-column {
  display: flex;
  justify-content: center;
}

.left-hero-column img:hover {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}

/* Ab 768px (Tablet) */
@media (min-width: 768px) {
  .hero {
    flex-direction: row;
    align-items: center;
    gap: 4rem;
    padding: 4rem 2rem;
  }

  .left-hero-column {
    flex: 1;
    justify-content: flex-end !important;
  }

  .right-hero-column {
    flex: 1;
  }

  .left-hero-column img {
    margin-top: 0 !important;
  }
}
.cutting-boards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem 1rem;
}

.cutting-boards-image {
  display: flex;
  justify-content: center;
}

.cutting-boards-image img {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 0.5rem;
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.1);
  animation: fadeIn 1s ease forwards;
}

.cutting-boards-image img:hover {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}

.cutting-boards-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
}

.cutting-boards-content h2 {
  animation: slideDown 0.8s ease forwards;
  animation-delay: 0.2s;
  opacity: 0;
}

.cutting-boards-content .price {
  font-size: 1.5rem;
  font-weight: bold;
  animation: slideDown 0.8s ease forwards;
  animation-delay: 0.4s;
  opacity: 0;
}

.cutting-boards-content .description {
  animation: slideDown 0.8s ease forwards;
  animation-delay: 0.6s;
  opacity: 0;
}

.cutting-boards-content .contact-buttons {
  margin-top: 1rem;
  animation: slideDown 0.8s ease forwards;
  animation-delay: 0.8s;
  opacity: 0;
  justify-content: flex-end;
}

/* Desktop styles */
@media (min-width: 768px) {
  .cutting-boards {
    flex-direction: row;
    align-items: center;
    gap: 4rem;
    padding: 4rem 2rem;
  }

  .cutting-boards-content {
    flex: 1;
    text-align: right;
  }

  .cutting-boards-image {
    flex: 1;
    justify-content: flex-start;
  }
}

.gallery {
  display: flex;
  flex-direction: column; /* Standard: Untereinander (Mobile) */
  gap: 20px;
  width: 100%;
}

.gallery .example-image-link {
  width: 100%;
  display: block;
}

.gallery .gallerie-image {
  width: 100%;
  height: auto;
  object-fit: contain;
  aspect-ratio: 9/16;
}

.image-gallery {
  padding: 4rem 0;
  position: relative;
}

/* Oberer Divider */
.image-gallery::before {
  content: "";
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 2px;
  background-color: #000;
}

/* Unterer Divider */
.image-gallery::after {
  content: "";
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 2px;
  background-color: #000;
}

/* Für mobile Geräte können wir die Divider etwas breiter machen */
@media screen and (max-width: 768px) {
  .image-gallery::before,
  .image-gallery::after {
    width: 80%;
  }
}

/* Ab Tablet (768px) und größer: Nebeneinander */
@media screen and (min-width: 768px) {
  .gallery {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;
  }

  .gallery .example-image-link {
    width: calc(
      33.333% - 7px
    ); /* 3 Bilder nebeneinander mit Berücksichtigung des Gaps */
  }
}

.contact-section {
  text-align: center;
  padding: 2rem 0;
  margin-bottom: 2rem;
}

.contact-section h2 {
  margin-bottom: 1rem;
}

.contact-section p {
  margin-bottom: 2rem;
}

.contact-buttons {
  display: flex;
  justify-content: center;
  list-style-type: none;
  gap: 10px;
}

.contact-buttons a {
  color: #000;
  text-decoration: none;
  border: 1px solid #000;
  padding: 5px 10px;
  font-weight: 500;
}

.contact-buttons a:hover {
  background-color: #000;
  color: #f4f4f4;
}

.contact-buttons a:focus {
  outline: 2px solid #744734;
  offset: 2px;
}

/* Media Query für sehr kleine Bildschirme */
@media screen and (max-width: 480px) {
  .contact-buttons {
    flex-direction: column;
    align-items: center;
  }
}

footer {
  background-color: #000;
  color: #f4f4f4;
  padding: 30px 0;
  font-size: 18px;
  text-align: center;
  border-top-right-radius: 0.5rem;
  border-top-left-radius: 0.5rem;
}
