@charset "utf-8";
/* =========================================================
   DIVER ON TOUR – HURGHADA GUIDE
   Datei: /assets/css/hurghada-guide.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%;
}

.hg-container{
  width:100%;
  max-width:1180px;
  margin:0 auto;
  padding:0 18px;
}

.hg-container--narrow{
  max-width:940px;
}

/* =========================================================
   HERO
========================================================= */

.hg-hero{
  position:relative;
  min-height:640px;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  background:#0e3a5a;
}

.hg-hero__media{
  position:absolute;
  inset:0;
  z-index:0;
}

.hg-hero__media img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center center;
}

.hg-hero::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.16) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.06) 0%, rgba(0,0,0,0.16) 100%);
  z-index:1;
}

.hg-hero__content{
  position:relative;
  z-index:2;
  width:min(1180px, calc(100% - 36px));
  margin:0 auto;
  padding:56px 0;
}

.hg-hero__box{
  max-width:760px;
  color:#ffffff;
}

.hg-kicker{
  margin:0 0 12px;
  color:#b8dbee;
  font-size:13px;
  font-weight:700;
  letter-spacing:0.08em;
  text-transform:uppercase;
  line-height:1.3;
}

.hg-hero__box h1{
  margin:0 0 16px;
  max-width:720px;
  color:#ffffff;
  font-size:clamp(32px, 4.8vw, 54px);
  line-height:1.08;
}

.hg-hero__box p{
  margin:0 0 14px;
  max-width:650px;
  color:#f1f7fb;
  font-size:17px;
  line-height:1.68;
}

.hg-hero__box p:last-of-type{
  margin-bottom:0;
}

.hg-hero__buttons{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:12px;
  margin-top:22px;
}

.hg-hero__buttons .hg-btn{
  width:auto;
  max-width:100%;
  flex:0 0 auto;
  align-self:flex-start;
}

/* =========================================================
   BUTTONS
========================================================= */

.hg-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  min-height:46px;
  padding:11px 20px;
  border-radius:10px;
  font-weight:700;
  font-size:0.95rem;
  line-height:1.3;
  transition:transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.hg-btn:hover{
  transform:translateY(-1px);
}

.hg-btn--primary{
  background:#0e3a5a;
  color:#ffffff;
  box-shadow:0 8px 18px rgba(14,58,90,0.18);
}

.hg-btn--primary:hover{
  background:#145a87;
}

.hg-btn--secondary{
  background:#ffffff;
  color:#0e3a5a;
  border:1px solid #cfe0ea;
  box-shadow:0 8px 18px rgba(14,58,90,0.08);
}

.hg-btn--secondary:hover{
  background:#f4f8fb;
}

/* =========================================================
   SECTION LAYOUT
========================================================= */

.hg-nav-section{
  padding:26px 0 18px;
  background:#ffffff;
}

.hg-intro-section{
  padding:18px 0 18px;
  background:#ffffff;
}

.hg-section{
  padding:52px 0;
  background:#ffffff;
}

.hg-section--light{
  background:#f8fcfe;
}

.hg-section-head{
  text-align:center;
  margin-bottom:30px;
}

.hg-section-head h2{
  margin:0 0 12px;
  color:#0e3a5a;
  font-size:clamp(1.9rem, 2.7vw, 2.65rem);
  line-height:1.18;
}

.hg-section-head p{
  max-width:960px;
  margin:0 auto 12px;
  color:#35556b;
  font-size:1.01rem;
  line-height:1.76;
}

.hg-section-head p:last-child{
  margin-bottom:0;
}

/* =========================================================
   GUIDE NAVIGATION
========================================================= */

.hg-nav-grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:14px;
}

.hg-nav-card{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  min-height:56px;
  padding:12px 14px;
  background:#f8fcfe;
  border:1px solid #dcecf2;
  border-radius:16px;
  color:#0e3a5a;
  font-weight:700;
  font-size:0.95rem;
  line-height:1.3;
  text-align:center;
  box-shadow:0 8px 18px rgba(7,45,67,0.05);
  transition:transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.hg-nav-card:hover{
  transform:translateY(-1px);
  background:#ffffff;
  box-shadow:0 10px 20px rgba(7,45,67,0.08);
}

.hg-nav-card span{
  display:inline-block;
}

/* =========================================================
   STEP CARDS
========================================================= */

.hg-steps-grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:18px;
}

.hg-step-card{
  min-width:0;
  background:#ffffff;
  border:1px solid #dcecf2;
  border-radius:18px;
  padding:22px 18px 20px;
  box-shadow:0 10px 22px rgba(7,45,67,0.05);
}

.hg-step-number{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:34px;
  height:34px;
  margin-bottom:14px;
  border-radius:999px;
  background:#0e3a5a;
  color:#ffffff;
  font-size:0.95rem;
  font-weight:700;
  line-height:1;
}

.hg-step-card h3{
  margin:0 0 10px;
  color:#0e3a5a;
  font-size:1.05rem;
  line-height:1.34;
}

.hg-step-card p{
  margin:0 0 12px;
  color:#35556b;
  font-size:0.96rem;
  line-height:1.68;
}

.hg-step-card ul{
  margin:0;
  padding-left:18px;
  color:#35556b;
  font-size:0.95rem;
  line-height:1.66;
}

.hg-step-card ul li{
  margin:0 0 8px;
}

.hg-step-card ul li:last-child{
  margin-bottom:0;
}

/* =========================================================
   INFO BOXES
========================================================= */

.hg-info-row{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:18px;
  margin-top:18px;
}

.hg-info-box{
  background:#ffffff;
  border:1px solid #dcecf2;
  border-radius:18px;
  padding:20px 18px;
  box-shadow:0 10px 22px rgba(7,45,67,0.05);
}

.hg-info-box h3{
  margin:0 0 10px;
  color:#0e3a5a;
  font-size:1.05rem;
  line-height:1.34;
}

.hg-info-box ul{
  margin:0;
  padding-left:18px;
  color:#35556b;
  font-size:0.95rem;
  line-height:1.66;
}

.hg-info-box ul li{
  margin:0 0 8px;
}

.hg-info-box ul li:last-child{
  margin-bottom:0;
}

/* =========================================================
   TIP CARDS
========================================================= */

.hg-tip-grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:18px;
}

.hg-tip-card{
  min-width:0;
  background:#ffffff;
  border:1px solid #dcecf2;
  border-radius:18px;
  padding:20px 18px;
  box-shadow:0 10px 22px rgba(7,45,67,0.05);
}

.hg-tip-card h3{
  margin:0 0 10px;
  color:#0e3a5a;
  font-size:1.05rem;
  line-height:1.34;
}

.hg-tip-card ul{
  margin:0;
  padding-left:18px;
  color:#35556b;
  font-size:0.95rem;
  line-height:1.66;
}

.hg-tip-card ul li{
  margin:0 0 8px;
}

.hg-tip-card ul li:last-child{
  margin-bottom:0;
}

/* =========================================================
   TAUCHVIDEOS ÜBER RIFFKARTEN
========================================================= */

.hg-tauchvideo-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:18px;
  margin-bottom:18px;
}

.hg-tauchvideo-card{
  min-width:0;
  display:flex;
  flex-direction:column;
  height:100%;
  background:#ffffff;
  border:1px solid #dcecf2;
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 10px 22px rgba(7,45,67,0.05);
}

.hg-tauchvideo-card__media{
  background:#eff6fa;
  overflow:hidden;
}

.hg-tauchvideo-card__media video{
  width:100%;
  height:100%;
  aspect-ratio:16 / 10;
  object-fit:cover;
  display:block;
}

.hg-tauchvideo-card__body{
  padding:18px 18px 20px;
}

.hg-tauchvideo-card__body h3{
  margin:0 0 10px;
  color:#0e3a5a;
  font-size:1.08rem;
  line-height:1.34;
}

.hg-tauchvideo-card__body p{
  margin:0;
  color:#35556b;
  font-size:0.96rem;
  line-height:1.68;
}

/* =========================================================
   RIFFKARTEN
========================================================= */

.guide-card-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:18px;
}

.hg-reef-card{
  min-width:0;
  display:flex;
  flex-direction:column;
  height:100%;
  background:#ffffff;
  border:1px solid #dcecf2;
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 10px 22px rgba(7,45,67,0.05);
}

.hg-reef-card__image{
  background:#eff6fa;
}

.hg-reef-card__image img{
  width:100%;
  aspect-ratio:16 / 10;
  object-fit:cover;
}

.hg-reef-card__body{
  padding:18px 18px 20px;
}

.hg-reef-card__body h3{
  margin:0 0 10px;
  color:#0e3a5a;
  font-size:1.08rem;
  line-height:1.34;
}

.hg-reef-card__body p{
  margin:0;
  color:#35556b;
  font-size:0.96rem;
  line-height:1.68;
}

/* =========================================================
   FEATURE / SAFARI CARDS
========================================================= */

.hg-feature-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:18px;
}

.hg-feature-card,
.hg-safari-card{
  min-width:0;
  background:#ffffff;
  border:1px solid #dcecf2;
  border-radius:18px;
  padding:22px 20px;
  box-shadow:0 10px 22px rgba(7,45,67,0.05);
}

.hg-feature-card h3,
.hg-safari-card h3{
  margin:0 0 12px;
  color:#0e3a5a;
  font-size:1.08rem;
  line-height:1.34;
}

.hg-feature-card p,
.hg-safari-card p{
  margin:0;
  color:#35556b;
  font-size:0.96rem;
  line-height:1.68;
}

.hg-feature-card ul,
.hg-safari-card ul{
  margin:0;
  padding-left:18px;
  color:#35556b;
  font-size:0.95rem;
  line-height:1.66;
}

.hg-feature-card ul li,
.hg-safari-card ul li{
  margin:0 0 8px;
}

.hg-feature-card ul li:last-child,
.hg-safari-card ul li:last-child{
  margin-bottom:0;
}

.hg-safari-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:18px;
}

/* =========================================================
   TAUCHERLEBNISSE ALS KARTEN
========================================================= */

.hg-topic-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:18px;
}

.hg-topic-card{
  min-width:0;
  background:#ffffff;
  border:1px solid #dcecf2;
  border-radius:18px;
  padding:20px 18px;
  box-shadow:0 10px 22px rgba(7,45,67,0.05);
}

.hg-topic-card h3{
  margin:0 0 10px;
  color:#0e3a5a;
  font-size:1.05rem;
  line-height:1.34;
}

.hg-topic-card p{
  margin:0;
  color:#35556b;
  font-size:0.95rem;
  line-height:1.66;
}

/* =========================================================
   HOTELS ALS KARTEN
========================================================= */

.hg-hotel-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:18px;
}

.hg-hotel-card{
  min-width:0;
  display:flex;
  flex-direction:column;
  gap:14px;
  background:#ffffff;
  border:1px solid #dcecf2;
  border-radius:18px;
  padding:22px 18px 20px;
  box-shadow:0 10px 22px rgba(7,45,67,0.05);
}

.hg-hotel-card__top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  flex-wrap:wrap;
}

.hg-hotel-card__stars{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:34px;
  padding:6px 12px;
  border-radius:999px;
  background:#fff7e8;
  border:1px solid #f1ddb0;
  color:#b67a00;
  font-size:0.9rem;
  font-weight:700;
  line-height:1;
  letter-spacing:0.04em;
}

.hg-hotel-card__area{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:34px;
  padding:6px 12px;
  border-radius:999px;
  background:#eef7fb;
  border:1px solid #dcecf2;
  color:#0e3a5a;
  font-size:0.88rem;
  font-weight:700;
  line-height:1.2;
  text-align:center;
}

.hg-hotel-card h3{
  margin:0;
  color:#0e3a5a;
  font-size:1.08rem;
  line-height:1.34;
}

.hg-hotel-card p{
  margin:0;
  color:#35556b;
  font-size:0.96rem;
  line-height:1.68;
}

/* =========================================================
   FAQ ALS KARTEN
========================================================= */

.hg-faq-card-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:18px;
}

.hg-faq-card{
  min-width:0;
  background:#ffffff;
  border:1px solid #dcecf2;
  border-radius:18px;
  padding:20px 18px;
  box-shadow:0 10px 22px rgba(7,45,67,0.05);
}

.hg-faq-card h3{
  margin:0 0 10px;
  color:#0e3a5a;
  font-size:1.05rem;
  line-height:1.34;
}

.hg-faq-card p{
  margin:0;
  color:#35556b;
  font-size:0.95rem;
  line-height:1.66;
}

/* =========================================================
   BUTTONS / CONTACT / SMALL ELEMENTS
========================================================= */

.guide-button-row{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:12px;
  margin-top:24px;
}

.guide-button-row a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  min-height:46px;
  padding:11px 20px;
  border-radius:10px;
  background:#0e3a5a;
  color:#ffffff;
  font-weight:700;
  font-size:0.95rem;
  line-height:1.3;
  box-shadow:0 8px 18px rgba(14,58,90,0.18);
  transition:transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.guide-button-row a:hover{
  transform:translateY(-1px);
  background:#145a87;
}

.guide-button-row--inside{
  justify-content:flex-start;
  margin-top:18px;
}

.guide-contact-box{
  margin-top:22px;
  padding:20px 18px;
  background:#ffffff;
  border:1px solid #dcecf2;
  border-radius:18px;
  text-align:center;
  box-shadow:0 10px 22px rgba(7,45,67,0.05);
}

.guide-contact-box p{
  margin:0 0 12px;
  color:#0e3a5a;
  font-size:1rem;
  line-height:1.6;
}

.guide-contact-box a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:44px;
  padding:10px 18px;
  border-radius:10px;
  background:#0e3a5a;
  color:#ffffff;
  font-weight:700;
  font-size:0.95rem;
  line-height:1.3;
}

.guide-copy{
  margin:20px 0 0;
  text-align:center;
  color:#6a8293;
  font-size:0.88rem;
  line-height:1.5;
}

.guide-top-link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:6px;
  margin-top:18px;
  color:#0e3a5a;
  font-weight:700;
  font-size:0.94rem;
  line-height:1.3;
}

.hg-section .guide-top-link,
.hg-section--light .guide-top-link{
  width:auto;
}

.hg-section .guide-top-link:hover,
.hg-section--light .guide-top-link:hover{
  text-decoration:underline;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width:1100px){
  .hg-nav-grid{
    grid-template-columns:repeat(3, minmax(0, 1fr));
  }

  .hg-steps-grid,
  .hg-tip-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }

  .hg-tauchvideo-grid,
  .guide-card-grid,
  .hg-safari-grid,
  .hg-topic-grid,
  .hg-hotel-grid,
  .hg-faq-card-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }
}

@media (max-width:900px){
  .hg-hero{
    min-height:620px;
  }

  .hg-hero__content{
    padding:46px 0;
  }

  .hg-hero__box{
    max-width:640px;
  }

  .hg-hero__box h1{
    font-size:clamp(30px, 5vw, 44px);
  }

  .hg-hero__box p{
    max-width:540px;
    font-size:16px;
    line-height:1.6;
  }

  .hg-feature-grid,
  .hg-info-row{
    grid-template-columns:1fr;
  }
}

@media (max-width:768px){
  .hg-container{
    padding:0 14px;
  }

  .hg-nav-section{
    padding:18px 0 12px;
  }

  .hg-intro-section{
    padding:12px 0 8px;
  }

  .hg-section{
    padding:34px 0;
  }

  .hg-section-head{
    margin-bottom:22px;
  }

  .hg-section-head h2{
    font-size:1.5rem;
    line-height:1.22;
  }

  .hg-section-head p,
  .hg-step-card p,
  .hg-step-card ul,
  .hg-info-box ul,
  .hg-tip-card ul,
  .hg-tauchvideo-card__body p,
  .hg-reef-card__body p,
  .hg-feature-card p,
  .hg-feature-card ul,
  .hg-safari-card p,
  .hg-safari-card ul,
  .hg-topic-card p,
  .hg-hotel-card p,
  .hg-faq-card p{
    font-size:0.95rem;
    line-height:1.58;
  }

  .hg-hero{
    min-height:680px;
    align-items:flex-start;
  }

  .hg-hero__content{
    width:min(1180px, calc(100% - 24px));
    padding:70px 0 24px;
  }

  .hg-hero__box{
    max-width:100%;
  }

  .hg-hero__box h1,
  .hg-hero__box p{
    max-width:100%;
  }

  .hg-hero__box h1{
    font-size:clamp(25px, 8vw, 34px);
    line-height:1.12;
  }

  .hg-hero__box p{
    font-size:15px;
    line-height:1.5;
  }

  .hg-hero__buttons{
    width:100%;
    align-items:flex-start;
    gap:10px;
    margin-top:18px;
  }

  .hg-nav-grid,
  .hg-steps-grid,
  .hg-tip-grid,
  .hg-tauchvideo-grid,
  .guide-card-grid,
  .hg-feature-grid,
  .hg-safari-grid,
  .hg-topic-grid,
  .hg-hotel-grid,
  .hg-faq-card-grid,
  .hg-info-row{
    grid-template-columns:1fr;
    gap:14px;
  }

  .hg-step-card,
  .hg-tip-card,
  .hg-info-box,
  .hg-feature-card,
  .hg-safari-card,
  .hg-topic-card,
  .hg-hotel-card,
  .hg-faq-card{
    padding:18px 16px;
  }

  .hg-tauchvideo-card__body,
  .hg-reef-card__body{
    padding:16px 16px 18px;
  }

  .hg-hotel-card__top{
    align-items:flex-start;
    flex-direction:column;
  }

  .guide-button-row,
  .guide-button-row--inside{
    flex-direction:column;
    align-items:stretch;
  }

  .guide-button-row a,
  .guide-button-row--inside a{
    width:100%;
  }

  .guide-top-link{
    width:100%;
    justify-content:center;
    padding:10px 12px;
    border:1px solid #dcecf2;
    border-radius:999px;
    background:#ffffff;
    box-shadow:0 6px 16px rgba(7,45,67,0.05);
  }

  .guide-top-link::before{
    content:"↑";
    display:inline-block;
    font-size:1rem;
    line-height:1;
  }
}

@media (max-width:479px){
  .hg-nav-card,
  .hg-step-card,
  .hg-tip-card,
  .hg-info-box,
  .hg-tauchvideo-card,
  .hg-reef-card,
  .hg-feature-card,
  .hg-safari-card,
  .hg-topic-card,
  .hg-hotel-card,
  .hg-faq-card{
    border-radius:16px;
  }

  .hg-step-number{
    width:32px;
    height:32px;
    margin-bottom:12px;
  }
}