/* ============================================================================
   Dashboard Styles - Simple Welcome
   ============================================================================ */

.dashboard {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    animation: fadeIn 0.3s ease;
    z-index: 1;
}

.dashboard__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/assets/dashboard-background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

/* Semi-transparent overlay for better text readability */
.dashboard__background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.2));
    z-index: 1;
}

/* Welcome Section
   ============================================================================ */
.dashboard__welcome {
    text-align: center;
    max-width: 900px;
    padding: 3rem;
    position: relative;
    z-index: 2;
}

.dashboard__title {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin: 0 0 1.5rem 0;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.dashboard__subtitle {
    font-size: 1.25rem;
    color: white;
    margin: 0;
    line-height: 1.6;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.8);
}

/* Animations
   ============================================================================ */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design
   ============================================================================ */
@media (max-width: 768px) {
    .dashboard {
        height: 100vh;
        padding: 1rem;
    }

    .dashboard__welcome {
        padding: 2rem 1.5rem;
        max-width: 100%;
    }

    .dashboard__title {
        font-size: 2rem;
    }

    .dashboard__subtitle {
        font-size: 1rem;
    }
}
