
        .sermon-single {
            padding: 1rem 0;
            margin-top: 10rem;
        }

        .sermon-wrapper {
            max-width: 900px;
            margin: 0 auto;
        }

        /* Back Button */
        .back-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 600;
            padding: 0.7rem 1.2rem;
            border-radius: 8px;
            background: #f0f7ff;
            margin-bottom: 2rem;
            transition: all 0.3s;
        }

        .back-btn:hover {
            background: var(--primary-color);
            color: white;
        }

        /* Title */
        .sermon-title {
            color: var(--primary-color);
            font-size: 2.2rem;
            font-weight: 700;
            margin-bottom: 2rem;
            line-height: 1.3;
        }

        /* Meta Info */
        .sermon-meta {
            display: flex;
            gap: 2rem;
            margin-bottom: 2rem;
            padding: 1.5rem;
            background: white;
            border-radius: 10px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
            flex-wrap: wrap;
        }

        .meta-item {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .meta-item i {
            font-size: 1.8rem;
            color: var(--primary-color);
        }

        .meta-item div {
            display: flex;
            flex-direction: column;
        }

        .meta-label {
            font-size: 0.85rem;
            color: #999;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .meta-item strong {
            color: #333;
            font-size: 1rem;
        }

        /* Description */
        .sermon-description {
            background: #f8f9fa;
            padding: 1.8rem;
            border-radius: 10px;
            margin-bottom: 2rem;
            border-left: 4px solid var(--accent-color);
        }

        .sermon-description p {
            line-height: 1.8;
            color: #555;
            font-size: 1.05rem;
            margin: 0;
        }

        /* Video */
        .video-wrapper {
            position: relative;
            padding-bottom: 56.25%;
            height: 0;
            overflow: hidden;
            border-radius: 12px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
        }

        .video-wrapper iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        /* No Video */
        .no-video {
            text-align: center;
            padding: 4rem 2rem;
            background: #f8f9fa;
            border-radius: 12px;
            border: 2px dashed #ddd;
        }

        .no-video i {
            font-size: 3rem;
            color: #ccc;
            margin-bottom: 1rem;
        }

        .no-video p {
            color: #999;
            font-size: 1.1rem;
            margin: 0;
        }

        /* ✅ Navbar turns black on this page */
        nav.navbar {
            background-color: #000 !important;
            transition: background-color 0.3s ease;
        }

        nav.navbar .navbar-brand,
        nav.navbar .nav-link {
            color: #fff !important;
        }

        nav.navbar .nav-link:hover {
            color: var(--accent-color) !important;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .sermon-single {
        margin-top: 7rem !important; /* pushes down below navbar */
        padding-top: 2rem !important;
            }

            .sermon-title {
                font-size: 1.8rem;
            }

            .sermon-meta {
                flex-direction: column;
                gap: 1.5rem;
                padding: 1.3rem;
            }

            .meta-item i {
                font-size: 1.5rem;
            }
        }

        @media (max-width: 576px) {
            .sermon-title {
                font-size: 1.5rem;
            }

            .sermon-meta {
                padding: 1.2rem;
                gap: 1.2rem;
            }

            .meta-item {
                gap: 0.8rem;
            }

            .meta-item i {
                font-size: 1.3rem;
            }

            .meta-item strong {
                font-size: 0.95rem;
            }

            .sermon-description {
                padding: 1.5rem;
            }

            .sermon-description p {
                font-size: 1rem;
            }

            .no-video {
                padding: 3rem 1.5rem;
            }

            .no-video i {
                font-size: 2.5rem;
            }
        }
    