/* 깔끔한 로그인 페이지 CSS - 겨울 풍경 컨셉 */

/* Main Container */
.login-container {
    min-height: 100vh;
    background-color: #F8F9FA;
    padding: 0;
    display: flex;
    flex-direction: column;
}

/* Header */
.login-header {
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    border-bottom: 1px solid #E0E0E0;
    min-width: 0;
}

.login-logo-text {
    font-weight: 600;
    font-size: 18px;
    color: #1A1A1A;
    font-family: "Pretendard", -apple-system, BlinkMacSystemFont, sans-serif;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
    min-width: 0;
}

/* Language selector */
.language-selector .language-btn {
    border: 1px solid #E0E0E0;
    background: white;
    font-weight: 400;
    padding: 6px 12px;
    border-radius: 4px;
    white-space: nowrap;
    flex-shrink: 0;
}

/* Hero Section with Winter Background */
.kakao-hero {
    position: relative;
    width: 100%;
    min-height: 300px;
    padding: 60px 24px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.sky {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(180deg, #87CEEB 0%, #B0E0E6 100%);
}

.ground {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(180deg, #E0F2E0 0%, #F5F5DC 100%);
    border-radius: 40px 40px 0 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    width: 100%;
    max-width: 600px;
}

.hero-title {
    font-size: 28px;
    font-weight: 700;
    color: #1A3A5F;
    line-height: 1.4;
    margin-bottom: 0;
    text-align: center;
    font-family: "Pretendard", -apple-system, BlinkMacSystemFont, sans-serif;
    letter-spacing: -0.5px;
}

.hero-title .highlight {
    color: #1A3A5F;
    font-weight: 600;
    font-size: 18px;
    display: block;
    margin-top: 8px;
}

/* Info Bar */
.info-bar {
    background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 100%);
    padding: 16px 24px;
    text-align: center;
    color: white;
}

.info-bar-content {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.info-bar-desc {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-weight: 400;
}

/* Action Cards */
.action-cards-container {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    background-color: white;
}

.action-card {
    background-color: #F8F9FA;
    border-radius: 8px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid #E0E0E0;
}

.action-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: #0046FF;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    flex-shrink: 0;
}

.action-text {
    font-size: 15px;
    color: #1A1A1A;
    font-weight: 500;
    font-family: "Pretendard", -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Kakao Login Button */
.login-cards-container {
    padding: 0 24px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    background-color: white;
}

.kakao-login-button {
    background-color: #FEE500;
    border-radius: 12px;
    padding: 18px 24px;
    width: 100%;
    max-width: 400px;
    display: flex;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.kakao-login-button:active {
    background-color: #FDD835;
    transform: scale(0.98);
}

.kakao-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.kakao-text {
    flex: 1;
    display: flex;
    flex-direction: row;
    gap: 8px;
    align-items: center;
    min-width: 0;
}

.kakao-title {
    font-size: 16px;
    font-weight: 600;
    color: #1A1A1A;
    font-family: "Pretendard", -apple-system, BlinkMacSystemFont, sans-serif;
    white-space: nowrap;
}

.kakao-desc {
    font-size: 12px;
    color: #666666;
    font-weight: 400;
    white-space: nowrap;
}

/* Mobile */
@media (max-width: 768px) {
    .kakao-hero {
        min-height: 250px;
        padding: 40px 20px 30px;
    }

    .hero-title {
        font-size: 24px;
    }

    .hero-title .highlight {
        font-size: 16px;
    }

    .action-cards-container {
        padding: 20px;
    }

    .login-cards-container {
        padding: 0 20px 30px;
    }
}
