/* Index Page Specific Styles */

.sanomat-headline {
    font-size: 42px;
}

/* Body Layout */
body {
    background: linear-gradient(135deg, var(--background-light) 0%, var(--white) 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Logo */
.logo-container {
    text-align: center;
    margin-bottom: 3rem;
}

.logo-container img {
    height: 80px;
    filter: brightness(0) saturate(100%) invert(6%) sepia(97%) saturate(7471%) hue-rotate(240deg) brightness(93%) contrast(108%);
}

/* Choice Cards */
.choice-card {
    background: var(--white);
    border-radius: 16px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 8px 32px var(--shadow-blue-1);
    transition: all 300ms ease;
    height: 100%;
    border: 2px solid transparent;
}

.choice-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px var(--shadow-blue-15);
    border-color: var(--accent-color);
}

.choice-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
}

.choice-card.schools .choice-icon img {
    height: 80px;
    filter: brightness(0) saturate(100%) invert(6%) sepia(97%) saturate(7471%) hue-rotate(240deg) brightness(93%) contrast(108%);
}

.choice-card.students .choice-icon {
    color: var(--accent-color);
}

.choice-card.students .choice-icon img {
    height: 80px;
    filter: brightness(0) saturate(100%) invert(6%) sepia(97%) saturate(7471%) hue-rotate(240deg) brightness(93%) contrast(108%);
}

.choice-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.choice-description {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 16px;
}

/* Buttons */
.btn-choice-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
    border-radius: 8px;
    padding: 14px 32px;
    font-weight: 600;
    font-size: 16px;
    transition: all 200ms ease;
    box-shadow: 0 4px 12px var(--shadow-blue-2);
    text-decoration: none;
    display: inline-block;
}

.btn-choice-primary:hover {
    background-color: var(--primary-color-hover);
    border-color: var(--primary-color-hover);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--shadow-blue-3);
}

.btn-choice-accent {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--white);
    border-radius: 8px;
    padding: 14px 32px;
    font-weight: 600;
    font-size: 16px;
    transition: all 200ms ease;
    box-shadow: 0 4px 12px var(--shadow-gold-2);
    text-decoration: none;
    display: inline-block;
}

.btn-choice-accent:hover {
    background-color: var(--accent-color-hover);
    border-color: var(--accent-color-hover);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--shadow-gold-3);
}

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

.subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 20px;
    margin-bottom: 4rem;
}

/* Animation */
.fade-in {
    animation: fadeIn 0.8s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Footer */
.footer {
    margin-top: auto;
    padding: 1rem 0;
    text-align: center;
}

.footer-link {
    color: var(--text-light);
    text-decoration: none;
    font-size: 14px;
    transition: color 200ms ease;
}

.footer-link:hover {
    color: var(--primary-color);
    text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
    .sanomat-headline {
        font-size: 32px;
    }

    .choice-card {
        padding: 2rem 1.5rem;
        margin-bottom: 2rem;
    }

    .choice-icon {
        font-size: 3rem;
    }

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