@charset "utf-8";
/* CSS Document */

/* =========================================================
   DIVER ON TOUR – HERO BANNER
   Datei: /assets/css/hero-banner.css
========================================================= */

.dot-hero-banner{
  position:relative;
  min-height:520px;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  background:#0e3a5a;
  font-family:Arial,sans-serif;
}

.dot-hero-banner::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(7,33,51,0.70) 0%, rgba(7,33,51,0.38) 45%, rgba(7,33,51,0.18) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.10) 0%, rgba(0,0,0,0.22) 100%);
  z-index:1;
}

.dot-hero-banner img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center center;
  z-index:0;
}

.dot-hero-content{
  position:relative;
  z-index:2;
  width:100%;
  max-width:1200px;
  padding:60px 20px;
  box-sizing:border-box;
}

.dot-hero-box{
  max-width:620px;
  color:#ffffff;
}

.dot-hero-kicker{
  display:inline-block;
  margin:0 0 14px;
  padding:8px 14px;
  border-radius:999px;
  background:rgba(255,255,255,0.14);
  border:1px solid rgba(255,255,255,0.24);
  font-size:13px;
  font-weight:700;
  letter-spacing:1.5px;
  text-transform:uppercase;
  backdrop-filter:blur(4px);
  color:#ffffff;
}

.dot-hero-box h1{
  margin:0 0 18px;
  font-size:48px;
  line-height:1.1;
  font-weight:700;
  color:#ffffff;
  text-shadow:0 3px 14px rgba(0,0,0,0.25);
}

.dot-hero-box p{
  margin:0 0 28px;
  font-size:18px;
  line-height:1.7;
  color:#ffffff;
  text-shadow:0 2px 10px rgba(0,0,0,0.22);
}

.dot-hero-buttons{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  align-items:flex-start;
}

.dot-hero-button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:auto;
  max-width:100%;
  padding:14px 24px;
  border-radius:999px;
  text-decoration:none;
  font-size:16px;
  font-weight:700;
  line-height:1.35;
  text-align:center;
  white-space:normal;
  word-break:normal;
  overflow-wrap:break-word;
  flex:0 1 auto;
  transition:all .25s ease;
}

.dot-hero-button--primary{
  background:linear-gradient(135deg,#ffb703,#ff9500);
  color:#1b1b1b;
  box-shadow:0 10px 24px rgba(255,183,3,0.30);
}

.dot-hero-button--primary:hover,
.dot-hero-button--primary:focus{
  transform:translateY(-2px);
  box-shadow:0 14px 28px rgba(255,183,3,0.38);
  color:#1b1b1b;
}

.dot-hero-button--secondary{
  background:rgba(255,255,255,0.12);
  color:#ffffff;
  border:1px solid rgba(255,255,255,0.28);
  backdrop-filter:blur(4px);
}

.dot-hero-button--secondary:hover,
.dot-hero-button--secondary:focus{
  background:rgba(255,255,255,0.18);
  transform:translateY(-2px);
  color:#ffffff;
}

.dot-hero-button--whatsapp{
  background:linear-gradient(135deg,#25D366,#1ebe5b);
  color:#ffffff;
  box-shadow:0 10px 24px rgba(37,211,102,0.35);
}

.dot-hero-button--whatsapp:hover,
.dot-hero-button--whatsapp:focus{
  transform:translateY(-2px);
  box-shadow:0 14px 28px rgba(37,211,102,0.45);
  color:#ffffff;
}

.dot-hero-button--blue{
  background:linear-gradient(135deg,#1fa2ff,#0077cc);
  color:#ffffff;
  box-shadow:0 10px 24px rgba(0,119,204,0.35);
}

.dot-hero-button--blue:hover,
.dot-hero-button--blue:focus{
  transform:translateY(-2px);
  box-shadow:0 14px 28px rgba(0,119,204,0.45);
  color:#ffffff;
}

@media (max-width:900px){
  .dot-hero-banner{
    min-height:460px;
  }

  .dot-hero-box h1{
    font-size:38px;
  }

  .dot-hero-box p{
    font-size:17px;
  }
}

@media (max-width:600px){
  .dot-hero-banner{
    min-height:420px;
  }

  .dot-hero-content{
    padding:40px 16px;
  }

  .dot-hero-box h1{
    font-size:30px;
  }

  .dot-hero-box p{
    font-size:16px;
    line-height:1.65;
  }

  .dot-hero-buttons{
    flex-direction:column;
    align-items:flex-start;
  }

  .dot-hero-button{
    width:auto;
    max-width:100%;
    box-sizing:border-box;
  }
}