/* ========================================
   Hero 섹션 - 중앙 정렬 + 검색
======================================== */

.hero-fullscreen {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 700px;
    max-height: 1000px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ========================================
   배경 - 그라데이션
======================================== */

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 50%, #1e40af 100%);
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.5;
}

/* ========================================
   콘텐츠 래퍼
======================================== */

.hero-content-wrapper {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 800px;
    padding: 0 40px;
    text-align: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ========================================
   타이틀
======================================== */

.hero-title {
    font-size: 3.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: -2px;
    line-height: 1.3;
}

.hero-title-highlight {
    color: #60a5fa;
}

.hero-description {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 48px;
    letter-spacing: -0.3px;
}

/* ========================================
   검색 폼
======================================== */

.hero-search-form {
    width: 100%;
    margin-bottom: 32px;
}

.search-fields {
    display: flex;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 8px;
    gap: 4px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.search-field {
    flex: 1;
}

.search-select {
    width: 100%;
    padding: 14px 16px;
    border: none;
    background: transparent;
    font-size: 0.95rem;
    color: #1a1a1a;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
}

.search-select:focus {
    outline: none;
}

.search-submit {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: #3b82f6;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    flex-shrink: 0;
}

.search-submit:hover {
    background: #2563eb;
}

.search-submit svg {
    flex-shrink: 0;
}

/* ========================================
   인기 검색
======================================== */

.hero-popular {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.popular-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.popular-tag {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    transition: all 0.3s;
}

.popular-tag:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

/* ========================================
   반응형 (태블릿)
======================================== */

@media (max-width: 1024px) {
    .hero-fullscreen {
        min-height: 600px;
    }

    .hero-title {
        font-size: 2.6rem;
    }

    .hero-description {
        font-size: 1.05rem;
    }
}

/* ========================================
   반응형 (모바일)
======================================== */

@media (max-width: 768px) {
    .hero-fullscreen {
        height: auto;
        min-height: 100vh;
        padding: 120px 0 60px;
    }

    .hero-content-wrapper {
        padding: 0 20px;
    }

    .hero-title {
        font-size: 2rem;
        letter-spacing: -1.5px;
        margin-bottom: 16px;
    }

    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 36px;
    }

    .search-fields {
        flex-direction: column;
        gap: 8px;
        padding: 12px;
    }

    .search-select {
        padding: 12px 16px;
        border-bottom: 1px solid #e5e7eb;
    }

    .search-field:last-of-type .search-select {
        border-bottom: none;
    }

    .search-submit {
        width: 100%;
        justify-content: center;
        padding: 14px;
    }

    .hero-popular {
        gap: 8px;
    }

    .popular-tag {
        font-size: 0.8rem;
        padding: 5px 10px;
    }
}
