/* Index Page Styles */

/* Header */
.header {
    background: var(--bg-primary);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-outset);
    border-radius: 0 0 24px 24px;
    margin-bottom: 3rem;
}

.logo {
    width: 80px;
    height: 80px;
    background: var(--bg-card);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-outset);
    color: var(--accent-primary);
    font-size: 2rem;
    font-weight: 700;
}

.main-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-primary);
    margin-bottom: 0.5rem;
}

.subtitle {
    color: var(--text-secondary);
    font-size: 1.125rem;
    font-weight: 400;
}

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

/* Welcome section */
.welcome-section {
    background: var(--bg-card);
    border-radius: 24px;
    padding: 2rem;
    margin-bottom: 3rem;
    box-shadow: var(--shadow-outset);
    text-align: center;
}

.welcome-title {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.welcome-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

/* Access cards grid */
.access-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.access-card {
    background: var(--bg-card);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: var(--shadow-outset);
    transition: all 0.3s ease;
    text-align: center;
}

.access-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-outset-hover);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: var(--bg-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-outset);
    color: var(--accent-primary);
    font-size: 1.5rem;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.card-description {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.access-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--accent-primary);
    color: white;
    text-decoration: none;
    border-radius: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-outset);
}

.access-button:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-outset-hover);
    background: var(--accent-primary);
    filter: brightness(1.1);
}

.access-button:active {
    transform: translateY(1px);
    box-shadow: var(--shadow-pressed);
}

/* Footer */
.footer {
    background: var(--bg-primary);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-outset);
    border-radius: 24px 24px 0 0;
    margin-top: 3rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.footer-link {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    background: var(--bg-card);
    border-radius: 12px;
    box-shadow: var(--shadow-inset);
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: var(--accent-primary);
    box-shadow: var(--shadow-outset);
}

.copyright {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Responsive */
@media (max-width: 768px) {
    .header {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }

    .main-title {
        font-size: 2rem;
    }

    .main-container {
        padding: 0 1rem;
    }

    .access-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}