
.hero-section {
    height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
    padding: 0;
    background: #08172a;
}

/* ── Swiper 래퍼 ── */
.hero-swiper {
    height: 100%;
    width: 100%;
    background: #08172a;
}

/* ── 개별 슬라이드 ── */
.hero-slide {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100%;
    position: relative;
    background-color: #08172a;
}

/* ── 어두운 반투명 오버레이 ── */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

/* ── 텍스트 콘텐츠 블록 ── */
.hero-content {
    position: absolute;
    top: calc(50% - 60px);     /* 헤더 보정 + eyebrow 기준점 고정 → 모든 페이지 동일 위치 */
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    text-align: center;
    color: white;
    width: 100%;
    max-width: 1000px;
    padding: 0 2rem;
}

/* ── 텍스트: 항상 표시 ── */
.hero-eyebrow,
.hero-content h1,
.hero-desc,
.hero-sub-text {
    opacity: 1;
    transform: none;
}

/* 상단 소제목 */
.hero-eyebrow {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--primary-color, #7ED321);
    margin-bottom: 1.2rem;
}

/* 메인 타이틀 */
.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.45);
}

/* 강조 텍스트 */
.hero-content .highlight {
    background: linear-gradient(135deg, #7ED321, #a0e040);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    filter: drop-shadow(0px 2px 4px rgba(0, 0, 0, 0.3));
}

/* 본문 설명 */
.hero-desc {
    font-size: 1.25rem;
    max-width: 620px;
    margin: 0 auto 0.75rem;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
}

/* 하단 보조 텍스트 */
.hero-sub-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 0.06em;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
}

/* ── 화살표 ── */
.hero-nav-prev,
.hero-nav-next {
    color: white !important;
}

.hero-nav-prev::after,
.hero-nav-next::after {
    font-size: 1.6rem !important;
    font-weight: 700;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

/* ── 페이지네이션 ── */
.hero-pagination {
    bottom: 2rem !important;
}

.hero-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.6);
    opacity: 1;
    transition: all 0.3s;
}

.hero-pagination .swiper-pagination-bullet-active {
    background: white;
    width: 28px;
    border-radius: 5px;
}

/* ── 반응형 ── */
@media (max-width: 768px) {
    .hero-section     { height: 100svh; }
    .hero-content h1  { font-size: 2rem; }
    .hero-desc        { font-size: 1.05rem; }
    .hero-sub-text    { font-size: 0.9rem; }
}

@media (max-width: 480px) {
    .hero-content h1 { font-size: 1.7rem; }
    .hero-eyebrow    { font-size: 0.85rem; }
}
