/* Index page specific styles */

/* Main Content Layout */
main {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero {
    max-width: 1200px;
    text-align: center;
    padding: 3rem 1rem;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    color: var(--on-background);
}

.hero h1 .highlight {
    color: var(--primary);
    font-weight: 500;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    color: rgba(225, 225, 225, 0.7);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Cards */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.card {
    background-color: var(--surface);
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.4);
}

.card .material-icons {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.card h3 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: var(--on-surface);
}

.card p {
    color: rgba(225, 225, 225, 0.7);
    line-height: 1.6;
}

.card-link {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.card-coming-soon {
    margin-top: 1rem;
    color: var(--primary);
    font-weight: 500;
}

/* Button Groups */
.button-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .cards {
        grid-template-columns: 1fr;
    }
}