/* Page Hero */
.page-hero {
    position: relative;
    height: 420px;
    background: url('../assets/anoka-image.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(30, 8, 8, 0.62);
}

.page-hero-content {
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.page-hero-eyebrow {
    font-size: 0.95rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #c5a572;
    margin-bottom: 14px;
    opacity: 0.9;
}

.page-hero-title {
    font-size: 3.4rem;
    font-weight: normal;
    line-height: 1.15;
    margin-bottom: 18px;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.6);
}

.page-hero-sub {
    font-size: 1.15rem;
    font-style: italic;
    opacity: 0.88;
    letter-spacing: 0.03em;
}

/* Sermon section wrapper */
.sermon-section {
    background-color: #2b1515;
    padding: 60px 20px;
}

.sermon-inner {
    max-width: 900px;
    margin: 0 auto;
}

/* Eyebrow label */
.sermon-eyebrow {
    display: block;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 24px;
}

/* 16:9 iframe wrapper */
.sermon-embed-wrap {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    background: #000;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
    margin-bottom: 32px;
}

.sermon-embed-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* Meta below the video */
.sermon-meta {
    text-align: center;
}

.sermon-title {
    font-size: 2rem;
    font-weight: normal;
    line-height: 1.3;
    color: #fff;
    margin-bottom: 10px;
}

.sermon-date {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 28px;
}

/* Action buttons */
.sermon-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.sermon-subscribe {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.sermon-subscribe:hover {
    background-color: rgba(255, 255, 255, 0.08);
}

.sermon-note {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.7;
    max-width: 480px;
    margin: 0 auto;
}

/* Error state */
.sermon-error {
    text-align: center;
    padding: 60px 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 4px;
}

.sermon-error p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 1rem;
    line-height: 1.8;
}

.sermon-error a {
    color: #fff;
}

/* CTA buttons row on the bottom banner */
.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 24px;
}

/* Responsive */
@media (max-width: 768px) {
    .sermon-title {
        font-size: 1.5rem;
    }

    .sermon-section {
        padding: 40px 16px;
    }
}