@font-face {
  font-display: swap;
  font-family: 'Dancing Script';
  font-style: normal;
  font-weight: 400;
  src: url('font/dancing-script-v25-latin-regular.woff2') format('woff2');
}

@font-face {
  font-display: swap;
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 400;
  src: url('font/raleway-v34-latin-regular.woff2') format('woff2');
}

@font-face {
  font-display: swap;
  font-family: 'Lato';
  font-style: normal;
  font-weight: 400;
  src: url('font/lato-v24-latin-regular.woff2') format('woff2');
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  height: 100%;
}

h1 {
  font-family: 'Dancing Script', cursive;
  font-size: 100px;
  color: #E99BB8;
  margin-bottom: 20px;
  text-align: left;
}

h2 {
  font-family: 'Raleway', sans-serif;
  font-size: 36px;
  font-weight: 600;
  color: #4F7451;
  margin-top: 40px;
  margin-bottom: 20px;
}

h3 {
  font-family: 'Raleway', sans-serif;
  font-size: 28px;
  font-weight: 500;
  color: #4F7451;
  margin-top: 30px;
  margin-bottom: 15px;
}

h4 {
  font-family: 'Raleway', sans-serif;
  font-size: 22px;
  font-weight: 500;
  color: #4F7451;
  margin-top: 25px;
  margin-bottom: 10px;
}

h5 {
  font-family: 'Raleway', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #4F7451;
  margin-top: 20px;
  margin-bottom: 8px;
}

a {
  color: inherit;
  text-decoration: underline;
}

a:focus, button:focus {
  outline: 3px solid #E99BB8;
}








header {
  display: flex;
  align-items: center;
  padding: 10px 40px;
  justify-content: space-between;
  height: 70px;
  background-color: #4F7451;
}

.logo {
  width: 140px;
  height: auto;
  display: block;
  color: #E99BB8;
}

.navigation {
  display: flex;
  justify-content: flex-end;
  flex-grow: 1;
}

.navigation ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

.navigation li {
  color: #E99BB8;
  display: flex;
  align-items: center;
  margin: 0 10px;
}

.navigation a {
  text-decoration: none;
  color: #E99BB8;
  padding: 5px 10px;
}

.navigation a.active {
  font-weight: bold;
}

.separator {
  font-size: 20px;
  line-height: 1;
  padding: 0 5px;
  color: #E99BB8;
}

.intro {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.intro-text {
  position: relative;
  padding: 2rem;
  max-width: 600px;
  background-color: rgba(79, 116, 81, 0.9);
  margin: 5rem 2rem;
  border-radius: 10px;
  color: #E99BB8;
  z-index: 1;
}

.intro-text h1 {
  font-size: 64px;
  color: #E99BB8;
  background: none;
  margin-bottom: 1rem;
  text-align: left;
}

.intro-text p {
  font-size: 1.2rem;
  margin-top: 0;
  text-align: left;
  color: #ffffff;
}

.headline {
  position: absolute;
  bottom: 20%;
  left: 5%;
  font-family: 'Dancing Script', cursive;
  font-size: 100px;
  color: #E99BB8;
  margin: 0;
  z-index: 1;
}

@media (max-width: 768px) {
  .navigation ul {
    flex-direction: column;
    gap: 1rem;
  }

  .intro-text {
    margin: 3rem 1rem;
    padding: 1.5rem;
  }

  .intro-text h1 {
    font-size: 48px;
  }
}









.visitenkarte-wrapper {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.visitenkarte-text {
  flex: 1 1 60%;
}

.visitenkarte img {
  max-width: 150px;
  border-radius: 10px;
  width: 100%;
  max-width: 400px;
  border: 3px solid white;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.4s ease;
  margin-top: 20px;
  background-color: white;
  object-fit: contain;
  padding: 10px;
}

.visitenkarte img:hover {
  transform: scale(1.03);
}

.slider-scroll {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  gap: 15px;
  padding: 0;
  margin-top: 20px;
}

.slider-item {
  flex: 0 0 calc(25% - 10px);
  scroll-snap-align: start;
  transition: transform 0.3s ease, opacity 0.4s ease;
}

.slider-item:hover {
  transform: scale(1.05) rotate(1deg);
  opacity: 0.9;
}

.slider-item img {
  width: 100%;
  display: block;
  border-radius: 10px;
}

.om-card .slider-item {
  flex: 0 0 calc(50% - 10px);
}

@media (max-width: 768px) {
  .om-row {
    flex-direction: column;
  }

  .om-card {
    flex: 1 1 100%;
  }

  .visitenkarte-wrapper {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}










.hobbys-section {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 40px;
}

.hobby-row {
  display: flex;
  gap: 30px;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.hobby-card {
  flex: 1 1 45%;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgb(255, 255, 255);
  overflow: hidden;
  animation: fadeInUp 1s ease forwards;
  padding: 20px;
  margin-top: 20px;
  margin-bottom: 20px;
  color: white;
}

.text-card {
  background-color: #cc7ca0;
  transition: background-color 0.3s ease;
  padding: 20px;
  color: white;
}

.text-card:hover {
  background-color: #E99BB8;
}

.text-card h3,
.text-card h4,
.text-card h5,
.text-card p,
.text-card ul,
.text-card ol,
.text-card li {
  margin-top: 0;
  color: white;
}

.text-card h3 {
  font-size: 1.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
  border-bottom: 2px solid white;
  padding-bottom: 5px;
}

.text-card h4 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-top: 15px;
  margin-bottom: 8px;
  color: #ffffff;
}

.text-card ul,
.text-card ol {
  list-style-position: inside;
  padding-left: 1.5em;
  text-indent: -0.5em;
  color: white;
}

.text-card ol li {
  margin-bottom: 0.2em;
}

.image-card {
  background-color: #E99BB8;
  padding: 10px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  border-radius: 20px;
  width: 100%;
  margin: 0 auto;
  color: white;
}

.image-card img {
  width: 100px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background-color: transparent;
  border-radius: 10px;
  transition: transform 0.4s ease, filter 0.3s ease;
}

.image-card img:hover {
  transform: scale(1.1);
  filter: brightness(1.1) contrast(1.1) saturate(1.2);
}

.musik-gallery,
.reisen-gallery,
.backen-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
  justify-items: center;
}

.musik-gallery img,
.reisen-gallery img,
.backen-gallery img {
  width: 90%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 10px;
  background-color: transparent;
  transition: transform 0.4s ease, filter 0.3s ease;
}







.kmd-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
  justify-items: center;
}

.kmd-gallery img {
  width: 80%;
  height: 250px;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background-color: #ffffff;
  border-radius: 10px;
  transition: transform 0.4s ease;
  overflow: hidden;
}

.kmd-gallery img:hover {
  transform: scale(1.05);
}






.om-row {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 20px;
  margin-top: 20px;
}

.om-card {
  flex: 1 1 45%;
  background-color: #cc7ca0;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
  overflow: hidden;
  padding: 20px;
  color: white;
  animation: fadeInUp 1s ease forwards;
}

.om-card h3 {
  font-size: 1.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
  border-bottom: 2px solid white;
  padding-bottom: 5px;
  color: white;
}

.om-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
  color: white;
}

.om-wrapper h2,
.om-wrapper h3,
.om-wrapper p,
.om-wrapper ul,
.om-wrapper li {
  color: white;
  margin-bottom: 20px;
}









footer {
  text-align: center;
  padding: 1rem;
  background-color: #4F7451;
  color: white;
  font-size: 0.9rem;
}

footer a:hover {
  color: #eee;
  transition: color 0.3s ease;
}







@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
