﻿.hero {
    position: relative;
    min-height: 75vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-diocese {
    background-image: url('/lib/img/diocese/diocese.webp');
}

.hero-overlay {
    width: 100%;
    height: 75vh;
    padding: 180px 10% 100px 35%; /* ← push content right */
    color: white;
    /* very light touch only */
    background: rgba(0, 0, 0, 0.15);
}

    .hero-overlay h1 {
        margin: 0 0 12px 0;
        font-size: 3.2rem;
        line-height: 1.1;
    }

    .hero-overlay p {
        margin: 0;
        font-size: 1.2rem;
        max-width: 700px;
        line-height: 1.5;
    }

.diocese-page {
    max-width: 1100px;
    margin: 120px auto 0 auto; /* ← pushes everything down */
    padding: 0 24px;
}

.diocese-message-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 40px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border: 1px solid #ece7dc;
}

.diocese-message-grid {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 36px;
    align-items: start;
}

.diocese-message-media img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
    object-fit: cover;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.diocese-message-content h2 {
    margin-top: 0;
    margin-bottom: 24px;
    font-size: 2rem;
    color: #2b2b2b;
}

.diocese-message-content p {
    font-size: 1.08rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 18px;
}

.diocese-blessing {
    font-size: 1.5rem;
    margin-top: 24px;
}

@media (max-width: 900px) {
    .diocese-message-grid {
        grid-template-columns: 1fr;
    }

    .diocese-message-media {
        max-width: 420px;
    }
}

.diocese-message-card {
    background: #f7f5f1; /* warm liturgical tone */
    border-left: 6px solid #8b1e1e; /* Anglican red */
}

.diocese-message-content h2 {
    color: #8b1e1e; /* same red */
}

.diocese-blessing {
    color: #8b1e1e;
    font-size: 1.6rem;
}

.diocese-subscribe-card {
    margin-top: 50px;
    padding: 32px;
    background: #f7f5f1;
    border-radius: 18px;
    border-left: 6px solid #8b1e1e;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    text-align: center;
}

    .diocese-subscribe-card h3 {
        margin-top: 0;
        margin-bottom: 12px;
        color: #8b1e1e;
        font-size: 1.5rem;
    }

.diocese-subscribe-text {
    margin-bottom: 24px;
    color: #444;
    font-size: 1rem;
}

.diocese-subscribe-form {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

    .diocese-subscribe-form input {
        padding: 12px 16px;
        border-radius: 8px;
        border: 1px solid #ccc;
        min-width: 260px;
        font-size: 1rem;
    }

    .diocese-subscribe-form button {
        padding: 12px 20px;
        border-radius: 8px;
        border: none;
        background: #8b1e1e;
        color: white;
        font-size: 1rem;
        cursor: pointer;
        transition: background 0.2s ease;
    }

        .diocese-subscribe-form button:hover {
            background: #6f1717;
        }

.diocese-subscribe-message {
    margin-bottom: 16px;
    color: #2e7d32;
    font-weight: 500;
}

.section-wrapper {
    margin-bottom: 80px;
}