/* Mission Possible – Youth Page Styles */

/* Minimal Nav */
.youth-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(248, 245, 241, 0.97);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 0.75rem 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.youth-nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.youth-nav-logo {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-red, #9b1c31);
    text-decoration: none;
    transition: opacity 0.2s;
}

.youth-nav-logo:hover {
    opacity: 0.85;
}

.youth-nav-back {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--navy-blue, #1c2c4c);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.2s;
}

.youth-nav-back:hover {
    color: var(--primary-red, #9b1c31);
    background: rgba(155, 28, 49, 0.08);
}

/* Youth Hero */
.youth-hero {
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 20px 60px;
    position: relative;
}

/* White background, no purple overlay */
.youth-hero .hero-background {
    background: #ffffff;
    animation: none;
}

.youth-hero .hero-overlay {
    background: transparent;
}

.youth-hero .hero-content,
.youth-hero .hero-title,
.youth-hero .hero-subtitle {
    color: var(--navy-blue, #1c2c4c);
}

.youth-hero .hero-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.youth-hero .hero-subtitle {
    color: var(--text-gray, #666);
}

.youth-badge {
    display: inline-block;
    background: rgba(155, 28, 49, 0.1);
    border: 1px solid rgba(155, 28, 49, 0.3);
    color: var(--primary-red, #9b1c31);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.youth-pizza-tagline {
    font-size: 1.4rem !important;
    font-weight: 600 !important;
    margin: 1rem 0 1.5rem !important;
    opacity: 1 !important;
    color: var(--primary-red, #9b1c31) !important;
    text-shadow: none;
}

.youth-pizza-tagline i {
    margin-right: 0.4rem;
}

/* Speaker Section */
.youth-speaker {
    padding: 80px 0;
    background: white;
}

.speaker-grid {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 3rem;
    align-items: center;
}

.speaker-image-wrap {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.speaker-img {
    width: 100%;
    height: auto;
    display: block;
}

.speaker-bio h2 {
    color: var(--navy-blue, #1c2c4c);
    margin-bottom: 1rem;
}

.speaker-bio p {
    color: var(--text-gray, #666);
    margin-bottom: 1rem;
}

.speaker-bio a {
    color: var(--primary-red, #9b1c31);
    text-decoration: none;
    font-weight: 600;
}

.speaker-bio a:hover {
    text-decoration: underline;
}

.speaker-bio .btn {
    margin-top: 1rem;
}

/* Agenda Section */
.youth-agenda {
    padding: 80px 0;
    background: var(--light-gray, #f5f5f5);
}

.youth-agenda h2 {
    color: var(--navy-blue, #1c2c4c);
    text-align: center;
    margin-bottom: 0.5rem;
}

.agenda-intro {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 2.5rem !important;
}

.agenda-timeline {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.agenda-block {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 2rem;
    align-items: start;
    background: white;
    padding: 1.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s, box-shadow 0.2s;
}

.agenda-block:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.agenda-block-highlight {
    background: linear-gradient(135deg, rgba(155, 28, 49, 0.08), rgba(155, 28, 49, 0.04));
    border-left: 4px solid var(--primary-red, #9b1c31);
}

.agenda-time {
    font-weight: 600;
    color: var(--primary-red, #9b1c31);
    font-size: 0.95rem;
}

.agenda-content h3 {
    color: var(--navy-blue, #1c2c4c);
    font-size: 1.2rem;
    margin-bottom: 0.4rem;
}

.agenda-content h3 i {
    margin-right: 0.4rem;
    color: var(--primary-red, #9b1c31);
}

.agenda-content p {
    margin: 0;
    font-size: 0.95rem;
}

/* Pizza Banner */
.youth-pizza-banner {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--navy-blue, #1c2c4c), var(--primary-red, #9b1c31));
    color: white;
}

.pizza-banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    text-align: center;
}

.pizza-icon {
    font-size: 4rem;
    opacity: 0.95;
}

.pizza-banner-content h2 {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 1.8rem;
}

.pizza-banner-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem !important;
}

.pizza-banner-content .btn-primary {
    background: white;
    color: var(--primary-red, #9b1c31);
}

.pizza-banner-content .btn-primary:hover {
    background: var(--off-white, #f8f5f1);
    color: var(--primary-red, #9b1c31);
}

/* Registration Section */
.youth-register {
    padding: 80px 0;
    background: white;
}

.youth-register h2 {
    color: var(--navy-blue, #1c2c4c);
    text-align: center;
    margin-bottom: 0.5rem;
}

.register-intro {
    text-align: center;
    margin-bottom: 2rem !important;
}

.register-form-wrap {
    max-width: 640px;
    margin: 0 auto 1.5rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.register-form-wrap iframe {
    display: block;
    width: 100%;
    min-height: 1322px;
    border: none;
}

.register-link {
    text-align: center;
    font-size: 0.95rem;
}

.register-link a {
    color: var(--primary-red, #9b1c31);
    font-weight: 600;
    text-decoration: none;
}

.register-link a:hover {
    text-decoration: underline;
}

/* Youth Footer */
.youth-footer {
    background: var(--navy-blue, #1c2c4c);
    color: white;
    padding: 2rem;
    text-align: center;
}

.youth-footer-back {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    margin-bottom: 1rem;
}

.youth-footer-back:hover {
    color: white;
}

.youth-footer p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-size: 0.9rem;
}

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

    .youth-pizza-tagline {
        font-size: 1.2rem !important;
    }

    .speaker-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .speaker-image-wrap {
        max-width: 280px;
        margin: 0 auto;
    }

    .agenda-block {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        padding: 1.25rem;
    }

    .agenda-time {
        font-size: 0.85rem;
    }

    .pizza-banner-content {
        flex-direction: column;
    }

    .register-form-wrap iframe {
        min-height: 1200px;
    }
}

@media (max-width: 480px) {
    .youth-hero .hero-title {
        font-size: 2rem;
    }

    .youth-badge {
        font-size: 0.8rem;
    }
}
