/* =====================================================
   SeeU Dive Fundiving CSS v1.0
   펀다이빙 메인 Hero를 스쿠버/프리다이빙 페이지와 동일한 구조로 통일
===================================================== */

.fundiving-hero{
  position:relative;
  height:var(--site-hero-height);
  min-height:var(--site-hero-min-height);
  max-height:var(--site-hero-max-height);
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  color:#fff;
  overflow:hidden;
  padding:120px 22px 90px;
  background:#052b4f;
}

.fundiving-hero-media,
.fundiving-hero-media img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
}

.fundiving-hero-media img{
  display:block;
  object-fit:cover;
  object-position:center;
}

.fundiving-hero-overlay{
  position:absolute;
  inset:0;
  z-index:1;
  background:
    radial-gradient(circle at center, rgba(0,0,0,.03), rgba(0,18,32,.32) 62%, rgba(0,18,32,.72) 100%),
    linear-gradient(180deg,rgba(0,18,32,.12),rgba(0,18,32,.74));
}

.fundiving-hero-content{
  position:relative;
  z-index:2;
  width:min(940px,100%);
  margin:0 auto;
  padding-inline:6px;
}

.fundiving-hero h1{
  font-size:clamp(38px,5.25vw,72px);
  line-height:1.12;
  letter-spacing:-.055em;
  margin:18px 0 20px;
  text-shadow:0 14px 38px rgba(0,0,0,.34);
}

.fundiving-hero p{
  max-width:760px;
  margin:0 auto;
  color:rgba(255,255,255,.92);
  font-size:clamp(15px,1.65vw,19px);
  line-height:1.82;
  text-shadow:0 8px 24px rgba(0,0,0,.28);
}

.fundiving-choice-tabs{
  margin-top:30px;
}

@media(max-width:820px){
  .fundiving-hero{
    height:72vh;
    min-height:560px;
    max-height:680px;
    padding:110px 18px 70px;
  }

  .fundiving-hero h1{
    font-size:clamp(36px,11vw,54px);
  }

  .fundiving-hero p{
    font-size:15px;
    line-height:1.72;
  }

  .fundiving-choice-tabs{
    margin-top:24px;
  }
}
