* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Maven Pro', sans-serif;
  background-color: #ffffff;
  overflow-x: hidden;
}
.navigation {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 145px;
  background-color: #111519;
  z-index: 1000;
}
@media (max-width: 768px) {
  .navigation {
    height: 80px;
  }
}
.navigation .nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1920px;
  height: 100%;
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 768px) {
  .navigation .nav-content {
    padding: 0 20px;
  }
}
.navigation .nav-content .logo img {
  height: 73px;
  width: auto;
}
@media (max-width: 768px) {
  .navigation .nav-content .logo img {
    height: 50px;
  }
}
.navigation .nav-content .nav-links {
  display: flex;
  gap: 40px;
}
@media (max-width: 968px) {
  .navigation .nav-content .nav-links {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .navigation .nav-content .nav-links {
    display: none;
  }
}
.navigation .nav-content .nav-links a {
  color: #F0EBC5;
  text-decoration: none;
  font-size: 20px;
  font-weight: 700;
  transition: color 0.3s ease;
}
.navigation .nav-content .nav-links a:hover {
  color: #EA5A31;
}
.navigation .nav-content .nav-cta .cta-button {
  background-color: #EA5A31;
  color: #F0EBC5;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.navigation .nav-content .nav-cta .cta-button:hover {
  background-color: #ef7f5f;
  transform: translateY(-2px);
}
.hero-section {
  position: relative;
  height: 1052px;
  margin-top: 80px;
  overflow: hidden;
}
@media (max-width: 1200px) {
  .hero-section {
    height: 80vh;
    min-height: 600px;
  }
}
@media (max-width: 768px) {
  .hero-section {
    height: 70vh;
    min-height: 500px;
    margin-top: 60px;
  }
}
.hero-section .hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.hero-section .hero-background picture,
.hero-section .hero-background img {
  width: 100%;
  height: 100%;
  display: block;
}
.hero-section .hero-background img {
  object-fit: cover;
  object-position: center center;
}
@media (max-width: 1200px) {
  .hero-section .hero-background img {
    object-position: left center;
  }
}
@media (max-width: 768px) {
  .hero-section .hero-background img {
    object-position: center center;
  }
}
@media (max-width: 480px) {
  .hero-section .hero-background img {
    object-position: center center;
  }
}
.hero-section .hero-content {
  position: absolute;
  top: calc(5% + 80px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 100%;
  max-width: 1440px;
  padding: 0 20px;
  text-align: left;
}
@media (max-width: 1200px) {
  .hero-section .hero-content {
    display: none;
  }
}
.hero-section .hero-content h1 {
  color: #F0EBC5;
  font-size: 48px;
  font-weight: 600;
  margin-bottom: 15px;
  line-height: 1.1;
  max-width: 500px;
}
@media (max-width: 1200px) {
  .hero-section .hero-content h1 {
    font-size: 42px;
    max-width: 450px;
  }
}
@media (max-width: 768px) {
  .hero-section .hero-content h1 {
    font-size: 38px;
    max-width: 100%;
    margin-bottom: 12px;
    text-align: center;
  }
}
@media (max-width: 480px) {
  .hero-section .hero-content h1 {
    font-size: 24px;
    line-height: 1.2;
  }
}
@media (max-width: 380px) {
  .hero-section .hero-content h1 {
    font-size: 22px;
  }
}
.hero-section .hero-content .hero-subtitle {
  color: #F0EBC5;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 0;
  max-width: 400px;
}
@media (max-width: 1200px) {
  .hero-section .hero-content .hero-subtitle {
    font-size: 18px;
    max-width: 350px;
  }
}
@media (max-width: 768px) {
  .hero-section .hero-content .hero-subtitle {
    font-size: 16px;
    max-width: 100%;
    text-align: center;
  }
}
@media (max-width: 480px) {
  .hero-section .hero-content .hero-subtitle {
    font-size: 14px;
    margin-bottom: 10px;
  }
}
@media (max-width: 380px) {
  .hero-section .hero-content .hero-subtitle {
    font-size: 13px;
  }
}
.hero-section .hero-content .hero-description {
  display: none;
}
.hero-section .hero-description-center {
  position: absolute;
  bottom: 165px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  text-align: center;
  max-width: 600px;
}
@media (max-width: 1200px) {
  .hero-section .hero-description-center {
    max-width: 500px;
    bottom: 140px;
  }
}
@media (max-width: 768px) {
  .hero-section .hero-description-center {
    display: none;
    max-width: calc(100% - 40px);
    width: calc(100% - 40px);
    left: 50%;
    transform: translateX(-50%);
    bottom: 220px;
  }
}
@media (max-width: 480px) {
  .hero-section .hero-description-center {
    bottom: 220px;
  }
}
.hero-section .hero-description-center p {
  color: #ffffff;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  padding: 20px 30px;
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 10px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(2px);
  margin: 0;
}
@media (max-width: 768px) {
  .hero-section .hero-description-center p {
    font-size: 16px;
    padding: 15px 20px;
  }
}
@media (max-width: 480px) {
  .hero-section .hero-description-center p {
    font-size: 14px;
    padding: 12px 15px;
  }
}
.hero-section .scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
@media (max-width: 768px) {
  .hero-section .scroll-indicator {
    bottom: 30px;
  }
}
.hero-section .scroll-indicator img {
  width: 95px;
  height: auto;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}
.worlds-section {
  position: relative;
  background-color: #2A2E33;
  padding: 80px 0 650px;
  min-height: 800px;
}
@media (max-width: 1200px) {
  .worlds-section {
    padding: 60px 0 400px;
  }
}
@media (max-width: 768px) {
  .worlds-section {
    padding: 40px 0 300px;
    min-height: 600px;
  }
}
.worlds-section .construction-hook-left {
  position: absolute;
  left: -33px;
  top: -15px;
  z-index: 3;
}
@media (max-width: 1200px) {
  .worlds-section .construction-hook-left {
    left: -20px;
    top: 0px;
  }
}
@media (max-width: 768px) {
  .worlds-section .construction-hook-left {
    left: -10px;
    top: 10px;
  }
}
.worlds-section .construction-hook-left img {
  width: 382px;
  height: auto;
  filter: drop-shadow(0px 11px 26.7px #000000);
}
@media (max-width: 1200px) {
  .worlds-section .construction-hook-left img {
    width: 300px;
  }
}
@media (max-width: 768px) {
  .worlds-section .construction-hook-left img {
    width: 200px;
  }
}
@media (max-width: 480px) {
  .worlds-section .construction-hook-left img {
    width: 150px;
  }
}
.worlds-section .construction-hook-right {
  position: absolute;
  right: -50px;
  top: 0;
  z-index: 3;
}
@media (max-width: 1200px) {
  .worlds-section .construction-hook-right {
    right: -30px;
    top: 10px;
  }
}
@media (max-width: 768px) {
  .worlds-section .construction-hook-right {
    right: -20px;
    top: 20px;
  }
}
.worlds-section .construction-hook-right img {
  width: 488px;
  height: auto;
  filter: drop-shadow(0px 8px 3.5px rgba(0, 0, 0, 0.58));
}
@media (max-width: 1200px) {
  .worlds-section .construction-hook-right img {
    width: 380px;
  }
}
@media (max-width: 768px) {
  .worlds-section .construction-hook-right img {
    width: 280px;
  }
}
@media (max-width: 480px) {
  .worlds-section .construction-hook-right img {
    width: 220px;
  }
}
.worlds-section .construction-hook-right .construction-text {
  position: absolute;
  bottom: 15%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  width: 300px;
}
@media (max-width: 1200px) {
  .worlds-section .construction-hook-right .construction-text {
    width: 250px;
    bottom: 18%;
  }
}
@media (max-width: 768px) {
  .worlds-section .construction-hook-right .construction-text {
    width: 200px;
    bottom: 20%;
  }
}
@media (max-width: 480px) {
  .worlds-section .construction-hook-right .construction-text {
    width: 160px;
    bottom: 22%;
  }
}
.worlds-section .construction-hook-right .construction-text p {
  color: #000000;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 6px;
}
@media (max-width: 768px) {
  .worlds-section .construction-hook-right .construction-text p {
    font-size: 14px;
    margin-bottom: 4px;
  }
}
@media (max-width: 480px) {
  .worlds-section .construction-hook-right .construction-text p {
    font-size: 12px;
    margin-bottom: 3px;
  }
}
.worlds-section .construction-hook-right .construction-text p:last-child {
  margin-bottom: 0;
}
.worlds-section .construction-hook-right .construction-text p:first-child {
  font-weight: 700;
  font-size: 18px;
}
@media (max-width: 768px) {
  .worlds-section .construction-hook-right .construction-text p:first-child {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .worlds-section .construction-hook-right .construction-text p:first-child {
    font-size: 14px;
  }
}
.worlds-section .construction-crane {
  position: absolute;
  right: 0px;
  bottom: 125px;
  z-index: 2;
}
@media (max-width: 1200px) {
  .worlds-section .construction-crane {
    right: 10px;
    bottom: 0px;
  }
}
@media (max-width: 768px) {
  .worlds-section .construction-crane {
    right: 20px;
    bottom: 20px;
  }
}
@media (max-width: 480px) {
  .worlds-section .construction-crane {
    display: none;
  }
}
.worlds-section .construction-crane img {
  width: 596px;
  height: auto;
  filter: drop-shadow(0px 11px 26.7px rgba(0, 0, 0, 0.3));
}
@media (max-width: 1200px) {
  .worlds-section .construction-crane img {
    width: 450px;
  }
}
@media (max-width: 768px) {
  .worlds-section .construction-crane img {
    width: 300px;
  }
}
.worlds-section .worlds-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}
@media (max-width: 1200px) {
  .worlds-section .worlds-grid {
    max-width: 900px;
    gap: 15px;
  }
}
@media (max-width: 968px) {
  .worlds-section .worlds-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 600px;
    gap: 20px;
  }
}
@media (max-width: 640px) {
  .worlds-section .worlds-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    gap: 25px;
  }
}
@media (max-width: 480px) {
  .worlds-section .worlds-grid {
    padding: 0 10px;
    max-width: 320px;
  }
}
.worlds-section .worlds-grid .world-item {
  position: relative;
}
.worlds-section .worlds-grid .world-item .world-image {
  height: 238px;
  width: 100%;
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
  overflow: hidden;
  margin: 0 auto -30px;
  position: relative;
  z-index: 2;
}
@media (max-width: 1200px) {
  .worlds-section .worlds-grid .world-item .world-image {
    height: 200px;
  }
}
@media (max-width: 968px) {
  .worlds-section .worlds-grid .world-item .world-image {
    height: 220px;
  }
}
@media (max-width: 640px) {
  .worlds-section .worlds-grid .world-item .world-image {
    height: 200px;
  }
}
@media (max-width: 480px) {
  .worlds-section .worlds-grid .world-item .world-image {
    height: 180px;
  }
}
.worlds-section .worlds-grid .world-item .world-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.worlds-section .worlds-grid .world-item .world-text {
  background-color: #111519;
  border-radius: 15px;
  padding: 50px 20px 30px;
  text-align: center;
  position: relative;
  z-index: 1;
}
@media (max-width: 1200px) {
  .worlds-section .worlds-grid .world-item .world-text {
    padding: 45px 18px 25px;
  }
}
@media (max-width: 768px) {
  .worlds-section .worlds-grid .world-item .world-text {
    padding: 40px 15px 20px;
  }
}
@media (max-width: 480px) {
  .worlds-section .worlds-grid .world-item .world-text {
    padding: 35px 12px 18px;
  }
}
.worlds-section .worlds-grid .world-item .world-text h3 {
  color: #F0EBC5;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 1.2px;
  margin-top: 20px;
}
@media (max-width: 1200px) {
  .worlds-section .worlds-grid .world-item .world-text h3 {
    font-size: 22px;
    margin-bottom: 18px;
  }
}
@media (max-width: 768px) {
  .worlds-section .worlds-grid .world-item .world-text h3 {
    font-size: 20px;
    margin-bottom: 15px;
  }
}
@media (max-width: 480px) {
  .worlds-section .worlds-grid .world-item .world-text h3 {
    font-size: 18px;
    margin-bottom: 12px;
  }
}
.worlds-section .worlds-grid .world-item .world-text p {
  color: #F0EBC5;
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 30px;
  min-height: 180px;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
}
@media (max-width: 1200px) {
  .worlds-section .worlds-grid .world-item .world-text p {
    font-size: 16px;
    min-height: 160px;
    margin-bottom: 25px;
  }
}
@media (max-width: 768px) {
  .worlds-section .worlds-grid .world-item .world-text p {
    font-size: 14px;
    min-height: 120px;
    margin-bottom: 20px;
  }
}
@media (max-width: 480px) {
  .worlds-section .worlds-grid .world-item .world-text p {
    font-size: 13px;
    min-height: 100px;
    margin-bottom: 15px;
  }
}
.worlds-section .worlds-grid .world-item .world-text .world-btn {
  display: inline-block;
  background-color: #111519;
  border: 1px solid #F0EBC5;
  color: #F0EBC5;
  padding: 12px 40px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
}
@media (max-width: 1200px) {
  .worlds-section .worlds-grid .world-item .world-text .world-btn {
    padding: 10px 35px;
    font-size: 15px;
  }
}
@media (max-width: 768px) {
  .worlds-section .worlds-grid .world-item .world-text .world-btn {
    padding: 8px 30px;
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .worlds-section .worlds-grid .world-item .world-text .world-btn {
    padding: 8px 25px;
    font-size: 13px;
  }
}
.worlds-section .worlds-grid .world-item .world-text .world-btn:hover {
  background-color: #F0EBC5;
  color: #111519;
}
.koenitz-section {
  position: relative;
  background-color: transparent;
  margin-top: -250px;
  padding-top: 100px;
  min-height: 1833px;
  z-index: 10;
}
@media (max-width: 1200px) {
  .koenitz-section {
    margin-top: -280px;
    min-height: 1400px;
    padding-top: 80px;
  }
}
@media (max-width: 768px) {
  .koenitz-section {
    margin-top: -200px;
    min-height: 1000px;
    padding-top: 60px;
  }
}
@media (max-width: 480px) {
  .koenitz-section {
    margin-top: -150px;
    min-height: 800px;
    padding-top: 40px;
  }
}
.koenitz-section .forest-background {
  position: absolute;
  top: -50px;
  left: 0;
  right: 0;
  height: 662px;
  z-index: 11;
}
@media (max-width: 1200px) {
  .koenitz-section .forest-background {
    height: 500px;
    top: -30px;
  }
}
@media (max-width: 768px) {
  .koenitz-section .forest-background {
    height: 350px;
    top: -20px;
  }
}
@media (max-width: 480px) {
  .koenitz-section .forest-background {
    height: 250px;
    top: -10px;
  }
}
.koenitz-section .forest-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.koenitz-section .koenitz-content {
  position: relative;
  z-index: 12;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 400px 20px 200px;
}
.koenitz-section .koenitz-content .location-info h2 {
  color: #F0EBC5;
  font-size: 36px;
  font-weight: 400;
  margin-bottom: 10px;
  line-height: 1.2;
}
.koenitz-section .koenitz-content .location-info .subtitle {
  color: #F0EBC5;
  font-size: 16px;
  margin-bottom: 30px;
  line-height: 1.75;
}
.koenitz-section .koenitz-content .location-info .tagline {
  color: #F0EBC5;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 40px;
  line-height: 1.5;
}
.koenitz-section .koenitz-content .location-info .description {
  color: #F0EBC5;
  font-size: 18px;
  line-height: 1.67;
}
.koenitz-section .koenitz-content .location-info .description p {
  margin-bottom: 20px;
}
.koenitz-section .koenitz-content .location-info .description p:last-child {
  margin-bottom: 0;
}
.koenitz-section .koenitz-content .koenitz-images {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.koenitz-section .koenitz-content .koenitz-images .main-image {
  width: 100%;
  border-radius: 15px;
  overflow: hidden;
}
.koenitz-section .koenitz-content .koenitz-images .main-image img {
  width: 100%;
  height: auto;
  display: block;
}
.koenitz-section .koenitz-content .koenitz-images .small-images {
  display: flex;
  gap: 15px;
}
.koenitz-section .koenitz-content .koenitz-images .small-images .small-image {
  flex: 1;
  border-radius: 25px;
  overflow: hidden;
}
.koenitz-section .koenitz-content .koenitz-images .small-images .small-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
.koenitz-section .koenitz-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 684px;
  z-index: 1;
}
.koenitz-section .koenitz-bottom img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team-spirit-section {
  position: relative;
  background-color: #2A2E33;
  min-height: 1200px!important;
  overflow: hidden;
}
.team-spirit-section .archers-silhouette {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 521px;
  z-index: 1;
}
.team-spirit-section .archers-silhouette img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-size: 108.53% 100%;
  background-position: 49.09% 0%;
}
.team-spirit-section .team-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 0;
  align-items: center;
}
.team-spirit-section .team-content .team-image img {
  width: 100%;
  height: auto;
  border-radius: 15px;
}
.team-spirit-section .team-content .team-text h2 {
  color: #F0EBC5;
  font-size: 48px;
  font-weight: 600;
  line-height: 1.17;
  margin-bottom: 30px;
}
.team-spirit-section .team-content .team-text .description {
  color: #F0EBC5;
  font-size: 18px;
  line-height: 1.67;
  margin-bottom: 40px;
}
.team-spirit-section .team-content .team-text .description p {
  margin-bottom: 20px;
}
.team-spirit-section .team-content .team-text .description p:last-child {
  margin-bottom: 0;
}
.team-spirit-section .team-content .team-text .eu-funding {
  display: flex;
  align-items: center;
  gap: 20px;
}
.team-spirit-section .team-content .team-text .eu-funding .eu-flag {
  width: 120px;
  height: auto;
}
.team-spirit-section .team-content .team-text .eu-funding .eu-flag a {
  display: block;
  transition: all 0.3s ease;
}
.team-spirit-section .team-content .team-text .eu-funding .eu-flag a:hover {
  transform: scale(1.05);
  opacity: 0.8;
}
.team-spirit-section .team-content .team-text .eu-funding .eu-flag img {
  width: 100%;
  height: auto;
  cursor: pointer;
}
.team-spirit-section .team-content .team-text .eu-funding .funding-text {
  color: #F0EBC5;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.25;
  font-family: 'Ubuntu', sans-serif;
}
.team-spirit-section .archers-bottom {
  position: absolute;
  left: 10%;
  bottom: 0;
  z-index: 1;
}
.team-spirit-section .archers-bottom img {
  width: 624px;
  height: auto;
}
.footer-decoration {
  position: relative;
  height: 435px;
  overflow: hidden;
  z-index: 3;
}
.footer-decoration .footer-grass-silhouette {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 435px;
  background-image: url('/assets/images/wiese_02_1.png') !important;
  background-size: cover;
  background-position: bottom;
  z-index: 4;
}
@media (max-width: 768px) {
  .footer-decoration .footer-grass-silhouette {
    height: 300px;
  }
}
@media (max-width: 480px) {
  .footer-decoration .footer-grass-silhouette {
    height: 200px;
  }
}
@media (max-width: 768px) {
  .footer-decoration {
    height: 300px;
  }
}
@media (max-width: 480px) {
  .footer-decoration {
    height: 200px;
  }
}
.footer-decoration {
  position: relative;
  height: 435px;
  overflow: hidden;
  z-index: 3;
}
.footer-decoration .footer-grass-silhouette {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 435px;
  background-image: url('/assets/images/wiese_02_1.png');
  background-size: cover;
  background-position: bottom;
  z-index: 4;
}
@media (max-width: 768px) {
  .footer-decoration .footer-grass-silhouette {
    height: 300px;
  }
}
@media (max-width: 480px) {
  .footer-decoration .footer-grass-silhouette {
    height: 200px;
  }
}
@media (max-width: 768px) {
  .footer-decoration {
    height: 300px;
  }
}
@media (max-width: 480px) {
  .footer-decoration {
    height: 200px;
  }
}
.footer {
  background-color: #2A2E33;
  padding: 60px 0;
}
.footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.footer .footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.footer .footer-content .footer-contact {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer .footer-content .footer-contact .contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
}
.footer .footer-content .footer-contact .contact-item .contact-icon {
  width: 24px;
  height: 24px;
  background-color: #EA5A31;
  flex-shrink: 0;
}
.footer .footer-content .footer-contact .contact-item .contact-icon--location {
  mask: url('/assets/images/location.svg') no-repeat center;
  mask-size: contain;
  -webkit-mask: url('/assets/images/location.svg') no-repeat center;
  -webkit-mask-size: contain;
}
.footer .footer-content .footer-contact .contact-item .contact-icon--phone {
  mask: url('/assets/images/phone.svg') no-repeat center;
  mask-size: contain;
  -webkit-mask: url('/assets/images/phone.svg') no-repeat center;
  -webkit-mask-size: contain;
}
.footer .footer-content .footer-contact .contact-item .contact-icon--email {
  mask: url('/assets/images/email.svg') no-repeat center;
  mask-size: contain;
  -webkit-mask: url('/assets/images/email.svg') no-repeat center;
  -webkit-mask-size: contain;
}
.footer .footer-content .footer-contact .contact-item .contact-icon--globe {
  mask: url('/assets/images/globe.svg') no-repeat center;
  mask-size: contain;
  -webkit-mask: url('/assets/images/globe.svg') no-repeat center;
  -webkit-mask-size: contain;
}
.footer .footer-content .footer-contact .contact-item p {
  color: #F0EBC5;
  font-size: 18px;
  margin: 0;
}
.footer .footer-content .footer-center {
  text-align: center;
}
.footer .footer-content .footer-center .footer-logo img {
  width: 200px;
  height: auto;
}
.footer .footer-content .footer-links {
  display: flex;
  flex-direction: column;
  gap: 15px;
  text-align: right;
}
.footer .footer-content .footer-links a {
  color: #F0EBC5;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s ease;
}
.footer .footer-content .footer-links a:hover {
  color: #EA5A31;
}
@media (max-width: 768px) {
  .footer .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .footer .footer-content .footer-links {
    text-align: center;
  }
}
@media (max-width: 480px) {
  .footer {
    padding: 40px 0;
  }
  .footer .footer-content {
    gap: 30px;
  }
  .footer .footer-content .footer-contact .contact-item {
    gap: 10px;
  }
  .footer .footer-content .footer-contact .contact-item .contact-icon {
    width: 20px;
    height: 20px;
  }
  .footer .footer-content .footer-contact .contact-item p {
    font-size: 16px;
  }
  .footer .footer-content .footer-center .footer-logo img {
    width: 150px;
  }
  .footer .footer-content .footer-links {
    gap: 10px;
  }
  .footer .footer-content .footer-links a {
    font-size: 14px;
  }
}
@media (max-width: 1200px) {
  .worlds-section .construction-hook-left,
  .worlds-section .construction-hook-right {
    display: none;
  }
  .worlds-section .construction-crane {
    display: none;
  }
  .worlds-section .worlds-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  .koenitz-section .koenitz-content {
    gap: 40px;
  }
  .team-spirit-section .team-content {
    gap: 40px;
  }
}
@media (max-width: 768px) {
  .navigation .nav-content {
    flex-direction: column;
    gap: 20px;
    padding: 20px;
  }
  .navigation .nav-content .nav-links {
    gap: 20px;
  }
  .hero-section {
    height: 800px;
  }
  .hero-section .hero-content {
    left: 5%;
    right: 5%;
  }
  .hero-section .hero-content h1 {
    font-size: 32px;
  }
  .hero-section .hero-content .hero-subtitle {
    font-size: 20px;
  }
  .hero-section .hero-content .hero-description {
    font-size: 16px;
  }
  .worlds-section .worlds-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .worlds-section .worlds-grid .world-item .world-text p {
    min-height: auto;
  }
  .koenitz-section .koenitz-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
    padding: 300px 20px 100px;
  }
  .team-spirit-section .team-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .team-spirit-section .team-content .team-text h2 {
    font-size: 36px;
  }
  .team-spirit-section .team-content .eu-funding {
    justify-content: center;
  }
  .team-spirit-section .team-content .eu-funding .funding-text {
    font-size: 20px;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  .team-spirit-section .archers-silhouette {
    height: 300px;
  }
}
@media (max-width: 768px) and (max-width: 480px) {
  .team-spirit-section .archers-silhouette {
    height: 200px;
  }
}
@media (max-width: 768px) and (max-width: 968px) {
  .team-spirit-section .team-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  .team-spirit-section .team-content {
    gap: 30px;
    padding: 300px 20px 100px;
  }
}
@media (max-width: 768px) and (max-width: 480px) {
  .team-spirit-section .team-content {
    padding: 200px 15px 80px;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  .team-spirit-section .team-content h2 {
    font-size: 28px;
  }
}
@media (max-width: 768px) and (max-width: 480px) {
  .team-spirit-section .team-content h2 {
    font-size: 24px;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  .team-spirit-section .team-content p {
    font-size: 16px;
  }
}
@media (max-width: 768px) and (max-width: 480px) {
  .team-spirit-section .team-content p {
    font-size: 14px;
  }
}
.koenitz-section {
  position: relative;
  background-color: transparent;
  min-height: 1833px;
}
.koenitz-section .forest-background {
  position: absolute;
  top: -250px;
  left: 0;
  right: 0;
  height: 662px;
  z-index: 1;
}
.koenitz-section .forest-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-size: 108.53% 100%;
  background-position: 49.09% 0%;
}
.koenitz-section .koenitz-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  max-width: 1600px;
  margin: 0 auto;
  padding: 250px 80px 200px;
}
.koenitz-section .koenitz-left .location-header {
  margin-bottom: 50px;
}
.koenitz-section .koenitz-left .location-header h2 {
  color: #F0EBC5;
  font-family: 'Maven Pro', sans-serif;
  font-size: 36px;
  font-weight: 400;
  margin-bottom: 10px;
  line-height: 1.2;
}
.koenitz-section .koenitz-left .location-header .subtitle {
  color: #F0EBC5;
  font-family: 'Maven Pro', sans-serif;
  font-size: 16px;
  margin-bottom: 0;
  line-height: 1.75;
}
.koenitz-section .koenitz-left .map-image {
  width: 100%;
  max-width: 626px;
  border-radius: 15px;
  overflow: hidden;
}
.koenitz-section .koenitz-left .map-image img {
  width: 100%;
  height: auto;
  display: block;
}
.koenitz-section .koenitz-right .tagline-section {
  margin-bottom: 50px;
}
.koenitz-section .koenitz-right .tagline-section .tagline {
  color: #F0EBC5;
  font-family: 'Maven Pro', sans-serif;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 40px;
  line-height: 1.5;
}
.koenitz-section .koenitz-right .tagline-section .description {
  color: #F0EBC5;
  font-family: 'Maven Pro', sans-serif;
  font-size: 18px;
  line-height: 1.67;
}
.koenitz-section .koenitz-right .tagline-section .description p {
  margin-bottom: 20px;
}
.koenitz-section .koenitz-right .tagline-section .description p:last-child {
  margin-bottom: 0;
}
.koenitz-section .koenitz-right .small-images {
  display: flex;
  gap: 20px;
  justify-content: flex-start;
}
.koenitz-section .koenitz-right .small-images .small-image {
  width: 205px;
  height: 202px;
  border-radius: 25px;
  overflow: hidden;
  flex-shrink: 0;
}
.koenitz-section .koenitz-right .small-images .small-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.koenitz-section .koenitz-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 684px;
  z-index: 1;
}
.koenitz-section .koenitz-bottom img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 1200px) {
  .koenitz-section .koenitz-content {
    max-width: 90%;
    gap: 60px;
    padding: 350px 40px 150px;
  }
  .koenitz-section .koenitz-right .small-images .small-image {
    width: 160px;
    height: 160px;
  }
}
@media (max-width: 768px) {
  .koenitz-section .koenitz-content {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 300px 20px 100px;
  }
  .koenitz-section .koenitz-left .location-header h2 {
    font-size: 28px;
  }
  .koenitz-section .koenitz-left .map-image {
    max-width: 100%;
  }
  .koenitz-section .koenitz-right .tagline-section .tagline {
    font-size: 20px;
  }
  .koenitz-section .koenitz-right .small-images {
    justify-content: center;
    flex-wrap: wrap;
  }
  .koenitz-section .koenitz-right .small-images .small-image {
    width: 140px;
    height: 140px;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Maven Pro', sans-serif;
  background-color: #111519;
  color: #F0EBC5;
  line-height: 1.6;
}
.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
}
.header {
  position: relative;
  height: 100vh;
  min-height: 600px;
  background-image: url('../assets/images/Header_03.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  overflow: hidden;
  will-change: transform;
}
.header::before {
  content: '';
  position: absolute;
  top: -10%;
  left: -10%;
  width: 120%;
  height: 120%;
  background-image: url('../assets/images/Header_03.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  will-change: transform;
  z-index: -1;
}
.header-top-content {
  position: absolute;
  top: 280px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  width: 900px;
  will-change: transform;
}
.header-top-content h1 {
  font-size: 40px;
  margin-bottom: 5px;
  font-weight: 400;
  color: #F0EBC5;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}
.header-top-content p {
  font-size: 24px;
  font-weight: 700;
  color: #F0EBC5;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}
.header-bottom-content {
  position: absolute;
  bottom: 180px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  width: 900px;
  will-change: transform;
}
.header-bottom-content .header-intro-text {
  font-size: 18px;
  line-height: 28px;
  max-width: 670px;
  margin: 0 auto;
  color: #F0EBC5;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}
.scroll-indicator {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  width: 95px;
  height: 95px;
  cursor: pointer;
  will-change: transform, opacity;
  transition: opacity 0.3s ease;
}
.scroll-indicator.center {
  left: 50%;
  z-index: 3;
}
.scroll-indicator img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  animation: bounceDown 2s infinite;
}
.scroll-indicator:hover {
  opacity: 0.8;
}
@keyframes bounceDown {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}
.section {
  padding: 80px 0;
}
.section.dark-section {
  background-color: #111519;
}
.location-section {
  position: relative;
  background-color: #111519;
  padding-top: 280px;
  padding-bottom: 550px;
  margin-top: -400px;
  z-index: 2;
}
.forest-line {
  width: 100%;
  height: 437px;
  background-image: url('../assets/images/forest-line.png');
  background-size: cover;
  background-position: bottom;
  position: absolute;
  top: -350px;
  left: 0;
  right: 0;
  z-index: 3;
}
.location-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  position: relative;
  z-index: 1;
}
.location-title {
  margin-bottom: 40px;
}
.location-title h2 {
  font-size: 36px;
  margin-bottom: 15px;
  font-weight: 400;
}
.location-subtitle {
  font-size: 16px;
  color: #F0EBC5;
}
.location-map {
  width: 464px;
  height: 464px;
  position: relative;
  margin-top: 40px;
}
.location-map img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.location-map .location-marker {
  position: absolute;
  width: 20px;
  height: 20px;
  background-image: url('../assets/images/location-marker.svg');
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.location-description {
  max-width: 654px;
}
.location-description h3 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 40px;
  line-height: 36px;
}
.location-description p {
  font-size: 18px;
  line-height: 30px;
  color: #F0EBC5;
}
.location-paragraphs {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 60px;
}
.location-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.location-images .location-image {
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 15px;
}
.location-images .location-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.decorative-elements {
  position: absolute;
  top: -550px;
  left: 0;
  right: 0;
  height: 550px;
  overflow: hidden;
  z-index: 3;
}
.decorative-elements .outdoor-grass-silhouette {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 550px;
  background-image: url('../assets/images/wiese_zielscheibe_01_fertig_graublau_1.png');
  background-size: cover;
  background-position: top;
  z-index: -1;
}
.grass-silhouette {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background-image: url('../assets/images/grass-silhouette.png');
  background-size: cover;
  background-position: bottom;
}
.arrows-left {
  position: absolute;
  bottom: 40px;
  left: 100px;
  width: 200px;
  height: 100px;
  background-image: url('../assets/images/arrows-left.svg');
  background-size: contain;
  background-repeat: no-repeat;
}
.arrows-right {
  position: absolute;
  bottom: 40px;
  right: 100px;
  width: 100px;
  height: 100px;
  background-image: url('../assets/images/target.svg');
  background-size: contain;
  background-repeat: no-repeat;
}
#outdoor-experience {
  position: relative;
  background-color: #2A2E33;
  padding-top: 280px;
  padding-bottom: 160px;
  margin-top: 0;
  z-index: 2;
}
.experience-boxes {
  display: flex;
  flex-direction: column;
  gap: 160px;
  position: relative;
  z-index: 3;
}
.experience-boxes .experience-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  background-color: transparent;
  padding: 0;
  border-radius: 15px;
}
.experience-boxes .experience-box .experience-image {
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 15px;
}
.experience-boxes .experience-box .experience-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.experience-boxes .experience-box.contrast {
  background-color: rgba(17, 21, 25, 0.6);
}
.experience-boxes .experience-box.reversed {
  grid-template-columns: 1fr 1fr;
  background-color: #111519;
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
}
.experience-boxes .experience-box.reversed .experience-text {
  order: 2;
}
.experience-boxes .experience-box.reversed .experience-image {
  order: 1;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.experience-boxes .experience-box .experience-text h3 {
  font-size: 24px;
  margin-bottom: 30px;
  color: #F0EBC5;
}
.experience-boxes .experience-box .experience-text p {
  font-size: 18px;
  line-height: 30px;
  color: #F0EBC5;
}
.experience-scroll-indicator {
  text-align: center;
  margin-top: 160px;
  margin-bottom: 40px;
  width: 95px;
  height: 95px;
  margin-left: auto;
  margin-right: auto;
}
.experience-scroll-indicator img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.shooting-cinema {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.shooting-cinema .shooting-content h3 {
  font-size: 24px;
  margin-bottom: 30px;
}
.shooting-cinema .shooting-content p {
  font-size: 18px;
  line-height: 30px;
}
.highlight {
  color: #EA5A31;
  font-weight: 700;
}
@media (max-width: 480px) {
  .header {
    min-height: 400px;
    background-attachment: scroll;
  }
  .header::before {
    display: none;
  }
  .header-top-content,
  .header-bottom-content {
    will-change: auto;
  }
  .scroll-indicator {
    will-change: auto;
  }
  .header-top-content {
    top: 100px;
    width: 90%;
  }
  .header-top-content h1 {
    font-size: 28px;
    margin-bottom: 15px;
  }
  .header-top-content p {
    font-size: 20px;
  }
  .header-bottom-content {
    bottom: 80px;
    width: 95%;
  }
  .header-bottom-content .header-intro-text {
    font-size: 16px;
    line-height: 24px;
  }
}
.nav {
  background-color: #2A2E33;
  height: 80px;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  overflow: hidden;
}
.nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}
.nav-logo img {
  height: 50px;
  width: auto;
  object-fit: contain;
}
.nav-content {
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0;
}
.nav-links a {
  color: #F0EBC5;
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  white-space: nowrap;
  transition: color 0.3s ease;
}
.nav-links a:hover {
  color: #EA5A31;
}
.contact-button {
  background-color: #EA5A31;
  color: #F0EBC5;
  padding: 10px 20px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  transition: background-color 0.3s ease;
}
.contact-button:hover {
  background-color: #ef7f5f;
}
.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}
.mobile-nav-toggle .bar {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #F0EBC5;
  margin: 5px 0;
  transition: transform 0.3s ease;
}
.nav-dropdown {
  position: relative;
}
.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #2A2E33;
  border: 1px solid rgba(240, 235, 197, 0.1);
  border-radius: 8px;
  min-width: 250px;
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1001;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.dropdown-menu li {
  list-style: none;
}
.dropdown-menu li a {
  display: block;
  padding: 10px 15px;
  color: #F0EBC5;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.dropdown-menu li a:hover {
  background-color: rgba(240, 235, 197, 0.1);
  color: #EA5A31;
  padding-left: 30px;
}
@media (max-width: 992px) {
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background-color: transparent;
    border: none;
    box-shadow: none;
    padding-left: 30px;
    margin-top: 10px;
  }
  .dropdown-menu a {
    font-size: 12px;
    padding: 5px 10px;
  }
}
@media (max-width: 992px) {
  .navigation .nav-brand img {
    height: 45px;
  }
  .navigation .nav-content {
    gap: 30px;
  }
  .navigation .nav-content .nav-links {
    gap: 20px;
    font-size: 14px;
  }
  .navigation .nav-content .contact-button {
    padding: 10px 20px;
    font-size: 14px;
    min-width: 100px;
  }
  .nav-links {
    display: none;
  }
  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #2A2E33;
    padding: 20px;
    gap: 15px;
  }
  .nav-content {
    flex-direction: column;
    align-items: flex-end;
    gap: 20px;
  }
  .mobile-nav-toggle {
    display: block;
  }
}
@media (max-width: 768px) {
  .navigation .nav-brand img {
    height: 40px;
  }
  .navigation .nav-content {
    gap: 20px;
  }
  .navigation .nav-content .nav-links {
    gap: 15px;
    font-size: 12px;
  }
  .navigation .nav-content .contact-button {
    padding: 8px 16px;
    font-size: 12px;
    min-width: 80px;
  }
}
@media (max-width: 480px) {
  .contact-button {
    display: none;
  }
}
@media (max-width: 1200px) {
  .nav-links {
    gap: 20px;
  }
}
.mobile-nav-menu {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  background-color: #2A2E33;
  border-top: 1px solid rgba(240, 235, 197, 0.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 999;
}
.mobile-nav-menu.active {
  display: block;
  animation: slideDown 0.3s ease;
}
.mobile-nav-menu .mobile-nav-links {
  list-style: none;
  margin: 0;
  padding: 20px 0;
}
.mobile-nav-menu .mobile-nav-links li {
  border-bottom: 1px solid rgba(240, 235, 197, 0.1);
}
.mobile-nav-menu .mobile-nav-links li:last-child {
  border-bottom: none;
}
.mobile-nav-menu .mobile-nav-links li > a {
  display: block;
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  padding: 12px 16px;
  transition: all 0.3s ease;
}
.mobile-nav-menu .mobile-nav-links li > a:hover {
  background-color: rgba(240, 235, 197, 0.1);
  color: #F0EBC5;
}
.mobile-nav-menu .mobile-nav-links li .mobile-dropdown {
  list-style: none;
  margin: 0;
  padding: 0;
  background-color: rgba(0, 0, 0, 0.1);
}
.mobile-nav-menu .mobile-nav-links li .mobile-dropdown li {
  border-bottom: none;
}
.mobile-nav-menu .mobile-nav-links li .mobile-dropdown li a {
  display: block;
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  padding: 5px 20px;
  transition: all 0.3s ease;
}
.mobile-nav-menu .mobile-nav-links li .mobile-dropdown li a:hover {
  background-color: rgba(240, 235, 197, 0.1);
  color: #F0EBC5;
}
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.nav-logo a {
  display: block;
  transition: transform 0.3s ease;
}
.nav-logo a:hover {
  transform: scale(1.05);
}
.nav-logo a img {
  height: 50px;
  width: auto;
  object-fit: contain;
}
.mobile-nav-menu {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  background-color: #2A2E33;
  border-top: 1px solid rgba(240, 235, 197, 0.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 999;
}
.mobile-nav-menu.active {
  display: block;
  animation: slideDown 0.3s ease;
}
.mobile-nav-menu .mobile-nav-links {
  list-style: none;
  margin: 0;
  padding: 16px 0;
}
.mobile-nav-menu .mobile-nav-links li {
  border-bottom: 1px solid rgba(240, 235, 197, 0.1);
}
.mobile-nav-menu .mobile-nav-links li:last-child {
  border-bottom: none;
}
.mobile-nav-menu .mobile-nav-links li > a {
  display: block;
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  padding: 12px 16px;
  transition: all 0.3s ease;
}
.mobile-nav-menu .mobile-nav-links li > a:hover {
  background-color: rgba(240, 235, 197, 0.1);
  color: #F0EBC5;
}
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.outdoorwelt-detail-hero-title {
  background-color: #111519;
  color: #F0EBC5;
  text-align: center;
  padding: 160px 0 20px 0;
}
.outdoorwelt-detail-hero-title .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
.outdoorwelt-detail-hero-title h1 {
  font-size: 48px;
  font-weight: 400;
  margin: 0 0 10px 0;
  line-height: 1.1;
  color: #F0EBC5;
  text-transform: none;
  letter-spacing: normal;
}
.outdoorwelt-detail-hero-title p {
  font-size: 18px;
  font-weight: 300;
  color: #F0EBC5;
  margin: 0;
  opacity: 0.9;
}
.outdoorwelt-detail-main-container {
  background-color: #111519;
  padding: 60px 0 0 0;
}
.outdoorwelt-detail-main-container .container {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 40px;
}
.outdoorwelt-detail-main-container .detail-image {
  width: 100%;
  margin-bottom: 0;
}
.outdoorwelt-detail-main-container .detail-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 15px 15px 0 0;
}
.outdoorwelt-detail-main-container .content-box {
  background-color: #2A2E33;
  color: #F0EBC5;
  padding: 40px 60px 40px 60px;
  border-radius: 0 0 15px 15px;
}
.outdoorwelt-detail-main-container .content-box h2 {
  font-size: 48px;
  font-weight: 400;
  color: #F0EBC5;
  text-align: center;
  margin: 0 0 40px 0;
  line-height: 1.2;
}
.outdoorwelt-detail-main-container .content-box .content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 0;
}
.outdoorwelt-detail-main-container .content-box .content-grid .content-column p {
  font-size: 24px;
  line-height: 1.8;
  color: #F0EBC5;
  margin-bottom: 24px;
  opacity: 0.9;
}
.outdoorwelt-detail-main-container .content-box .content-grid .content-column p:last-child {
  margin-bottom: 0;
}
.outdoorwelt-detail-main-container .content-box .content-grid .content-column ul li {
  font-size: 18px;
}
.outdoorwelt-detail-main-container .cta-buttons {
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 60px 0;
}
.outdoorwelt-detail-main-container .cta-buttons .btn-primary {
  background-color: #EA5A31;
  color: white;
  font-size: 20px;
  font-weight: 600;
  padding: 16px 40px;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(234, 90, 49, 0.3);
}
.outdoorwelt-detail-main-container .cta-buttons .btn-primary:hover {
  background-color: #d33f15;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(234, 90, 49, 0.4);
}
.outdoorwelt-detail-main-container .cta-buttons .btn-secondary {
  background-color: #2A2E33;
  color: #F0EBC5;
  font-size: 20px;
  font-weight: 600;
  padding: 16px 40px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(42, 46, 51, 0.3);
}
.outdoorwelt-detail-main-container .cta-buttons .btn-secondary:hover {
  background-color: #41474f;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(42, 46, 51, 0.4);
}
.decorative-grass-bottom {
  background: url('../assets/images/wiese_02_1.png') bottom center / cover no-repeat;
  height: 150px;
  width: 100%;
  position: relative;
  z-index: 1;
}
@media (max-width: 1400px) {
  .outdoorwelt-detail-main-container .container {
    max-width: 1200px;
  }
}
@media (max-width: 1024px) {
  .outdoorwelt-detail-hero-title {
    padding: 30px 0 15px 0;
  }
  .outdoorwelt-detail-hero-title h1 {
    font-size: 36px;
  }
  .outdoorwelt-detail-hero-title p {
    font-size: 16px;
  }
  .outdoorwelt-detail-main-container .content-box h2 {
    font-size: 36px;
  }
  .outdoorwelt-detail-main-container .content-box .content-grid {
    gap: 40px;
  }
}
@media (max-width: 768px) {
  .outdoorwelt-detail-hero-title {
    padding: 20px 0 10px 0;
  }
  .outdoorwelt-detail-hero-title .container {
    padding: 0 20px;
  }
  .outdoorwelt-detail-hero-title h1 {
    font-size: 28px;
  }
  .outdoorwelt-detail-hero-title p {
    font-size: 14px;
  }
  .outdoorwelt-detail-main-container {
    padding: 40px 0 0 0;
  }
  .outdoorwelt-detail-main-container .container {
    padding: 0 20px;
  }
  .outdoorwelt-detail-main-container .content-box {
    padding: 30px 40px 30px 40px;
  }
  .outdoorwelt-detail-main-container .content-box h2 {
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 30px;
  }
  .outdoorwelt-detail-main-container .content-box .content-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 0;
  }
  .outdoorwelt-detail-main-container .content-box .content-grid .content-column p {
    font-size: 16px;
  }
  .outdoorwelt-detail-main-container .cta-buttons {
    padding: 40px 0;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .outdoorwelt-detail-main-container .cta-buttons .btn-primary,
  .outdoorwelt-detail-main-container .cta-buttons .btn-secondary {
    font-size: 18px;
    padding: 14px 30px;
    width: 100%;
    max-width: 300px;
  }
  .decorative-grass-bottom {
    height: 100px;
  }
}
@media (max-width: 480px) {
  .outdoorwelt-detail-hero-title h1 {
    font-size: 32px;
  }
  .outdoorwelt-detail-hero-title p {
    font-size: 16px;
  }
  .outdoorwelt-detail-main-container .content-box {
    padding: 20px 20px 20px 20px;
  }
  .outdoorwelt-detail-main-container .content-box h2 {
    font-size: 24px;
    font-weight: 400;
  }
  .outdoorwelt-detail-main-container .cta-buttons {
    padding: 30px 0;
  }
  .decorative-grass-bottom {
    height: 80px;
  }
}
