﻿.home-dashboard {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Welcome */
.home-welcome {
    background: linear-gradient(135deg, #0f172a, #020617);
    color: #fff;
    padding: 2.5rem;
    border-radius: 1.2rem;
}

    .home-welcome h1 {
        font-weight: 800;
        margin-bottom: 1rem;
    }

    .home-welcome p {
        color: #cbd5f5;
        line-height: 1.9;
        max-width: 900px;
    }

/* Quick Menu */
.home-quick {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.quick-box {
    background: #fff;
    border-radius: 1rem;
    padding: 1.2rem;
    text-decoration: none;
    color: #0f172a;
    box-shadow: 0 10px 30px rgba(0,0,0,.1);
    transition: .25s;
}

    .quick-box i {
        font-size: 1.8rem;
        color: #22c55e;
    }

    .quick-box strong {
        display: block;
        margin-top: .5rem;
    }

    .quick-box span {
        font-size: .8rem;
        color: #64748b;
    }

    .quick-box:hover {
        transform: translateY(-4px);
    }

/* Details */
.home-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.detail-card {
    background: #fff;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,.1);
}

    .detail-card h5 {
        font-weight: 700;
        margin-bottom: .6rem;
    }
/* HERO */
.hero {
    background: linear-gradient(135deg, #1e40af, #020617);
    color: #fff;
    padding: 5rem 0 4rem;
    text-align: center;
}

.hero-desc {
    max-width: 800px;
    margin: 1.2rem auto;
    line-height: 1.9;
}

.hero-actions {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
}