@charset "utf-8";
/* =========================================================
   DIVER ON TOUR – KULTURREISEN
   Datei: /assets/css/kulturreisen.css
========================================================= */


.dot-culture-duration{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin-top:16px;
  margin-bottom:8px;
  padding:8px 14px;
  border-radius:999px;
  background:#0e3a5a;
  color:#ffffff;
  border:1px solid #0e3a5a;
  font-size:13px;
  font-weight:700;
  line-height:1;
  box-shadow:0 6px 14px rgba(14,58,90,0.12);
}

.dot-culture-section{
  padding:60px 20px 80px;
  background:#f7fbfe;
  font-family:Arial,Helvetica,sans-serif;
  box-sizing:border-box;
}

.dot-culture-wrap{
  max-width:1280px;
  margin:0 auto;
}

.dot-culture-header{
  max-width:920px;
  margin:0 auto 36px;
  text-align:center;
}

.dot-culture-header h2{
  margin:0 0 14px;
  color:#0e3a5a;
  font-size:36px;
  line-height:1.2;
}

.dot-culture-header p{
  margin:0;
  color:#35556b;
  font-size:17px;
  line-height:1.8;
}

.dot-culture-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:26px;
}

.dot-culture-card{
  display:flex;
  flex-direction:column;
  background:#ffffff;
  border:1px solid #dbe7ef;
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 12px 28px rgba(14,58,90,0.08);
  transition:transform 0.2s ease, box-shadow 0.2s ease;
}

.dot-culture-card:hover{
  transform:translateY(-3px);
  box-shadow:0 18px 34px rgba(14,58,90,0.12);
}

.dot-culture-card img{
  width:100%;
  height:240px;
  object-fit:cover;
  display:block;
}

.dot-culture-card-content{
  display:flex;
  flex-direction:column;
  flex:1 1 auto;
  padding:22px 22px 24px;
}

.dot-culture-card-content h3{
  margin:0 0 12px;
  color:#0e3a5a;
  font-size:22px;
  line-height:1.3;
}

.dot-culture-card-content p{
  margin:0;
  color:#35556b;
  font-size:15px;
  line-height:1.75;
}

.dot-culture-price{
  margin-top:16px;
  color:#0e3a5a;
  font-size:16px;
  font-weight:700;
}

.dot-culture-popular-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-top:auto;
  padding-top:16px;
  border-top:1px solid #e6eef3;
  flex-wrap:wrap;
}

.dot-culture-popular{
  display:inline-flex;
  align-items:center;
  padding:7px 12px;
  border-radius:999px;
  font-size:13px;
  font-weight:700;
  line-height:1;
  letter-spacing:0.2px;
  border:1px solid transparent;
}

.dot-culture-popular--bestseller{
  background:#dff6e8;
  color:#11633c;
  border-color:#b8e7ca;
}

.dot-culture-popular--popular{
  background:#e7f1fb;
  color:#114a7a;
  border-color:#bdd8f1;
}

.dot-culture-popular--culture{
  background:#f3ecff;
  color:#5a2f8a;
  border-color:#dccbfa;
}

.dot-culture-popular--mystic{
  background:#efe7fb;
  color:#5a3b8c;
  border-color:#d4c2f2;
}

.dot-culture-popular--adventure{
  background:#fff2df;
  color:#8a4d12;
  border-color:#f3d4a5;
}

.dot-culture-popular--special{
  background:#f2f4f7;
  color:#4b5563;
  border-color:#d7dde5;
}

.dot-culture-popular--highlight{
  background:#ffe8e8;
  color:#9b1c1c;
  border-color:#f3b8b8;
}

.dot-culture-popular--time{
  background:#e9f8f3;
  color:#0f6a52;
  border-color:#bfe7da;
}

.dot-culture-stars{
  color:#f4c542;
  font-size:18px;
  line-height:1;
  letter-spacing:2px;
  white-space:nowrap;
}

.dot-culture-cta{
  margin-top:40px;
  text-align:center;
}

.dot-culture-cta a{
  display:inline-block;
  background:#0e3a5a;
  color:#ffffff;
  text-decoration:none;
  font-weight:700;
  padding:14px 24px;
  border-radius:999px;
  box-shadow:0 12px 24px rgba(14,58,90,0.18);
  transition:background 0.2s ease, transform 0.2s ease;
}

.dot-culture-cta a:hover{
  background:#145a87;
  transform:translateY(-2px);
}

.faq-section{
  padding:60px 20px;
  background:#ffffff;
}

.faq-section .wrap{
  max-width:900px;
  margin:0 auto;
}

.faq-section h2{
  margin:0 0 12px;
  font-size:2rem;
  line-height:1.2;
  color:#0e3a5a;
  text-align:center;
}

.faq-intro{
  max-width:760px;
  margin:0 auto 30px;
  text-align:center;
  font-size:1rem;
  line-height:1.7;
  color:#4a6477;
}

.faq-list{
  display:grid;
  gap:14px;
}

.faq-item{
  background:#f7fafc;
  border:1px solid #dbe7ef;
  border-radius:14px;
  overflow:hidden;
}

.faq-item summary{
  cursor:pointer;
  list-style:none;
  padding:18px 20px;
  font-size:1rem;
  font-weight:700;
  color:#0e3a5a;
  position:relative;
}

.faq-item summary::-webkit-details-marker{
  display:none;
}

.faq-item summary::after{
  content:"+";
  position:absolute;
  right:20px;
  top:50%;
  transform:translateY(-50%);
  font-size:1.4rem;
  line-height:1;
  color:#0e3a5a;
}

.faq-item[open] summary::after{
  content:"–";
}

.faq-answer{
  padding:0 20px 18px;
}

.faq-answer p{
  margin:0;
  font-size:0.98rem;
  line-height:1.7;
  color:#355066;
}

@media (max-width:1100px){
  .dot-culture-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}

@media (max-width:768px){
  .dot-culture-section{
    padding:40px 16px 56px;
  }

  .dot-culture-header{
    margin-bottom:28px;
  }

  .dot-culture-header h2{
    font-size:30px;
  }

  .dot-culture-header p{
    font-size:16px;
  }

  .dot-culture-grid{
    grid-template-columns:1fr;
    gap:20px;
  }

  .dot-culture-card img{
    height:220px;
  }

  .dot-culture-card-content{
    padding:18px 18px 20px;
  }

  .dot-culture-card-content h3{
    font-size:20px;
  }

  .dot-culture-popular-row{
    justify-content:flex-start;
  }
}

@media (max-width:640px){
  .faq-section{
    padding:40px 16px;
  }

  .faq-section h2{
    font-size:1.6rem;
  }

  .faq-item summary{
    padding:16px 18px;
    padding-right:46px;
  }

  .faq-answer{
    padding:0 18px 16px;
  }
}