@charset "utf-8";

/* =========================================================
   DIVER ON TOUR – SCHNORCHELTOUREN IN HURGHADA
   Datei: /assets/css/schnorchelntouren-in-hurghada.css
========================================================= */

*{
  box-sizing:border-box;
}

html,
body{
  margin:0;
  padding:0;
  max-width:100%;
  overflow-x:hidden;
}

body{
  font-family:Arial,Helvetica,sans-serif;
  background:#ffffff;
  color:#163047;
}

img{
  display:block;
  max-width:100%;
  height:auto;
}

.dot-section{
  padding:56px 0;
}

.dot-container{
  width:min(1200px, calc(100% - 32px));
  margin:0 auto;
}

.dot-section-title{
  margin:0 0 14px;
  font-size:34px;
  line-height:1.2;
  text-align:center;
  color:#0e3a5a;
}

.dot-section-intro{
  max-width:920px;
  margin:0 auto 32px;
  font-size:17px;
  line-height:1.8;
  text-align:center;
  color:#4f6477;
}

/* =========================================================
   HIGHLIGHTS
========================================================= */

.dot-highlights{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:22px;
}

.dot-highlight-card{
  background:#ffffff;
  border:1px solid #d9e7f0;
  border-radius:20px;
  padding:24px;
  box-shadow:0 10px 26px rgba(0,0,0,0.05);
}

.dot-highlight-card h3{
  margin:0 0 10px;
  font-size:22px;
  line-height:1.3;
  color:#0e3a5a;
}

.dot-highlight-card p{
  margin:0;
  font-size:15px;
  line-height:1.75;
  color:#4e6578;
}

/* =========================================================
   TOURENKARTEN
========================================================= */

.dot-snorkel-cards{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:22px;
  width:100%;
}

.dot-snorkel-card{
  position:relative;
  min-width:0;
}

.dot-snorkel-card__inner{
  display:flex;
  flex-direction:column;
  height:100%;
  background:#ffffff;
  border:1px solid #c9d9e5;
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 10px 26px rgba(0,0,0,0.06);
  transition:border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.dot-snorkel-card:hover .dot-snorkel-card__inner{
  transform:translateY(-2px);
  border-color:#9fc2dd;
  box-shadow:0 14px 28px rgba(14,58,90,0.10);
}

.dot-snorkel-card__image{
  width:100%;
  aspect-ratio:16 / 9;
  background:linear-gradient(135deg,#d9e9f3 0%, #eef5fa 100%);
  border-bottom:1px solid #d9e7f0;
  overflow:hidden;
}

.dot-snorkel-card__image img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.dot-snorkel-card__title,
.dot-snorkel-card__text,
.dot-snorkel-card__price,
.dot-snorkel-card__qty{
  display:block;
  margin-left:20px;
  margin-right:20px;
}

.dot-snorkel-card__title{
  margin-top:20px;
  font-size:22px;
  line-height:1.35;
  font-weight:700;
  color:#0e3a5a;
}

.dot-snorkel-card__text{
  margin-top:12px;
  font-size:15px;
  line-height:1.8;
  color:#4e6578;
}

.dot-snorkel-card__price{
  margin-top:18px;
  padding:12px 14px;
  border-radius:14px;
  background:rgba(208, 232, 246, 0.55);
  color:#0e3a5a;
  font-size:18px;
  line-height:1.4;
  font-weight:700;
}

.dot-snorkel-card__qty{
  margin-top:auto;
  padding-top:18px;
  padding-bottom:20px;
}

.dot-snorkel-card__qty .dot-btn-primary{
  width:100%;
  min-height:50px;
  justify-content:center;
  text-align:center;
}

/* =========================================================
   FAQ-KARTEN
========================================================= */

.dot-faq-section{
  padding-top:24px;
}

.dot-faq-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:24px;
  margin-top:32px;
}

.dot-faq-card{
  background:#ffffff;
  border:1px solid rgba(14,58,90,0.12);
  border-radius:18px;
  padding:24px;
  box-shadow:0 10px 30px rgba(14,58,90,0.08);
  height:100%;
}

.dot-faq-card h3{
  margin:0 0 12px;
  font-size:18px;
  line-height:1.4;
  color:#0e3a5a;
}

.dot-faq-card p{
  margin:0;
  font-size:15px;
  line-height:1.75;
  color:#334155;
}

/* =========================================================
   BUTTONS / LINKS
========================================================= */

.dot-btn-primary{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:none;
  border-radius:999px;
  padding:15px 26px;
  background:rgba(208, 232, 246, 0.75);
  color:#0e3a5a;
  font-size:16px;
  font-weight:700;
  text-decoration:none;
  cursor:pointer;
  font-family:Arial,Helvetica,sans-serif;
  transition:background-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.dot-btn-primary:hover{
  background:rgba(208, 232, 246, 0.95);
  color:#0e3a5a;
  transform:translateY(-1px);
  box-shadow:0 10px 22px rgba(14,58,90,0.12);
}

.dot-top-link{
  display:inline-block;
  margin-top:18px;
  color:#0e3a5a;
  text-decoration:none;
  font-weight:700;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width:980px){
  .dot-highlights,
  .dot-snorkel-cards,
  .dot-faq-grid{
    grid-template-columns:1fr;
  }
}

@media (max-width:760px){
  .dot-section{
    padding:40px 0;
  }

  .dot-container{
    width:min(100%, calc(100% - 28px));
  }

  .dot-section-title{
    font-size:28px;
  }

  .dot-section-intro{
    font-size:16px;
    margin-bottom:24px;
  }

  .dot-highlight-card,
  .dot-faq-card{
    padding:20px 16px;
    border-radius:18px;
  }

  .dot-snorkel-card__title{
    font-size:19px;
    margin-left:16px;
    margin-right:16px;
  }

  .dot-snorkel-card__text,
  .dot-snorkel-card__price,
  .dot-snorkel-card__qty{
    margin-left:16px;
    margin-right:16px;
  }

  .dot-snorkel-card__price{
    font-size:17px;
  }

  .dot-snorkel-card__qty{
    padding-bottom:16px;
  }

  .dot-faq-grid{
    gap:18px;
    margin-top:24px;
  }

  .dot-faq-card h3{
    font-size:17px;
  }
}