@media (max-width:991px) {
    body.poster {
        margin-top: 60vh;
    }    
}

body.poster {
    background-attachment: fixed;
}

.top-5 {
    top: 5px;
}

.accordion{
    width:80%;
}

@media (max-width:680px) {
    .accordion{
    width:100%;
    }
    div.cookiejar__container{
    padding-bottom:100px;
    }
    h2{
        font-size:14px;
    }
}

@media (max-width:680px) {
    h2{
        font-size:20px;
    }
    h3{
        font-size:18px;
    }
}



.hero {
  position: relative;
  height: 85vh;
  background-image: url('https://images.unsplash.com/photo-1506744038136-46273834b3fb'); /* Beispielbild */
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.overlay {
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.hero-content {
  text-align: center;
  color: #fff;
  max-width: 800px;
  margin: 0 auto;
}
.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}
.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}
.btn {
  background-color: #ffffffcc;
  color: #1a1a1a;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: normal;
  text-decoration: none;
  transition: background 0.3s;
}
.btn:hover {
  background-color: #ffffff;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.2rem;
  }
  .nav-links {
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.8rem;
  }
  .hero-content p {
    font-size: 1rem;
  }
  .btn {
    padding: 10px 20px;
  }
}
.section {
  background-color: #fff;
  padding: 40px 20px;
}

.container {
  
  margin: 0 auto;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #1a1a1a;
}

p.section-subtitle {
  text-align: center;
  font-size: 1.3rem;
  color: #555;
  margin-bottom: 50px;
  max-width: 950px;
  margin-left: auto;
  margin-right: auto;
}

.features {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.feature-card {
  background-color: #f0f0f0;
  flex: 1;
  min-width: 350px;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  transition: transform 0.3s;
}
.feature-card:hover {
  transform: translateY(-5px);
}
.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #333;
}
.feature-card p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .features {
    flex-direction: column;
    gap: 20px;
  }  
}

.why-oko {
  background-color: #f6f5f3;
  padding: 40px 20px;
}

.why-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.why-text {
  flex: 1 1 500px;
}

.why-text h2 {
  font-size: 2.4rem;
  margin-bottom: 20px;
  color: #1a1a1a;
}

.why-text p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 25px;
  line-height: 1.6;
}

.why-list {
  list-style: none;
  padding-left: 0;
}
.why-list li {
  font-size: 1rem;
  margin-bottom: 12px;
  color: #444;
  display: flex;
  align-items: center;
}

.why-image {
  flex: 1 1 400px;
  text-align: center;
}
.why-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 20px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

/* Responsive */
@media (max-width: 768px) {
  .why-container {
    flex-direction: column-reverse;
    text-align: center;    
  }

  .why-text h2 {
    font-size: 2rem;
  }

  .why-text p,
  .why-list li {
    font-size: 1rem;
  }
  .why-image{
    max-height:200px;
  }
  .why-oko{
    padding:20px 0;
  }
}

.retreats {
  background-color: #ffffff;
  padding: 40px 20px;
}

.retreat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.retreat-card {
  background-color: #f2f2f2;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s;
}
.retreat-card:hover {
  transform: translateY(-5px);
}

.retreat-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.retreat-info {
  padding: 20px;
}
.retreat-info h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #1a1a1a;
}
.retreat-info p {
  font-size: 1rem;
  color: #555;
}

/* Section title/subtitle reuse */
.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 10px;
  color: #1a1a1a;
}
.section-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: #555;
  max-width: 600px;
  margin: 0 auto 40px;
}


.retreat-price {
  margin-top: 8px;
  font-weight: bold;
  color: #2e7d32;
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
}

.cta-section {
  background: linear-gradient(to right, #7f7b6a, #a8a284);
  padding: 80px 20px;
  text-align: center;
}

.cta-container {
  max-width: 800px;
  margin: 0 auto;
  color: #1a1a1a;
}

.cta-section h2 {
  font-size: 2.4rem;
  margin-bottom: 20px;
  color: #252422;
}

.cta-section p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #333;
  line-height: 1.6;
}

.cta-button {
  display: inline-block;
  background-color: #252422;
  color: #fff;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  transition: background 0.3s ease;
}
.cta-button:hover {
  background-color: #252422;
}

/* Responsive */
@media (max-width: 768px) {
  .cta-section h2 {
    font-size: 2rem;
  }

  .cta-section p {
    font-size: 1rem;
  }

  .cta-button {
    padding: 12px 24px;
    font-size: 0.95rem;
  }
}

.container {
  margin: 0 auto;
  padding: 20px 20px;
}

.mission, .team, .vision {
      margin-bottom: 3rem;
    }

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.team-member {
  background: white;
  padding: 1rem;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  text-align: center;
}

.custom-title{
    margin-top:0px!important;
}

@media (max-width: 768px) {
  .team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
  .custom-title{
    margin-top:120px!important;
  }
}


.btn-primary {
    background-color: #68485d;
    border-color: #68485d;
    color: #fff;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #fff;
    color: #68485d;
    border-color: #68485d;
}

.pricing-card {
        border: 2px solid #2d4628;
        border-radius: 10px;
        background-color: #fff;
        transition: transform 0.2s;
    }
    .pricing-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    .pricing-header {
        background-color: #2d4628;
        color: #fff;
        padding: 1rem;
        border-radius: 10px 10px 0 0;
        text-align: center;
    }
    .price {
        color: #E83100;
        font-size: 2rem;
        font-weight: bold;
    }
    .btn-custom {
        background-color: #E83100;
        color: #fff;
        border: none;
    }
    .btn-custom:hover {
        background-color: #c02700;
        color: #fff;
    }