            * {
                margin: 0;
                padding: 0;
                box-sizing: border-box;
                font-family: 'Palatino', 'Palatino Linotype', 'Georgia', 'Times New Roman', serif;
            }

            html {
                scroll-behavior: smooth;
            }

            body {
                background-color: #eaf4e8;  /* soft greenish background – like fresh olive light */
                color: #1f3b2c;
                display: flex;
                flex-direction: column;
                min-height: 100vh;
            }

        /* ========== GLOBAL CHURCH ELEMENTS ========== */
        h1, h2, h3, h4 {
            font-weight: 500;
            letter-spacing: 0.02em;
        }

        /* decorative divider – used sparingly */
        .cross-divider {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            color: #9bba8e;
            font-size: 0.9rem;
            margin: 1.8rem 0;
        }
        .cross-divider i {
            font-size: 1.1rem;
            color: #6f8c6d;
        }
        .cross-divider span {
            width: 60px;
            height: 2px;
            background: linear-gradient(90deg, transparent, #9bba8e, transparent);
        }

        /* ========== COMMON NAVIGATION (world class, sacred feel) ========== */
        .navbar {
            background: #1f3b2c;        /* deep forest green – earthy & liturgical */
            color: #f2eee5;
            padding: 0.8rem 5%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            box-shadow: 0 8px 18px rgba(16, 38, 16, 0.25);
            position: sticky;
            top: 0;
            z-index: 100;
            border-bottom: 3px solid #c0a55c;   /* gold accent – reminiscent of altar cloth */
        }

        .logo-area {
            display: flex;
            align-items: center;
            gap: 14px;
        }

        .church-icon {
            font-size: 2.8rem;
            color: #e8d6a8;     /* old gold – like a cross catching light */
            filter: drop-shadow(0 2px 4px #2f4d2f);
        }

        .diocese-name {
            line-height: 1.2;
        }
        .diocese-name h1 {
            font-size: 1.9rem;
            font-weight: 600;
            color: #f5eedb;
            letter-spacing: 2px;
        }
        .diocese-name span {
            font-size: 0.9rem;
            color: #cbd9c0;
            font-style: italic;
            display: block;
            margin-top: 4px;
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            font-weight: 400;
            text-transform: uppercase;
            font-size: 0.95rem;
            letter-spacing: 0.05rem;
        }
        .nav-links a {
            color: #f2eee5;
            text-decoration: none;
            padding: 0.5rem 0.2rem;
            border-bottom: 2px solid transparent;
            transition: 0.25s;
            position: relative;
        }
        .nav-links a:hover {
            border-bottom-color: #e8d6a8;
            color: #ffffff;
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0%;
            height: 2px;
            background: #e8d6a8;
            transition: 0.3s;
        }
        .nav-links a:hover::after {
            width: 100%;
        }

        .donate-btn {
            background: #b38b4a;        /* burnished gold */
            color: #1f3b2c;
            border: none;
            padding: 0.7rem 2rem;
            border-radius: 40px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: 0.25s;
            box-shadow: 0 4px 10px rgba(0, 20, 0, 0.3);
            display: flex;
            align-items: center;
            gap: 10px;
            border: 1px solid #e5ca89;
            white-space: nowrap;
        }
        .donate-btn i {
            font-size: 1.1rem;
        }
        .donate-btn:hover {
            background: #c9a259;
            color: #112111;
            transform: scale(1.03);
            border-color: #f5e2b2;
        }

        /* mobile nav toggle */
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #f5eedb;
            font-size: 2.2rem;
            cursor: pointer;
        }

        /* ========== MAIN CONTENT (greenish background & church atmosphere) ========== */
        main {
            flex: 1;
        }

        /* HERO with stained‑glass overlay */
        .hero {
            background: linear-gradient(102deg, #1a3523 0%, #2a5537 100%);
            color: white;
            padding: 3.5rem 5% 4rem;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            position: relative;
            isolation: isolate;
            border-bottom: 6px solid #b8934a;
        }
        .hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.1"><path d="M20,20 L35,5 L50,20 L65,5 L80,20 L95,5 L80,40 L95,55 L80,70 L95,85 L70,80 L55,95 L40,80 L25,95 L10,80 L25,55 L10,40 L25,20 L10,5 Z" fill="white" stroke="none"/></svg>');
            background-size: 140px 140px;
            background-repeat: repeat;
            opacity: 0.08;
            z-index: -1;
        }

        .hero-text {
            flex: 1 1 320px;
            z-index: 2;
        }
        .hero-text .welcome {
            font-size: 1.2rem;
            color: #e8d6a8;
            font-weight: 400;
            text-transform: uppercase;
            letter-spacing: 4px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .hero-text .welcome i {
            font-size: 1.2rem;
            color: #dab77f;
        }
        .hero-text h2 {
            font-size: 4rem;
            font-weight: 500;
            margin: 1rem 0 1.2rem;
            line-height: 1.1;
            text-shadow: 0 4px 14px rgba(0, 20, 0, 0.5);
        }
        .hero-text h2 small {
            font-size: 2rem;
            display: block;
            color: #f0e2c0;
            font-style: italic;
        }
        .hero-text p {
            font-size: 1.25rem;
            max-width: 620px;
            margin-bottom: 2.5rem;
            color: #ddeee0;
            font-style: italic;
        }
        .hero-buttons {
            display: flex;
            gap: 1.5rem;
            flex-wrap: wrap;
        }
        .btn {
            padding: 0.9rem 2.4rem;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.7rem;
            transition: 0.3s;
            font-size: 1.1rem;
            border: 1px solid transparent;
        }
        .btn-primary {
            background: #e8d6a8;
            color: #1f3b2c;
            border: 1px solid #bfa153;
        }
        .btn-primary:hover {
            background: #f4e6c1;
            transform: translateY(-5px);
            box-shadow: 0 14px 24px rgba(25, 60, 20, 0.5);
        }
        .btn-outline {
            border: 2px solid #e8d6a8;
            color: white;
            background: transparent;
        }
        .btn-outline:hover {
            background: #e8d6a8;
            color: #1f3b2c;
            transform: translateY(-5px);
            border-color: #dbb26b;
        }

        .hero-image {
            flex: 0 1 380px;
            text-align: center;
            font-size: 12rem;
            color: #f0ebd3;
            filter: drop-shadow(0 8px 18px #182818);
            opacity: 0.9;
            z-index: 2;
        }

        /* ===== CHURCH CARDS (greenish, subtle) ===== */
        .highlights {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 2.2rem;
            padding: 4.5rem 5%;
            background: #deedd9;   /* light green wash */
        }

        .card {
            background: #f6fcf0;
            padding: 2.4rem 1.5rem;
            border-radius: 24px 24px 24px 0;
            box-shadow: 0 20px 30px -12px rgba(30, 60, 30, 0.2);
            text-align: center;
            transition: 0.2s;
            border: 1px solid #bdd8b0;
            border-bottom: 6px solid #8aab7a;
        }
        .card i {
            font-size: 3.4rem;
            color: #325a38;
            background: #e3f0db;
            padding: 1.2rem;
            border-radius: 60px;
            border: 1px dashed #9aba88;
        }
        .card h3 {
            margin: 1.8rem 0 1rem;
            color: #1f4228;
            font-size: 1.8rem;
            font-weight: 500;
        }
        .card p {
            color: #2b4a33;
            margin-bottom: 1.8rem;
            line-height: 1.5;
        }
        .card-link {
            text-decoration: none;
            font-weight: 600;
            color: #8b6d3c;
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            border-bottom: 1px dotted;
            padding-bottom: 2px;
        }
        .card-link:hover {
            color: #335533;
        }

        /* ===== BISHOP SECTION WITH SACRED ART ===== */
        .welcome-bishop {
            background: #cfe2ca;   /* soft sage */
            padding: 4rem 5%;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 4rem;
            border-top: 4px solid #a77c44;
            border-bottom: 4px solid #a77c44;
        }
        .bishop-img {
            flex: 0 0 200px;
            text-align: center;
            font-size: 9rem;
            color: #25482b;
            background: #e9f1e3;
            border-radius: 50%;
            width: 200px;
            height: 200px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 6px solid #bda46b;
            box-shadow: 0 0 0 8px #ecfae7;
        }
        .bishop-message {
            flex: 1 1 320px;
        }
        .bishop-message h3 {
            font-size: 2.8rem;
            color: #1e3f23;
            font-weight: 400;
            margin-bottom: 0.4rem;
            border-left: 8px solid #bb9d60;
            padding-left: 1.5rem;
        }
        .bishop-message h4 {
            font-size: 1.3rem;
            color: #7d6137;
            font-weight: 400;
            margin-bottom: 1.8rem;
            letter-spacing: 1.5px;
        }
        .bishop-message p {
            font-size: 1.3rem;
            line-height: 1.7;
            color: #1f3729;
            margin-bottom: 2rem;
            font-style: italic;
            quotes: "“" "”";
        }
        .bishop-message p::before {
            content: "“";
            font-size: 3rem;
            color: #9f8b5c;
            vertical-align: middle;
            margin-right: 6px;
        }
        .bishop-message p::after {
            content: "”";
            font-size: 3rem;
            color: #9f8b5c;
            vertical-align: bottom;
            margin-left: 4px;
        }
        .bishop-signature {
            font-weight: 600;
            font-size: 1.4rem;
            color: #1e3f23;
            font-style: normal;
            text-align: right;
            border-top: 2px solid #a59160;
            padding-top: 1.2rem;
            width: fit-content;
            margin-left: auto;
        }

        /* ===== EVENTS (greenish background, church style) ===== */
        .events-section {
            padding: 4rem 5%;
            background: #d9e8d4;
        }
        .section-title {
            font-size: 2.6rem;
            color: #1a4a2a;
            margin-bottom: 2.5rem;
            display: flex;
            align-items: center;
            gap: 1.2rem;
        }
        .section-title i {
            color: #ba9f62;
            background: #1f3b2c;
            padding: 0.7rem;
            border-radius: 50%;
        }
        .event-list {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            max-width: 900px;
        }
        .event-item {
            display: flex;
            align-items: center;
            gap: 1.8rem;
            background: #f3faeec9;
            backdrop-filter: blur(4px);
            padding: 1.2rem 2rem;
            border-radius: 60px;
            border-left: 12px solid #557a4a;
            box-shadow: 0 6px 18px rgba(70, 90, 60, 0.15);
            transition: 0.2s;
        }
        .event-item:hover {
            background: #ffffffd6;
            transform: translateX(8px);
        }
        .event-date {
            background: #1f3b2c;
            color: #f5e7c8;
            font-weight: 700;
            padding: 0.6rem 1.6rem;
            border-radius: 40px;
            min-width: 100px;
            text-align: center;
            font-size: 1.1rem;
            border: 1px solid #e2cb92;
        }
        .event-name {
            font-size: 1.3rem;
            font-weight: 500;
            flex: 1;
            color: #1a3e27;
        }
        .event-location {
            color: #5b6e4b;
            font-style: italic;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        /* ========== WORLD-CLASS FOOTER (green harmony) ========== */
        .footer {
            background: #1a3523;      /* deep green base */
            color: #e5f0da;
            padding: 4rem 5% 1.8rem;
            margin-top: auto;
            border-top: 6px solid #b99750;
            box-shadow: 0 -12px 20px -12px #1e331e;
        }

        .footer-main {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
            gap: 2.8rem;
            margin-bottom: 3rem;
        }

        .footer-col h3 {
            color: #ecdbaa;
            font-size: 1.4rem;
            margin-bottom: 1.5rem;
            font-weight: 400;
            border-bottom: 2px solid #4b6d47;
            padding-bottom: 0.6rem;
            display: inline-block;
        }

        .footer-col p, .footer-col a {
            color: #cddec7;
            text-decoration: none;
            line-height: 2.2;
            display: block;
            transition: 0.2s;
            font-size: 1rem;
        }

        .footer-col a:hover {
            color: #ecdbaa;
            padding-left: 8px;
        }

        .social-links {
            display: flex;
            gap: 1.2rem;
            margin-top: 1.4rem;
        }
        .social-links a {
            background: #2f543a;
            color: #fff8e6;
            width: 46px;
            height: 46px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            transition: 0.3s;
            border: 2px solid #bda154;
        }
        .social-links a:hover {
            background: #b99750;
            color: #112112;
            transform: translateY(-6px);
            border-color: #fceeca;
        }

        .newsletter-input {
            display: flex;
            margin-top: 1rem;
            border: 2px solid #6b8f63;
            border-radius: 50px;
            overflow: hidden;
        }
        .newsletter-input input {
            flex: 1;
            padding: 0.8rem 1.2rem;
            border: none;
            background: #2c4a31;
            color: white;
            font-size: 1rem;
            outline: none;
        }
        .newsletter-input input::placeholder {
            color: #b9d3aa;
            font-style: italic;
        }
        .newsletter-input button {
            background: #b99750;
            border: none;
            padding: 0 1.5rem;
            font-size: 1.3rem;
            cursor: pointer;
            color: #1a3d20;
            transition: 0.2s;
        }
        .newsletter-input button:hover {
            background: #e0ba6b;
        }

        .footer-bottom {
            border-top: 2px solid #3d613f;
            padding-top: 1.8rem;
            text-align: center;
            font-size: 1rem;
            color: #b1cfb0;
            display: flex;
            flex-direction: column;
            gap: 0.4rem;
        }
        .footer-bottom i {
            color: #dbb47a;
            margin: 0 4px;
        }

        /* ========== FIXED RESPONSIVE NAVIGATION ========== */
        /* Desktop styles */
        @media (min-width: 851px) {
            .navbar {
                flex-wrap: nowrap;
            }
            
            .donate-btn {
                margin-left: 20px;
            }
            
            .nav-links {
                display: flex !important;
            }
        }

        /* Mobile styles */
        @media (max-width: 850px) {
            .navbar {
                display: grid;
                grid-template-columns: 1fr auto auto;
                align-items: center;
                gap: 10px;
            }
            
            .logo-area {
                grid-column: 1;
            }
            
            .donate-btn {
                grid-column: 2;
                margin: 0;
                padding: 0.5rem 1.2rem;
            }
            
            .nav-toggle {
                grid-column: 3;
                display: block;
                justify-self: end;
                background: none;
                border: none;
                color: #f5eedb;
                font-size: 2.2rem;
                cursor: pointer;
                padding: 5px;
                z-index: 101;
            }
            
            /* For touch devices - increase hit area */
            .nav-toggle:active {
                opacity: 0.8;
            }
            
            .nav-links {
                grid-column: 1 / -1;
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: center;
                gap: 1.2rem;
                padding: 1.8rem 0 0.8rem;
                border-top: 1px solid #3a5e3a;
                margin-top: 10px;
            }
            
            .nav-links.show {
                display: flex !important;
            }
            
            .nav-links a {
                padding: 12px 0;
                width: 100%;
                text-align: center;
                font-size: 1.1rem;
            }
            
            .hero-text h2 {
                font-size: 3rem;
            }
            .hero-image {
                font-size: 9rem;
            }
        }
        
        @media (max-width: 500px) {
            .donate-btn span {
                display: none;
            }
            
            .donate-btn {
                padding: 0.5rem 1rem;
            }
            
            .diocese-name h1 {
                font-size: 1.5rem;
            }
            
            .diocese-name span {
                font-size: 0.7rem;
            }
            
            .church-icon {
                font-size: 2.2rem;
            }
            
            .event-item {
                flex-wrap: wrap;
                border-radius: 40px;
            }
            .bishop-img {
                width: 160px;
                height: 160px;
                font-size: 6rem;
            }
        }
  /* ===== GALLERY SECTION ===== */
    .bishop-gallery {
        padding: clamp(2rem, 5vw, 5rem) 5%;
        background: var(--soft-stone);
        width: 100%;
        overflow-x: hidden;
    }

    .gallery-container {
        max-width: 1400px;
        margin: 0 auto;
        width: 100%;
    }

    .gallery-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
        gap: 2rem;
        margin-top: 3rem;
        width: 100%;
    }

    .gallery-item {
        background: var(--cream-light);
        border-radius: 30px 30px 30px 0;
        overflow: hidden;
        box-shadow: 0 15px 25px -8px rgba(0,0,0,0.2);
        border: 1px solid #cfc29b;
        transition: 0.3s;
        width: 100%;
    }

    .gallery-item:hover {
        transform: scale(1.03);
        border-color: var(--gold-script);
    }

    .gallery-icon {
        height: clamp(150px, 30vw, 200px);
        background: linear-gradient(135deg, #304530, #4b6650);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: clamp(3rem, 8vw, 5rem);
        color: var(--gold-script);
    }

    .gallery-caption {
        padding: 1.5rem;
        text-align: center;
        font-size: clamp(0.9rem, 2vw, 1.1rem);
        color: var(--ink-dark);
        font-weight: 500;
        word-wrap: break-word;
    }

    /* ===== RESPONSIVE BREAKPOINTS ===== */



    /* ======= Diocese Page++++================= */

    