/* index.css — Page-specific styles for pages/index.html (dashboard) */

body {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

/* Auth Section */
.auth-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    padding: 2.5rem;
    max-width: 500px;
    margin: 3rem auto;
}

/* Login Button */
.btn-login {
    background: linear-gradient(135deg, rgb(var(--tw-blue-400)) 0%, rgb(var(--tw-blue-600)) 100%);
    border: none;
    color: white;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(31, 183, 209, 0.3);
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(31, 183, 209, 0.4);
    color: white;
}

/* Navigation Cards */
.nav-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.nav-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.nav-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    border-color: rgb(var(--tw-blue-400));
    color: inherit;
}

.nav-card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgb(var(--tw-blue-200)) 0%, rgb(var(--tw-blue-400)) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.nav-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #1e293b;
}

.nav-card p {
    color: #64748b;
    margin-bottom: 0;
    font-size: 0.9375rem;
}

.nav-card-badge {
    background: rgb(var(--tw-blue-200));
    color: rgb(var(--tw-blue-600));
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 1rem;
}

/* Container */
.main-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

/* Loading */
.loading {
    text-align: center;
    padding: 3rem;
}

.spinner-border {
    color: rgb(var(--tw-blue-400));
}

/* Welcome Section */
.welcome-section {
    text-align: center;
    margin-bottom: 3rem;
}

.portal-title {
    font-family: 'Roboto', sans-serif;
    font-size: 2.75rem;
    font-weight: 700;
    color: rgb(var(--tw-blue-600));
    margin-bottom: 0.5rem;
}

.portal-subtitle {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.75rem;
}

.welcome-section p {
    font-size: 1.125rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}
