/* Globale Stile */
* { 
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  text-align: center;
  background-image: url(Bilder/background.jpeg);
  background-size: cover; 
  background-repeat: repeat; 
  background-position: center; 
  filter: brightness(0.9);
  height: 100vh;
  width: 100%;
}

/* Galerie-Stile */
.galerie {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 10px;
  margin: 20px auto;
  max-width: 1200px;
  width: 100%;
}

.galerie img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
}

/* Header Styles */
header {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.9);
}

.logo {
  max-width: 300px;
  border-radius: 50%;
  margin: 30px 20px;
  border-style: solid;
  border-color: #333;
  border-width: 1px;
  box-shadow: 1px 5px 5px #333;
}

/* Navigation Styles */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
}

nav a {
  margin: 5px;
  text-decoration: none;
  color: #ffffff;
  font-weight: bold;
  padding: 5px 5px;
  border-radius: 5px;
  border-style: solid;
  border-width: 2px;
  border-color: rgb(57, 103, 46);
  background-color: #2fab43;
}

nav a:hover {
  background-color: #a76c2837;
}

/* Main Section Styles */
main {
  max-width: 100%;
  padding: 20px;
}

.hero {
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.hero h1 {
  margin-bottom: 20px;
  font-size: 2.5em;
}

.hero p {
  margin-bottom: 20px;
  font-size: 1.2em;
}

.cta-button {
  background-color: #bd1321;
  color: #fff;
  padding: 15px;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s;
  width: 300px;
  font-size: 20px;
  font-weight: 900;
  border-color: black;
  border-width: 1px;
  border-style: solid;
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.3);
}

.cta-button:hover {
  background-color: #d62839;
}

/* About Section Styles */
.about {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  padding: 20px;
  background-color: white;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  max-width: 1980px;
  width: 50%;
}


.about2 {
 
  margin: 0 auto;
  padding: 20px;
  background-color: white;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  max-width: 1980px;
  width: 90%,
    border-radius: 5px;
}

.about1 {
  display: flex;
  flex-direction: row; 
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  max-width: 1980px;
  width: 90%,
}

.about h2 {
  margin: 0;
  font-size: 2em;
}

.about p {
  font-size: 1.1em;
  line-height: 1.8;
}

/* Google Maps Section */
.map {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.google-maps {
  width: 100%;
  height: 450px;
  border: none;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border-style: solid;
  width: 50%;
}

/* Footer Styles */
footer {
  padding: 20px 0;
  text-align: center;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
}

footer nav a {
  margin: 5px;
  text-decoration: none;
  color: #ffffff;
  font-weight: bold;
  padding: 5px 5px;
  border-radius: 5px;
  border-style: solid;
  border-width: 2px;
  border-color: rgb(57, 103, 46);
  background-color: #2fab43;
}

footer nav a:hover {
  color: #2fab43;
}

/* Listen- und Text-Stile */
li { 
  list-style: square;
  justify-items: left;
  text-align: left;
  color: rgb(0, 0, 0);
  font-weight: 600;
  text-decoration: underline;
}

p { 
  font-weight: bolder;
}

h1, h2, p {
  color: black;
}

/* Partner-Galerie-Stile */
.partner-gallery { 
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 20px;
  padding: 20px;
}

.partner-gallery a {
  display: block;
  text-decoration: none;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.partner-gallery a:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.partner-gallery img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 10px;
}

/* Button-Stile */
.knopf { 
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto;
  height: auto;
}

a:hover { 
  text-decoration: underline;
}

/* Media Query für Bildschirme mit einer Breite von maximal 900px */
@media (max-width: 900px) {
  header {
    flex-direction: column;
    margin: 20px;
  }
}

/* Media Query für Bildschirme mit einer Breite von maximal 600px */
@media (max-width: 600px) {
  nav {
    flex-direction: column;
    margin-top: 10px;
  }

  .partner-gallery {
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 10px;
  }

  .partner-gallery img {
    height: 100px;
  }
}

/* Media Query für Bildschirme mit einer Breite von maximal 850px */
@media (max-width: 850px) {
  .delivery, .pickandgo {
    display: none !important;
  }
}

/* Kontaktformular iframe-Stile */
.contactform-iframe {
  width: 100%;
  max-width: 1000px;
  height: 1650px;
  border: 2px solid #333;
  border-radius: 15px;
  box-shadow: 0px 4px 10px
} 

 .delivery, .pickandgo {

  width: 250px;
  margin-right: 20px;
  margin-left: 20px;
}

p { font-weight:300;
font-size: 18px;}
