@charset "utf-8";
/* =========================================================
   DIVER ON TOUR – TAUCHPLÄTZE HURGHADA
   Datei: /assets/css/tauchplaetze-hurghada.css
========================================================= */

/* =========================================================
   BASIS
========================================================= */

*,
*::before,
*::after{
  box-sizing:border-box;
}

html,
body{
  margin:0;
  padding:0;
  max-width:100%;
  overflow-x:hidden;
}

body{
  background:#ffffff;
  color:#18384a;
  font-family:Arial, Helvetica, sans-serif;
}

img,
video{
  display:block;
  max-width:100%;
  height:auto;
}

a{
  text-decoration:none;
}

main{
  display:block;
  width:100%;
}

.dot-container{
  width:100%;
  max-width:1180px;
  margin:0 auto;
  padding:0 18px;
}

.dot-container--narrow{
  max-width:940px;
}

/* =========================================================
   HERO
========================================================= */

.dot-hero-banner{
  position:relative;
  min-height:640px;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  background:#0e3a5a;
}

.dot-hero-banner > img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center center;
  z-index:0;
}

.dot-hero-banner::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(7,33,51,0.74) 0%, rgba(7,33,51,0.48) 45%, rgba(7,33,51,0.18) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.06) 0%, rgba(0,0,0,0.15) 100%);
  z-index:1;
}

.dot-hero-content{
  position:relative;
  z-index:2;
  width:min(1180px, calc(100% - 36px));
  margin:0 auto;
  padding:56px 0;
}

.dot-hero-box{
  max-width:720px;
  color:#ffffff;
}

.dot-hero-kicker{
  margin:0 0 12px;
  color:#b8dbee;
  font-size:13px;
  font-weight:700;
  letter-spacing:0.08em;
  text-transform:uppercase;
  line-height:1.3;
}

.dot-hero-box h1{
  margin:0 0 16px;
  max-width:680px;
  color:#ffffff;
  font-size:clamp(32px, 4.8vw, 54px);
  line-height:1.08;
}

.dot-hero-box p{
  margin:0;
  max-width:600px;
  color:#f1f7fb;
  font-size:17px;
  line-height:1.66;
}

.dot-hero-buttons{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:12px;
  margin-top:22px;
}

.dot-hero-buttons .dot-hero-button{
  width:auto;
  align-self:flex-start;
}

/* =========================================================
   SEKTIONEN / ÜBERSCHRIFTEN
========================================================= */

.dot-places-intro,
.dot-experience-section,
.dot-site-types-section,
.dot-map-section,
.dot-photo-section,
.dot-faq-cards-section,
.dot-bottom-cta-section{
  padding:52px 0;
}

.dot-section-head{
  text-align:center;
  margin-bottom:30px;
}

.dot-section-head h2{
  margin:0 0 12px;
  color:#0e3a5a;
  font-size:clamp(1.9rem, 2.7vw, 2.65rem);
  line-height:1.18;
}

.dot-section-head p{
  max-width:940px;
  margin:0 auto 12px;
  color:#35556b;
  font-size:1.01rem;
  line-height:1.76;
}

.dot-section-head p:last-child{
  margin-bottom:0;
}

.dot-map-note-small{
  font-size:0.92rem !important;
  font-weight:700;
  color:#0e3a5a !important;
}

/* =========================================================
   BUTTONS / CTAS
========================================================= */

.dot-center-actions{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:12px;
  margin-top:22px;
}

.dot-outline-button,
.dot-inline-button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:46px;
  padding:11px 20px;
  border-radius:10px;
  background:#ffffff;
  color:#0e3a5a;
  border:1px solid #cfe0ea;
  font-weight:700;
  font-size:0.95rem;
  line-height:1.3;
  box-shadow:0 8px 18px rgba(14,58,90,0.08);
  transition:transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.dot-outline-button:hover,
.dot-inline-button:hover{
  transform:translateY(-1px);
  background:#f4f8fb;
}

.dot-card-actions{
  margin-top:16px;
}

/* =========================================================
   INTRO-KARTEN
========================================================= */

.dot-places-intro{
  background:#ffffff;
}

.dot-place-overview-grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:18px;
  margin-top:12px;
}

.dot-place-overview-card{
  background:#f8fcfe;
  border:1px solid #dcecf2;
  border-radius:18px;
  padding:20px 18px;
  box-shadow:0 10px 22px rgba(7,45,67,0.05);
}

.dot-place-overview-card h3{
  margin:0 0 10px;
  color:#0e3a5a;
  font-size:1.06rem;
  line-height:1.34;
}

.dot-place-overview-card p{
  margin:0;
  color:#35556b;
  font-size:0.96rem;
  line-height:1.68;
}

/* =========================================================
   VIDEO-/ERLEBNIS-KARTEN
========================================================= */

.dot-experience-section{
  background:#f8fcfe;
}

.dot-experience-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:18px;
}

.dot-experience-card{
  background:#ffffff;
  border:1px solid #dcecf2;
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 10px 22px rgba(7,45,67,0.05);
}

.dot-experience-card__media{
  background:#000000;
}

.dot-experience-card__media video{
  width:100%;
  aspect-ratio:16 / 10;
  object-fit:cover;
  display:block;
}

.dot-experience-card__body{
  padding:18px;
}

.dot-experience-card__body h3{
  margin:0 0 10px;
  color:#0e3a5a;
  font-size:1.08rem;
  line-height:1.34;
}

.dot-experience-card__body p{
  margin:0;
  color:#35556b;
  font-size:0.96rem;
  line-height:1.68;
}

/* =========================================================
   TYPOLOGIE-KARTEN
========================================================= */

.dot-site-types-section{
  background:#ffffff;
}

.dot-site-types-grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:18px;
}

.dot-site-types-card{
  background:#f8fcfe;
  border:1px solid #dcecf2;
  border-radius:18px;
  padding:20px 18px;
  box-shadow:0 10px 22px rgba(7,45,67,0.05);
}

.dot-site-types-card h3{
  margin:0 0 10px;
  color:#0e3a5a;
  font-size:1.06rem;
  line-height:1.34;
}

.dot-site-types-card p{
  margin:0;
  color:#35556b;
  font-size:0.96rem;
  line-height:1.68;
}

/* =========================================================
   TAUCHKARTEN
========================================================= */

.dot-map-section{
  background:#ffffff;
}

.dot-map-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:18px;
}

.dot-map-card{
  background:#ffffff;
  border:1px solid #dcecf2;
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 10px 22px rgba(7,45,67,0.05);
}

.dot-map-img{
  background:#f1f7fb;
  overflow:hidden;
}

.dot-map-img img{
  width:100%;
  aspect-ratio:16 / 10;
  object-fit:cover;
  cursor:pointer;
  transition:transform 0.25s ease;
}

.dot-map-img img:hover{
  transform:scale(1.02);
}

.dot-map-card h3{
  margin:18px 18px 10px;
  color:#0e3a5a;
  font-size:1.08rem;
  line-height:1.34;
}

.dot-map-card p{
  margin:0 18px 18px;
  color:#35556b;
  font-size:0.96rem;
  line-height:1.68;
}

/* =========================================================
   FOTO-KARTEN
========================================================= */

.dot-photo-section{
  background:#f8fcfe;
}

.dot-photo-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:18px;
}

.dot-photo-card{
  background:#ffffff;
  border:1px solid #dcecf2;
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 10px 22px rgba(7,45,67,0.05);
}

.dot-photo-card img{
  width:100%;
  aspect-ratio:16 / 10;
  object-fit:cover;
}

.dot-photo-card__body{
  padding:18px;
}

.dot-photo-card__body h3{
  margin:0 0 10px;
  color:#0e3a5a;
  font-size:1.08rem;
  line-height:1.34;
}

.dot-photo-card__body p{
  margin:0;
  color:#35556b;
  font-size:0.96rem;
  line-height:1.68;
}

/* =========================================================
   FAQ-KARTEN
========================================================= */

.dot-faq-cards-section{
  background:#ffffff;
}

.dot-faq-card-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:18px;
}

.dot-faq-card{
  display:flex;
  flex-direction:column;
  height:100%;
  background:#f8fcfe;
  border:1px solid #dcecf2;
  border-radius:18px;
  padding:20px 18px;
  box-shadow:0 10px 22px rgba(7,45,67,0.05);
}

.dot-faq-card h3{
  margin:0 0 10px;
  color:#0e3a5a;
  font-size:1.06rem;
  line-height:1.34;
}

.dot-faq-card p{
  margin:0;
  color:#35556b;
  font-size:0.96rem;
  line-height:1.68;
}

.dot-faq-card .dot-card-actions{
  margin-top:auto;
  padding-top:16px;
}

/* =========================================================
   ABSCHLUSS-CTA
========================================================= */

.dot-bottom-cta-section{
  background:#f8fcfe;
}

.dot-bottom-cta-card{
  background:#ffffff;
  border:1px solid #dcecf2;
  border-radius:22px;
  padding:30px 24px;
  text-align:center;
  box-shadow:0 12px 26px rgba(7,45,67,0.06);
}

.dot-bottom-cta-card h2{
  margin:0 0 12px;
  color:#0e3a5a;
  font-size:clamp(1.7rem, 2.3vw, 2.2rem);
  line-height:1.2;
}

.dot-bottom-cta-card p{
  max-width:760px;
  margin:0 auto;
  color:#35556b;
  font-size:1rem;
  line-height:1.72;
}

/* =========================================================
   LIGHTBOX
========================================================= */

.dot-lightbox{
  position:fixed;
  inset:0;
  display:none;
  align-items:center;
  justify-content:center;
  padding:24px;
  background:rgba(6,22,34,0.88);
  z-index:5000;
}

.dot-lightbox.is-open{
  display:flex;
}

.dot-lightbox img{
  max-width:min(1100px, 92vw);
  max-height:84vh;
  border-radius:14px;
  box-shadow:0 18px 36px rgba(0,0,0,0.35);
}

.dot-lightbox-close,
.dot-lightbox-nav{
  position:absolute;
  border:none;
  cursor:pointer;
  color:#ffffff;
  background:rgba(14,58,90,0.92);
  box-shadow:0 8px 20px rgba(0,0,0,0.22);
}

.dot-lightbox-close{
  top:20px;
  right:20px;
  width:46px;
  height:46px;
  border-radius:999px;
  font-size:22px;
  line-height:1;
}

.dot-lightbox-nav{
  top:50%;
  transform:translateY(-50%);
  width:50px;
  height:50px;
  border-radius:999px;
  font-size:26px;
  line-height:1;
}

.dot-lightbox-prev{
  left:20px;
}

.dot-lightbox-next{
  right:20px;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width:1100px){
  .dot-place-overview-grid,
  .dot-site-types-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }

  .dot-experience-grid,
  .dot-map-grid,
  .dot-photo-grid,
  .dot-faq-card-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }
}

@media (max-width:900px){
  .dot-hero-banner{
    min-height:620px;
  }

  .dot-hero-content{
    padding:46px 0;
  }

  .dot-hero-box{
    max-width:640px;
  }

  .dot-hero-box h1{
    font-size:clamp(30px, 5vw, 44px);
  }

  .dot-hero-box p{
    max-width:540px;
    font-size:16px;
    line-height:1.6;
  }
}

@media (max-width:768px){
  .dot-container{
    padding:0 14px;
  }

  .dot-places-intro,
  .dot-experience-section,
  .dot-site-types-section,
  .dot-map-section,
  .dot-photo-section,
  .dot-faq-cards-section,
  .dot-bottom-cta-section{
    padding:34px 0;
  }

  .dot-section-head{
    margin-bottom:22px;
  }

  .dot-section-head h2{
    font-size:1.5rem;
    line-height:1.22;
  }

  .dot-section-head p,
  .dot-place-overview-card p,
  .dot-experience-card__body p,
  .dot-site-types-card p,
  .dot-map-card p,
  .dot-photo-card__body p,
  .dot-faq-card p,
  .dot-bottom-cta-card p{
    font-size:0.95rem;
    line-height:1.58;
  }

  .dot-hero-banner{
    min-height:680px;
    align-items:flex-start;
  }

  .dot-hero-content{
    width:min(1180px, calc(100% - 24px));
    padding:70px 0 24px;
  }

  .dot-hero-box{
    max-width:100%;
  }

  .dot-hero-box h1,
  .dot-hero-box p{
    max-width:100%;
  }

  .dot-hero-box h1{
    font-size:clamp(25px, 8vw, 34px);
    line-height:1.12;
  }

  .dot-hero-box p{
    font-size:15px;
    line-height:1.5;
  }

  .dot-hero-buttons{
    width:100%;
    align-items:stretch;
    gap:10px;
    margin-top:18px;
  }

  .dot-hero-buttons .dot-hero-button{
    width:100%;
    align-self:stretch;
  }

  .dot-center-actions{
    flex-direction:column;
  }

  .dot-outline-button,
  .dot-inline-button{
    width:100%;
  }

  .dot-place-overview-grid,
  .dot-experience-grid,
  .dot-site-types-grid,
  .dot-map-grid,
  .dot-photo-grid,
  .dot-faq-card-grid{
    grid-template-columns:1fr;
    gap:14px;
  }

  .dot-place-overview-card,
  .dot-site-types-card,
  .dot-faq-card,
  .dot-bottom-cta-card{
    padding:18px 16px;
  }

  .dot-experience-card__body,
  .dot-photo-card__body{
    padding:16px;
  }

  .dot-map-card h3{
    margin:16px 16px 10px;
  }

  .dot-map-card p{
    margin:0 16px 16px;
  }

  .dot-lightbox{
    padding:14px;
  }

  .dot-lightbox img{
    max-width:94vw;
    max-height:76vh;
  }

  .dot-lightbox-close{
    top:12px;
    right:12px;
    width:44px;
    height:44px;
  }

  .dot-lightbox-nav{
    width:44px;
    height:44px;
    font-size:24px;
  }

  .dot-lightbox-prev{
    left:10px;
  }

  .dot-lightbox-next{
    right:10px;
  }
}

@media (max-width:479px){
  .dot-place-overview-card,
  .dot-experience-card,
  .dot-site-types-card,
  .dot-map-card,
  .dot-photo-card,
  .dot-faq-card,
  .dot-bottom-cta-card{
    border-radius:16px;
  }

  .dot-map-img img,
  .dot-photo-card img,
  .dot-experience-card__media video{
    aspect-ratio:16 / 11;
  }
}