/* ============================================================
   SSO Election - Landing Page (Index) Styles
   Page: index.jsp
   ============================================================ */




/* Hero Section */
.hero-section {
    padding: 100px 0;
    background-color: var(--surface);
}

.badge-sso {
    background-color: var(--on-primary-container); /* roughly #d7e2ff */
    color: #001a40;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-container);
    line-height: 1.2;
    margin-top: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--on-surface-variant);
    margin: 2rem 0;
    max-width: 550px;
}

.hero-image-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 32px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

/* Steps Section */
.steps-section {
    padding: 80px 0;
    background-color: var(--surface-container-low);
}


.step-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

/* News Section */
.news-section {
    padding: 80px 0;
}


.news-date {
    color: var(--primary-container);
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
    display: block;
}

/* Support Section */
.support-banner {
    background-color: var(--primary);
    color: #ffffff;
    padding: 60px 0;
}

/* Responsiveness */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-section {
        padding: 60px 0;
    }
}
