/* =====================================================
   HOME PAGE STYLES
   ===================================================== */

.home-page {
    min-height: 100vh;
    background: var(--gradient-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.home-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 2rem;
    padding-bottom: 8rem;
    animation: fadeIn 1s ease-out;
}

.logo-circle {
    width: 250px;
    height: 250px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, #fff 0%, #dbeafe 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
    border: 8px solid var(--secondary-orange-light);
    transition: transform var(--transition-slow);
    animation: float 3s ease-in-out infinite;
    overflow: hidden;
}

.logo-circle:hover {
    transform: scale(1.1);
}

.logo-icon {
    font-size: 5rem;
    color: var(--primary-blue-dark);
}

.logo-image {
    width: 85%;
    height: 85%;
    object-fit: contain;
    border-radius: 50%;
}

.home-title {
    font-size: 4rem;
    font-weight: bold;
    color: var(--white);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
    animation: slideUp 0.8s ease-out;
}

.home-subtitle {
    font-size: 2.5rem;
    color: #fed7aa;
    margin-bottom: 2rem;
    animation: slideUp 0.8s ease-out 0.2s backwards;
}

.home-description {
    font-size: 1.25rem;
    color: #dbeafe;
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.6;
    animation: slideUp 0.8s ease-out 0.4s backwards;
}

.enter-btn {
    background: linear-gradient(135deg, var(--secondary-orange) 0%, var(--secondary-orange-light) 100%);
    color: var(--white);
    padding: 1.5rem 3rem;
    font-size: 1.5rem;
    font-weight: bold;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(234, 88, 12, 0.4);
    transition: all var(--transition-normal);
    animation: slideUp 0.8s ease-out 0.6s backwards;
}

.enter-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(234, 88, 12, 0.6);
}

.footer {
    position: absolute;
    bottom: 2rem;
    left: 0;
    right: 0;
    text-align: center;
    color: #dbeafe;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .home-title {
        font-size: 2.5rem;
    }
    
    .home-subtitle {
        font-size: 1.5rem;
    }
    
    .logo-circle {
        width: 180px;
        height: 180px;
    }
    
    .enter-btn {
        padding: 1rem 2rem;
        font-size: 1.25rem;
    }
}