*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body{
  width: 100%;
  height: 10px;
  min-height: 100vh;
  background-color: #EFEFEF;
}

header {
  background: url('golf-in-belek.jpg');
  background-size: cover; 
  width: 100%;
  height: 120px; 
  display: flex;
  flex-wrap: wrap;
  background-color: rgba(255, 255, 255, 0.5); 
  padding: 10px 10px;
  justify-content: space-between; 
  opacity: 80%;
  font-weight: 300;
}
  
header.active {
  transform: translateY(-120px);
  transition: transform 0.5s;
}

header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.5);
}

img {
  filter: brightness(0.5); 
}

header .wrapper {
  width: 100%;
  max-width: 1366px;
  display: flex;
  filter: brightness(4.5); 
}
.line-container {
  display: flex;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center; 
  flex-direction: column-reverse;
  align-items: flex-end;
  margin-right: -6px; /* Abstand zwischen dem Logo und dem Text */
  padding: 10px;
}

.line {
  width: 100px; /* Breite der Linien anpassen */
  height: 2px; /* Höhe der Linien anpassen */
  background-color: black;
  margin-bottom: 6px; /* Abstand zwischen den Linien anpassen */
}

.text {
  font-size: 66px; /* Schriftgrösse anpassen */
  color: black; /* Schriftfarbe anpassen */
  font-weight: 300;
}
.farbiger-buchstabe {
  color: red;  /* Buchstabe "X" in roter Farbe */
}

/* Längen der Linien anpassen */
.line1 { width: 10px; }
.line2 { width: 20px; }
.line3 { width: 40px; }
.line4 { width: 60px; }
.line5 { width: 80px; }
.line6 { width: 100px; }

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  margin-top: 20px;
  position: relative;
}
nav ul {
  display: flex;
  list-style: none;
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  font-size: 19px;
} 

li {
  margin-top: 30px; /* Abstand der li im aktiven Zustand */
}

ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

li { 
margin-right: 10px;
margin-top: 50px;
}

li:last-child {
  margin-right: 0;
  }

  li a {
  text-decoration: none;
  color: black;
  transition: color 0.3s;
  padding: 10px;
  border-bottom: 2px solid transparent;
  }
  li a:hover {
  color: #EFEFEF;
  }

/* Stil für das Header-Bild */

.topbar {
  margin-top: 0px;
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  z-index: 1;
 }

 #header-container {
  width: 100%;
  height: 400px; 
  object-fit: cover;
  position: absolute;
  overflow: hidden;
}

#header {
  width: 100%;
  height: 200%;  
  background: url('bildu.jpg') no-repeat center bottom fixed; 
  background-size: cover;
  animation: slideUp 10.4s infinite;
  animation-iteration-count: 1;
  animation-fill-mode: forwards; 
  background-position: 50% 100%; /* Anpassung der Startposition */
  opacity: 100%;
  filter: brightness(0.9); 
}

@keyframes slideUp {
  0% { 
    background-position: 50% 100%; 
    transform: scale(1.2); 
  }
  100% { 
    background-position: 50% 46%; 
    transform: scale(1.0); 
  }
} 

#grid {
  position: absolute; 
  top: 0px;
  left: 0;
  width: 100vw;
  height: 400px;
  background: repeating-linear-gradient(
    0deg,
    rgba(255, 255, 255, 0.5),
    rgba(255, 255, 255, 0.5) 1px,
    transparent 6px,
    transparent 6px
  ),
   repeating-linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.5),
    rgba(255, 255, 255, 0.5) 1px,
    transparent 6px,
    transparent 6px
  );
}

.topbar h1, 
.topbar h3 {
position: absolute;
}
.topbar h1 {
top: -40px;
font-family: cursive;
font-size: 3rem;
color:  #EFEFEF;
text-shadow: 0px 0px 3px rgba(0, 0, 0, 0.5), 0px 0px 5px rgba(0, 0, 0, 0.4), 0px 0px 9px rgba(0, 0, 0, 0.6);
}

.topbar h3 {
 top: 30px;
 font-family: cursive;
 font-size: 2rem;
 text-shadow: 0px 0px 3px rgba(0, 0, 0, 0.4), 0px 0px 6px rgba(0, 0, 0, 0.2), 0px 0px 9px rgba(0, 0, 0, 0.6);
  color: #EFEFEF;
}

/* Scroll Animation */ 

.topbar {
 transform: translateX(-30px);
 transition: all 0.5s;
 opacity: 0;

}
.topbar.active {
 transform: translateX(0px);
 opacity: 1; 

}
.topbar h1, 
.topbar h3 {
 position: absolute;
 transform: translateY(-20px);
 transition: all 0.8s;
 opacity: 0;

}
.topbar.active h1, 
.topbar.active h3 {
 position: absolute;
 transform: translateY(0px);
 opacity: 1;
}

.topbar.active h3 {
 transition-delay: 0.3s;
 position: absolute;
 transform: translateY(0px);
}

.topbar {
 margin-top: 60px;
 width: 100%;
 position: relative;
}

/* Stil für den Über Uns Bereich */

.about-us-container{
  margin-top: 356px;
  padding: 20px;
}

.about-us-text {
  width: 80%;
  max-width: 1366px;
  margin: 60px auto;
  padding: 10px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  display: flex;
}
.uber-uns {
  flex: 2;
  padding: 40px;
  text-align: left;
  margin-left: -40px;
}
.uber-uns h2 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 36px;
  font-family: cursive;
}

.uber-uns p {
  margin-top: 40px;
  padding: 0px;
  font-size: 1.4rem;
  line-height: 25px;
  font-family: cursive;
  filter: brightness(2.5); 
}
.uber-uns p::first-letter {
  margin-left: 20px;
}

.about-us-image {
  flex: 2; 
  overflow: hidden;
  border-radius: 10px;
  filter: brightness(2.5); 
}

.about-us-image img {
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.9s;
  width: 100%;
  height: 100%;
}

.about-us-image img:hover {
  transform: scale(1.2); 
}
/* Scroll Animation */ 

.uber-uns {
  position: relative;
  transform: translateX(-10px);
  transition: all 0.9s;
  opacity: 0;

 }
.uber-uns.active { 
  position: relative;
  transform: translateX(0px);
  opacity: 1;
 }

.about-us-image {
  transform: translateX(10px);
  transition: all 0.9s;
  opacity: 0;

}
.about-us-image.active {
  transform: translateX(0);
  opacity: 1;
}

/* Stil für die Dienstleistungen */
#dienstleistungen h2 {
  padding: 10px;
  font-size: 36px;
  color: #333;
  text-align: left;
  margin: 10px;
} 

.dienstleistungen-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-auto-rows: min-content; 
  gap: 20px;
  padding: 10px;
  transform: translateY(-10px);
  overflow: hidden;
  cursor: pointer;
  transition: 0.6s;
  filter: brightness(1.2); 
}
/*
.dienstleistungen-container {
 
  grid-auto-rows: 150px; 
  
} */

.dienstleistungen-block {
  flex: 0 0 calc(45% - 20px);
  padding: 15px;
  padding-bottom: 100px;
  background-color: #fafafb;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  font-family: 'Roboto', sans-serif;
  max-height: 60px; /* Anpassen, um die Höhe des Titels zu entsprechen */
  transition: max-height 0.4s ease-in-out; /* Fügt eine Übergangsanimation hinzu */
  padding-bottom: 0px; /* Verkleinert den Abstand, wenn der Text verborgen ist */
  transition: max-height 0.4s ease-in-out, padding-bottom 0.4s ease-in-out; /* Fügt eine Übergangsanimation hinzu */
  overflow: visible; 
}

.dienstleistungen-block:hover {
  max-height: 500px; /* Anpassen, um die ursprüngliche Höhe zu entsprechen */
  padding-bottom: 15px; /* Vergrößert den Abstand, wenn der Text sichtbar ist */
}

.dienstleistungen-block h3 {
  font-size: 25px;
  color: black;
  margin-top: 1px; 
  margin-bottom: 10px; 
}
.dienstleistungen-block p {
  bottom: 0;
  font-size: 20px;
  color: black;
  margin-top: 1px; 
  margin-bottom: 10px; 
  visibility: hidden; /* Versteckt den Text zunächst */
  transition: visibility 0.4s; /* Fügt eine Übergangsanimation hinzu */
}
.buchungs-link {
  display: inline-block;
  background-color: #007BFF;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.5s;
}

.farbiger-hintergrund {
  background-color: blueviolet;
}

.dienstleistungen-block:hover p {
  visibility: visible;
}
.reservieren-link {
  color: white; 
}

.reservieren-link:hover {
  color: black; 
}

.buchungs-link:hover {
  background-color: #0056b3;
  color: black;
  box-shadow: 0px 0px 10px #888888;
  overflow: hidden;
  transform: scale(1.03);
  transition: 0.5s;
}
 
/* Stil für die Reiseziele */
#reiseziele {
  font-size: 24px;
  color: #333;
  padding: 10px;
  margin-top: 40px;
}
#reiseziele h2 {
  font-size: 36px;
  color: #333;
  padding: 20px;
  margin-top: -10px;
}
.reihe {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  padding: 20px;
}
.ziel {
  width: 360px;
  height: 330px;
  flex: 0 0 calc(33.333% - 10px);
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0px 0px 10px #888888;
  cursor: pointer;
  transition: 0.4s;
}
.ziel img {
  width: 360px;
  height: 360px;
  border-radius: 5px;
  transition: 0.4s;
  margin-top: 0px;
  filter: brightness(1.2); 
}
.ziel .beschreibung {
  width: 100%;
  height: 150px;
  background: rgba(0, 0, 0, 0.5);
  transform: translateY(-69px);
  opacity: 0.8;
  border-radius: 0px 10px;
  color: white;
  transition: 0.4s;
  padding: 10px;
}
.ziel .beschreibung h3 {
  height: 30px;
  line-height: 10px;
  padding: 0px 10px;
  font-size: 25px;
}
.ziel .beschreibung p {
  padding: 0px 10px;
  font-size: 21px;
}
.ziel:hover .beschreibung {
  transform: translateY(-180px);  
}
.ziel:hover {
  box-shadow: 5px 5px 20px black; 
}
.ziel:hover img {
  transform: scale(1.2) rotate(3deg);
  filter: brightness(1.1); 
}

/* Stil für den Kontaktbereich */
#kontakt {
  font-size: 20px;
  padding: 20px;
  margin-top: -10px;
  background: white;
  border-radius: 10px;
  height: 160px;
}
#kontakt h2 {
  margin-top: -10px; /* Entfernt den oberen Abstand */
  margin-bottom: -10px; /* Fügt einen Abstand unterhalb des Titels hinzu */
  padding: 20px;
}

.kontakt-daten {
  display: flex;
  justify-content: space-between;
  font-family: 'Roboto', sans-serif;
  margin-top: 0px;
  margin: -20px;
  padding: 40px;
}
.kontakt-info {
  flex: 1;
  margin-right: 10px;
}

.copyy {
  position: relative;
  left: 0;
  bottom: 0;
  width: 100%;
  border-radius: 30px;
  background-color:#EFEFEF;
  color: black;
  font-weight: 300;
  text-align: center;
  padding: 30px 0px;
}

.log {
  font-size: 25px;
}

/* Stil für den "Zum Anfang"-Link */


.button {
  bottom: 20px;
  right: 100px;
  margin: 60px;
}
.button a {
  position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
color: blue;
text-decoration: none;
font-size: 36px;
letter-spacing: 5px;
padding: 23px 63px;
overflow: hidden;
border-radius: 3px;
}

.button::before{
content: "";
position: absolute;
top: 2px;
left: 2px;
bottom: 2px;
width: 50%;
background-color: rgb(255, 255, 255, .1);
}
.button span:nth-child(1){
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, blue, #ffffff);
  animation: color1 2s linear infinite;
}

@keyframes color1 {
  0% {
     transform: translateX(-100%);
}
  100% {
     transform: translateX(100%);
  }
}

.button span:nth-child(2){
  position: absolute;
  top: 0;
  right: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, blue, white);
  animation: color2 2s linear infinite;
  animation-delay: 1s;
}

@keyframes color2 {
  0% {
     transform: translateY(-100%);
}
  100% {
     transform: translateY(100%);
  }
}

.button span:nth-child(3){
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(to left, blue, white);
  animation: color3 2s linear infinite;
}

@keyframes color3 {
  0% {
     transform: translateX(100%);
}
  100% {
     transform: translateX(-100%);
  }
}

.button span:nth-child(4){
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(to top, blue, white);
  animation: color4 2s linear infinite;
  animation-delay: 1s;
}

@keyframes color4 {
  0% {
     transform: translateY(100%);
}
  100% {
     transform: translateY(-100%);
  }
}

.upbutton {
  display: none;
  height: 40px;
  width: 120px;
  border-radius: 2px;
  background-color: blue;
  opacity: 60%;
  color: black;
  font-size: 20px;
  line-height: 36px;
  text-align: center;
  position: fixed;
  bottom: 15px;
  right: 5px;
  border: 2px solid blue;
  text-decoration: none;
  transition: color 0.4s linear;
  z-index: 3;
}

.upbutton:hover {
  color: white;
  border-color: violet;
}
.upbutton::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: violet;
  z-index: -1;
  transition: transform 0.5s;
  transform-origin: 0 0;
  transition-timing-function: cubic-bezier(0.5, 1.6, 0.4, 0.7);
}
.upbutton::before {
transform: scaleX(0);
}
.upbutton:hover::before {
 transform: scaleX(1);
}

/* Scroll Animation */ 

.upbutton {
  transform: translateX(60px);
  transition: all 0.5s;
  opacity: 0;
}
.upbutton.active {
  transform: translateX(0px);
  opacity: 1;
}
.show{
  display: block;  
}

/* Responsive Styles */

@media screen and (max-width: 1038px) {
  header {
    width: 100%;
    height: 90px; 
    display: flex;
    }
  .header-wrapper {
    flex-direction: column;
  }
  .line-container {
    margin-bottom: 10px; 
  }

.line {
  width: 60px; /* Breite der Linien anpassen (zum Beispiel) */
  height: 1px; /* Höhe der Linien anpassen (zum Beispiel) */
  background-color: black;
  margin-bottom: 3px; /* Abstand zwischen den Linien anpassen */
}

.line1 { width: 5px; }
.line2 { width: 10px; }
.line3 { width: 20px; }
.line4 { width: 30px; }
.line5 { width: 40px; }
.line6 { width: 50px; }

  .text {
    font-size: 33px; 
  }
  .logo {
    margin-right: 6; /* Entfernt den rechten Abstand für kleinere Bildschirme */
    margin-top: -2px; /* Entfernt den oberen Abstand für kleinere Bildschirme */
    max-width: 50%; /* Beispiel: Begrenzt die Breite des Logos auf 50% */
  }
header li {
  margin-top: 30px;
}
  nav ul {
    font-size: 12px;
    margin-top: 0px;
  }
  nav ul li {
    font-size: 12px;
  }
  
 #header-container {
  width: 100%;
  height: 300px; 
}

 .topbar {
  margin-top: 45px;
 }
   
.topbar h1, 
.topbar h3 {
position: absolute;
}
.topbar h1 {
top: -21px;
font-size: 1.9rem;
color:  #EFEFEF;
text-shadow: 0px 0px 3px rgba(0, 0, 0, 0.5), 0px 0px 5px rgba(0, 0, 0, 0.4), 0px 0px 9px rgba(0, 0, 0, 0.6);
}

.topbar h3 { 
 top: 25px;
 font-size: 1.3rem;
 text-shadow: 0px 0px 3px rgba(0, 0, 0, 0.4), 0px 0px 6px rgba(0, 0, 0, 0.2);
}

.about-us-container {
  margin-top: 250px;
}

.about-us-text h2 {
  margin-top: -20px;
  font-size: 16px;
} 
  
.about-us-text p { 
  margin-top: 6px;
  font-size: 10px;
}
.about-us-image img {
    max-width: 100%;
    height: auto; 
  }

.dienstleistungen-container {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.dienstleistungen-block {
  flex: 0 0 calc(45% - 20px);
  margin-bottom: -10px;
}

#dienstleistungen h2 {
  font-size: 26px;
} 

.dienstleistungen-block h3 {
  font-size: 16px;
}
.dienstleistungen-block p {
  bottom: 0;
  font-size: 14px;
}
#reiseziele h2 {
  font-size: 26px;
  margin-top: -40px;
  padding: 10px;
}

.reihe {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 6;
  padding: -10px;
  margin: -10px;
}
 
.ziel {
  width: 100%;
  height: 200px;
  flex: 0 0 calc(33.333% - 10px); 
}
.ziel img {
  width: 100%;
  height: 200px;
}

.ziel .beschreibung {
  transform: translateY(-40px);
}
.ziel .beschreibung h3 {
  font-size: 14px;
}

.ziel .beschreibung p {
  font-size: 12px;
}
.ziel:hover .beschreibung {
  transform: translateY(-110px);  
}
.ziel:hover {
  box-shadow: 5px 5px 20px black;
}

#kontakt h2 {
  font-size: 26px;
} 
 
#kontakt p {
  font-size: 14px;
}
}
 

@media screen and (max-width: 768px) {
  header {
    width: 100%;
    height: 90px; 
    display: flex;
    }
  .header-wrapper {
    flex-direction: column;
  }
  .line-container {
    margin-bottom: 10px; 
  }

.line {
  width: 60px; /* Breite der Linien anpassen (zum Beispiel) */
  height: 1px; /* Höhe der Linien anpassen (zum Beispiel) */
  background-color: black;
  margin-bottom: 3px; /* Abstand zwischen den Linien anpassen */
}

.line1 { width: 5px; }
.line2 { width: 10px; }
.line3 { width: 20px; }
.line4 { width: 30px; }
.line5 { width: 40px; }
.line6 { width: 50px; }

  .text {
    font-size: 33px; 
  }
  .logo {
    margin-right: 6; /* Entfernt den rechten Abstand für kleinere Bildschirme */
    margin-top: -2px; /* Entfernt den oberen Abstand für kleinere Bildschirme */
    max-width: 50%; /* Beispiel: Begrenzt die Breite des Logos auf 50% */
  }
header li {
  margin-top: 30px;
}
  nav ul {
    font-size: 12px;
    margin-top: 0px;
  }
  nav ul li {
    font-size: 12px;
  }
  
 #header-container {
  width: 100%;
  height: 300px; 
}

 .topbar {
  margin-top: 45px;
 }
   
.topbar h1, 
.topbar h3 {
position: absolute;
}
.topbar h1 {
top: -21px;
font-size: 1.9rem;
color:  #EFEFEF;
text-shadow: 0px 0px 3px rgba(0, 0, 0, 0.5), 0px 0px 5px rgba(0, 0, 0, 0.4), 0px 0px 9px rgba(0, 0, 0, 0.6);
}

.topbar h3 { 
 top: 25px;
 font-size: 1.3rem;
 text-shadow: 0px 0px 3px rgba(0, 0, 0, 0.4), 0px 0px 6px rgba(0, 0, 0, 0.2);
}

.about-us-container {
  margin-top: 250px;
}

.about-us-text h2 {
  margin-top: -20px;
  font-size: 16px;
} 
  
.about-us-text p { 
  margin-top: 6px;
  font-size: 10px;
}
.about-us-image img {
    max-width: 100%;
    height: auto; 
  }

.dienstleistungen-container {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.dienstleistungen-block {
  flex: 0 0 calc(45% - 20px);
  margin-bottom: -10px;
}

#dienstleistungen h2 {
  font-size: 26px;
} 

.dienstleistungen-block h3 {
  font-size: 16px;
}
.dienstleistungen-block p {
  bottom: 0;
  font-size: 14px;
}
#reiseziele h2 {
  font-size: 26px;
  margin-top: -40px;
  padding: 10px;
}

.reihe {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20;
  padding: -10px;
  margin: -10px;
}
 
.ziel {
  width: 100%;
  height: 200px;
  flex: 0 0 calc(33.333% - 10px); 
}
.ziel img {
  width: 100%;
  height: 200px;
}

.ziel .beschreibung {
  transform: translateY(-40px);
}
.ziel .beschreibung h3 {
  font-size: 14px;
}

.ziel .beschreibung p {
  font-size: 12px;
}
.ziel:hover .beschreibung {
  transform: translateY(-110px);  
}
.ziel:hover {
  box-shadow: 5px 5px 20px black;
}

#kontakt h2 {
  font-size: 26px;
} 
 
#kontakt p {
  font-size: 14px;
}
}
 
@media screen and (max-width: 480px) {
  
  header {
    width: 100%;
    height: 60px; 
    display: flex;
    }

  .header-wrapper {
    flex-direction: column;
  }
  .line-container {
    margin-bottom: 10px; 
  }

.line {
  width: 60px; /* Breite der Linien anpassen (zum Beispiel) */
  height: 1px; /* Höhe der Linien anpassen (zum Beispiel) */
  background-color: black;
  margin-bottom: 3px; /* Abstand zwischen den Linien anpassen */
}

.line1 { width: 5px; }
.line2 { width: 10px; }
.line3 { width: 20px; }
.line4 { width: 30px; }
.line5 { width: 40px; }
.line6 { width: 50px; }

  .text {
    font-size: 33px; 
  }
  .logo {
    margin-right: 6; /* Entfernt den rechten Abstand für kleinere Bildschirme */
    margin-top: -2px; /* Entfernt den oberen Abstand für kleinere Bildschirme */
    max-width: 50%; /* Beispiel: Begrenzt die Breite des Logos auf 50% */
  }

header ul {
  position: relative;
  margin-top: -80px;
  margin-left: 120px;
}
nav ul {
 margin-bottom: 0px;
 margin-left: 120px;
}
  nav ul li {
    font-size: 6px;
    margin: 10px;
  }
  
 #header-container {
  width: 100%;
  height: 200px; 
  object-fit: cover;
}
 .topbar {
  margin-top: 30px;
 } 
.topbar h1, 
.topbar h3 {
position: absolute;
}
.topbar h1 {
top: -15px;
font-size: 1.5rem;
}

.topbar h3 { 
 top: 25px;
 font-size: 1.1rem;
 text-shadow: 0px 0px 3px rgba(0, 0, 0, 0.4), 0px 0px 6px rgba(0, 0, 0, 0.2);
}

.about-us-container {
  margin-top: 150px;
}

.about-us-text h2 {
  margin-top: -40px;
    font-size: 14px;
  } 
  
.about-us-text p { 
  margin-top: 9px;
  font-size: 6px;
  line-height: 10px;
}
.about-us-image {
    max-width: 100%;
    height: auto; 
   padding-top: 0px;
  }
  
.dienstleistungen-container {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));

}

.dienstleistungen-block {
  margin-bottom: -10px;
}
#dienstleistungen h2 {
  font-size: 25px;
  margin-top: -40px;
} 
.dienstleistungen-block h3 {
  font-size: 16px;
}
.dienstleistungen-block p {
  bottom: 0;
  font-size: 14px;
}

#reiseziele h2 {
  font-size: 25px;
  margin-top: -30px;
  padding: 0px;
}

.reihe {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 10px;
  padding: 10px;
  
}
.ziel {
  width: 100%;
  height: 300px;
}

.ziel img {
  width: 100%;
  height: 300px;
}

.ziel .beschreibung {
  transform: translateY(-40px);
}
.ziel .beschreibung h3 {
  font-size: 20px;
}
.ziel .beschreibung p {
  font-size: 16px;
}
.ziel:hover .beschreibung {
  transform: translateY(-110px);  
}
.ziel:hover {
  box-shadow: 5px 5px 20px black;
}

#kontakt h2 {
  font-size: 25px;
  margin-top: 10px; /* Entfernt den oberen Abstand */
  margin-bottom: -40px; /* Fügt einen Abstand unterhalb des Titels hinzu */
  padding: 10px;
} 
 
#kontakt p {
  font-size: 6px;
  padding-top: 30px;
  margin: -10px;
} 

}








