/* Home page specific styles */
.home-page {
    background-color: #93a6ba;
    margin: 0;
    padding: 0;
    min-height: 100vh; /* Change from height to min-height */
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    overflow: auto; /* Change from hidden to auto */
}


.home-container {
    width: 100%;
    max-width: 800px;
    text-align: center;
    padding: 2rem;
    margin: 2rem 0; /* Add some margin top and bottom */
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(8px);
}


.logo-container {
    margin-bottom: 2rem;
}

.home-logo {
    font-size: 4rem;
    font-weight: 700;
    color: white;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
    margin: 0;
    letter-spacing: 4px;
}

.home-description {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    font-style: italic;
    color: #f0f0f0;
}

.enter-button-container {
    margin-bottom: 3rem;
}

.enter-button {
    display: inline-block;
    padding: 1rem 3rem;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    color: white;
    background-color: #3498db;
    border-radius: 50px;
    transition: all 0.3s ease;
    letter-spacing: 2px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.enter-button:hover {
    background-color: #2980b9;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.enter-button:active {
    transform: translateY(-1px);
}

.home-footer {
    margin-top: 2rem;
}

.social-links {
    margin-bottom: 1rem;
}

.social-links a {
    color: white;
    font-size: 1.5rem;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #3498db;
}

.copyright {
    font-size: 0.9rem;
    color: #ccc;
}

/* Add a subtle animation effect */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.home-content {
    animation: fadeIn 1.2s ease-out;
}

/* Media queries for responsiveness */
@media (max-width: 768px) {
    .home-logo {
        font-size: 3rem;
    }
    
    .home-description {
        font-size: 1rem;
    }
    
    .enter-button {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .home-container {
        padding: 1.5rem;
    }
    
    .home-logo {
        font-size: 2.5rem;
    }
    
    .home-description {
        margin-bottom: 2rem;
    }
}
