/* Hero Section */
.hero {
    background: url('../../images/main/main_banner_slide01.jpg') center center / cover no-repeat;
    color: var(--white);
    text-align: center;
    margin-top: -80px;
    position: relative;
}

.hero .section-nav {
    display: none;
}

@media (min-width: 1440px) {
    .hero {
        height: 750px;
        padding: 150px 0;
        padding-top: 200px;
    }

    .hero .container {
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
}

@media (max-width: 1439px) {
    .hero {
        height: 52.08vw;
        padding: 10.42vw 0;
        padding-top: 13.89vw;
    }

    .hero .container {
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
}

.hero-title {
    color: #FFF;
    text-align: center;
    font-family: Pretendard;
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: 160%; /* 64px */
    margin-bottom: 24px;
}


/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    z-index: 10;
}

.scroll-text {
    color: #FFF;
    font-family: 'Sumana', serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
}

.scroll-indicator svg {
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .hero-title {
        font-size: 16px;
    }
}

.btn-hero-cases {
    background: #003E76;
    display: flex;
    width: 150px;
    height: 50px;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    color: #FFF;
    font-family: 'Pretendard', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    text-decoration: none;
    margin: 30px auto 0;
    transition: background 0.3s;
}

.btn-hero-cases:hover {
    background: #002a52;
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 16px;
    }
}
