/* =============================================================
   home.css
   Styles for Views/Home/Home.cshtml — landing page.
   The hero fills the available <main> height so the page never
   needs a document-level scrollbar.
   ============================================================= */

/* -- Hero fills <main> ----------------------------------------- */
.home-hero {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem 1rem;
}

.home-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #0d6efd;
    margin-bottom: 0.75rem;
}

.home-hero p {
    color: #212529;
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
}

/* -- Enter button ---------------------------------------------- */
.home-enter-btn {
    padding: 1rem 2.5rem;
    font-size: 1.25rem;
    font-weight: 700;
    border-radius: 10px;
    border: 2px solid #0d6efd;
    background: #ffffff;
    color: #0d6efd;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.home-enter-btn:hover,
.home-enter-btn:focus {
    background: #0d6efd;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.35);
    outline: none;
}
