/* ============================================
   WEBINARS PAGE STYLES
   Path: wwwroot/content/css/webinars.css
   Version: 1
   Last Updated: 2026-04-04
   Signatur/Sign: Lillehest - Team Stallion
   ============================================ */

/* --- Hero Section --- */
.webinars-hero-section {
    background: linear-gradient(135deg, #1a73e8 0%, #0d47a1 100%);
    color: #fff;
    padding: 80px 0 60px;
}

.webinars-hero-wrapper h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.webinars-hero-subtitle {
    font-size: 1.15rem;
    opacity: 0.9;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
}

/* --- Upcoming + Past Sections --- */
.webinars-upcoming-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.webinars-past-section {
    padding: 80px 0;
    background: #fff;
}

.webinars-upcoming-section h2,
.webinars-past-section h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a2e;
}

.webinars-grid-subtitle {
    font-size: 1.05rem;
    color: #666;
}

.webinar-card {
    background: #fff;
    border-radius: 12px;
    padding: 28px 24px;
    height: 100%;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border-left: 4px solid transparent;
}

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

.webinar-upcoming {
    border-left-color: #1a73e8;
}

.webinar-past {
    border-left-color: #9e9e9e;
}

.webinars-past-section .webinar-card {
    background: #f8f9fa;
}

.webinar-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.webinar-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-upcoming { background: #e3f2fd; color: #1565c0; }
.badge-recorded { background: #f3e5f5; color: #7b1fa2; }

.webinar-date {
    font-size: 0.85rem;
    color: #888;
}

.webinar-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 12px;
}

.webinar-card p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

.webinar-meta {
    display: flex;
    gap: 16px;
    font-size: 0.85rem;
    color: #888;
    margin-top: 16px;
}

.webinar-meta i {
    margin-right: 4px;
}

/* --- CTA Section --- */
.webinars-cta-section {
    background: linear-gradient(135deg, #1a73e8 0%, #0d47a1 100%);
    color: #fff;
    padding: 80px 0;
}

.webinars-cta-wrapper h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.webinars-cta-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 32px;
}

.webinars-cta-buttons .btn-primary {
    background: #fff;
    color: #1a73e8;
    border: none;
    font-weight: 600;
}

.webinars-cta-buttons .btn-primary:hover {
    background: #e8e8e8;
}

/* --- Responsive --- */
@media (max-width: 991px) {
    .webinars-hero-wrapper h1 { font-size: 2.2rem; }
}

@media (max-width: 767px) {
    .webinars-hero-section { padding: 60px 0 40px; }
    .webinars-hero-wrapper h1 { font-size: 1.8rem; }
    .webinars-upcoming-section { padding: 60px 0; }
    .webinars-past-section { padding: 60px 0; }
    .webinars-cta-section { padding: 60px 0; }
    .webinar-meta { flex-direction: column; gap: 4px; }
}
