/* ==================================
TRUE WORSHIPERS
LIVE MINISTRY PAGE
================================== */

.live-hero {
    min-height: 55vh;

    background:
    linear-gradient(
        rgba(0,0,0,.65),
        rgba(5,11,24,.9)
    ),
    url("../images/live.jpg");

    background-size: cover;
    background-position: center;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

    padding: 80px 20px;
}


.live-hero .container {
    max-width: 900px;
}


.live-label {
    color: #FFD700;
    font-weight: bold;
    letter-spacing: 3px;
    margin-bottom: 15px;
}


.live-hero h1 {
    color: #FFD700;
    font-size: 65px;
    letter-spacing: 4px;
    margin-bottom: 20px;
}


.live-hero h2 {
    font-size: 28px;
    margin-bottom: 25px;
}


.live-hero p {
    line-height: 1.8;
    font-size: 17px;
}


/* ================================
LIVE VIDEO
================================ */

.live-video {
    padding: 90px 0;
    background: linear-gradient(
            rgba(0, 0, 0, 0.6),
            rgba(0, 0, 0, 0.78)
        ),
        url("../images/twcm.jpg");

    background-size: cover;
    background-position: center;

    position: relative;
}

    text-align: center;
}


.live-video h2 {
    color: #FFD700;
    font-size: 40px;
    margin-bottom: 15px;
}


.live-description {
    margin-bottom: 35px;
}


.video-container {
    width: 100%;
    max-width: 1000px;
    margin: auto;

    border: 2px solid #FFD700;
    border-radius: 20px;

    overflow: hidden;

    background: #000;

    box-shadow: 0 0 30px rgba(255,215,0,.25);
}


.video-container iframe {
    display: block;
    width: 100%;
    min-height: 500px;
}


.youtube-note {
    margin-top: 25px;
    color: #ccc;
}


/* ================================
LIVE ACTIONS
================================ */

.live-actions {
    padding: 80px 0;
    text-align: center;
    background: #081326;
}


.live-actions h2 {
    color: #FFD700;
    margin-bottom: 30px;
}


.live-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}


/* ================================
PROGRAMS
================================ */

.live-programs {
    padding: 90px 0;
    background: #050B18;
    text-align: center;
}


.live-programs h2 {
    color: #FFD700;
    font-size: 40px;
    margin-bottom: 40px;
}


.program-grid {
    display: grid;

    grid-template-columns:
    repeat(auto-fit, minmax(220px, 1fr));

    gap: 25px;
}


.program-card {
    padding: 35px 25px;

    background: rgba(255,255,255,.05);

    border: 1px solid rgba(255,215,0,.35);

    border-radius: 20px;

    transition: .4s;
}


.program-card:hover {
    transform: translateY(-8px);

    box-shadow:
    0 0 25px rgba(255,215,0,.25);
}


.program-card h3 {
    color: #FFD700;
    margin-bottom: 15px;
}


.program-card p {
    line-height: 1.8;
}


/* ================================
UPCOMING EVENT
================================ */

.live-event {
    padding: 100px 20px;

    text-align: center;

    background:
    linear-gradient(
        rgba(0,0,0,.7),
        rgba(5,11,24,.9)
    ),
    url("../images/event.jpg");

    background-size: cover;
    background-position: center;
}


.live-event h2 {
    color: #FFD700;
}


.live-event h1 {
    font-size: 50px;
    color: #FFD700;
    margin: 20px 0;
}


.live-event h3 {
    font-size: 22px;
    margin-bottom: 25px;
}


.live-event p {
    font-size: 18px;
    margin-bottom: 30px;
}


/* ================================
MOBILE
================================ */

@media(max-width:768px) {

    .live-hero {
        min-height: 60vh;
    }


    .live-hero h1 {
        font-size: 38px;
        line-height: 1.2;
    }


    .live-hero h2 {
        font-size: 20px;
    }


    .live-hero p {
        font-size: 14px;
    }


    .live-video {
        padding: 60px 0;
    }


    .live-video h2 {
        font-size: 28px;
    }


    .video-container {
        border-radius: 12px;
    }


    .video-container iframe {
        min-height: 250px;
        height: 250px;
    }


    .live-buttons {
        flex-direction: column;
    }


    .live-buttons .btn,
    .live-buttons .btn2 {
        width: 90%;
        max-width: 350px;
    }


    .live-programs h2 {
        font-size: 30px;
    }


    .live-event h1 {
        font-size: 32px;
        line-height: 1.2;
    }


    .live-event h3 {
        font-size: 18px;
        line-height: 1.5;
    }

}