/* Hero Section Styles */

.hero-section {
    position: relative;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 60px;
    box-shadow: var(--shadow-hero);
}

.hero-bg-image {
    width: 100%;
    display: block;
    height: auto;
}

.hero-blur-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.1) 50%, transparent 70%);
    z-index: 1;
}

.hero-text-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    z-index: 2;
    padding-left: 6%;
}

/* Text wrapper to control width */
.hero-text-wrapper {
    max-width: 550px;
    /* 두 문장의 너비를 제한 */
}

.hero-title {
    font-size: clamp(1.4rem, 4vw, 30px);
    margin-bottom: 20px;
    color: #fff;
    line-height: 1.4;
    font-weight: 800;
    letter-spacing: -0.5px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* Decorative divider line with diamond */
.hero-divider {
    position: relative;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.25) 20%, rgba(255, 255, 255, 0.25) 48%, transparent 48%, transparent 52%, rgba(255, 255, 255, 0.25) 52%, rgba(255, 255, 255, 0.25) 80%, transparent);
    margin: 20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-divider::before {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background-color: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    transform: rotate(45deg);
    box-shadow: 0 0 6px rgba(255, 255, 255, 0.5);
}

.hero-sub {
    font-size: clamp(1rem, 2.6vw, 24px);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    margin-top: 0;
}

/* Tablet and above */
@media (min-width: 768px) {
    .hero-text-container {
        padding-left: 8%;
    }

    .hero-divider {
        margin: 25px 0;
    }

    .hero-divider::before {
        width: 10px;
        height: 10px;
        border-width: 2px;
    }

    .hero-text-wrapper {
        max-width: 600px;
        /* 큰 화면에서는 조금 더 넓게 */
    }

    .hero-sub {
        white-space: normal;
        /* 데스크탑에서는 자연스럽게 줄바꿈 허용 */
    }
}

/* Very small mobile */
@media (max-width: 340px) {
    .hero-title {
        font-size: 1.35rem;
    }

    .hero-sub {
        font-size: 0.95rem;
    }

    .hero-text-container {
        padding-left: 4%;
    }

    .hero-divider {
        margin: 15px 0;
    }

    .hero-divider::before {
        width: 7px;
        height: 7px;
        border-width: 1.5px;
    }

    .hero-text-wrapper {
        max-width: 90%;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .hero-text-wrapper {
        max-width: 85%;
    }
}