/* 홈화면 스타일 */
.home-container {
    min-height: 100vh;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    display: flex; /* 기본적으로 표시 */
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
    position: relative;
    z-index: 1;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* 홈화면이 표시될 때의 스타일 */
.home-container.show {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 1 !important;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%) !important;
}

.home-content {
    max-width: 1200px;
    width: 100%;
    padding: 0 2rem;
}

/* 환영 섹션 */
.welcome-section {
    text-align: center;
    margin-bottom: 4rem;
    color: white;
}

.welcome-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: float 3s ease-in-out infinite;
}

.welcome-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.welcome-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 0;
}

/* 기능 카드 섹션 */
.features-section {
    margin-bottom: 4rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #3b82f6;
}

.feature-card h4 {
    color: #333;
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

/* 시작하기 섹션 */
.start-section {
    text-align: center;
    margin-bottom: 3rem;
}

.start-button {
    padding: 1rem 3rem;
    font-size: 1.2rem;
    border-radius: 50px;
    background: linear-gradient(45deg, #3b82f6, #1d4ed8);
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.start-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    background: linear-gradient(45deg, #1d4ed8, #3b82f6);
}

/* 사용자 정보 섹션 */
.user-info-section {
    display: flex;
    justify-content: center;
}

.user-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    max-width: 500px;
    width: 100%;
}

.user-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #3b82f6, #1d4ed8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.user-details {
    flex: 1;
}

.user-details h5 {
    color: #333;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.user-details p {
    color: #666;
    margin-bottom: 0;
    font-size: 0.9rem;
}

.user-actions {
    display: flex;
    gap: 0.5rem;
}

/* 애니메이션 */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* 반응형 디자인 */
/* @media (max-width: 768px) {
    .home-content {
        padding: 0 1rem;
    }
    
    .welcome-title {
        font-size: 2rem;
    }
    
    .welcome-subtitle {
        font-size: 1rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .user-card {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .user-actions {
        justify-content: center;
    }
} */

/* 다크 모드 지원 */
@media (prefers-color-scheme: dark) {
    .feature-card {
        background: rgba(30, 30, 30, 0.95);
        color: white;
    }
    
    .feature-card h4 {
        color: white;
    }
    
    .feature-card p {
        color: #ccc;
    }
    
    .user-card {
        background: rgba(30, 30, 30, 0.95);
        color: white;
    }
    
    .user-details h5 {
        color: white;
    }
    
    .user-details p {
        color: #ccc;
    }
}

/* 사업자 정보 푸터 */
.company-info-footer {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    margin-top: 3rem;
    padding: 2rem 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.company-info {
    color: #7f8c8d;
    font-size: 0.9rem;
    line-height: 1.8;
}

.company-info p {
    margin-bottom: 0.5rem;
}

.company-info strong {
    color: #2c3e50;
}

.company-info .text-muted {
    color: #95a5a6 !important;
    font-size: 0.85rem;
}

.company-info a {
    color: #3b82f6;
    transition: color 0.3s ease;
}

.company-info a:hover {
    color: #1d4ed8;
}

/* 다크 모드에서 푸터 스타일 */
@media (prefers-color-scheme: dark) {
    .company-info-footer {
        background: rgba(30, 30, 30, 0.95);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .company-info {
        color: #bdc3c7;
    }
    
    .company-info strong {
        color: #ecf0f1;
    }
    
    .company-info .text-muted {
        color: #95a5a6 !important;
    }
    
    .company-info a {
        color: #3b82f6;
    }
    
    .company-info a:hover {
        color: #60a5fa;
    }
}

/* 모바일 대응 */
@media (max-width: 768px) {
    .company-info-footer {
        margin-top: 2rem;
        padding: 1rem 0;
    }
    
    .company-info {
        font-size: 0.8rem;
    }
    
    .company-info p {
        margin-bottom: 0.25rem;
    }
} 