/* ===============================
   HOME PAGE
================================ */

.home-hero {
    text-align: center;
    padding: 40px 20px;
}

.home-hero__title {
    font-size: 28px;
    font-weight: 700;
    color: #b11217;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.home-hero__subtitle {
    font-size: 16px;
    color: #555;
    margin-bottom: 40px;
}

.home-hero__actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* ===== BUTTONS ===== */

.home-btn {
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
    min-width: 140px;
}

.home-btn--primary {
    background: #b11217;
    color: white;
}

.home-btn--primary:hover {
    background: #8e0e12;
    transform: translateY(-2px);
}

.home-btn--outline {
    border: 2px solid #b11217;
    color: #b11217;
}

.home-btn--outline:hover {
    background: #b11217;
    color: white;
}