* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

/* Slideshow */
.slideshow-container {
    height: 100%;
}

.slide {
    display: none;
    height: 100%;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Menu */
#header {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
    background: rgba(0,0,0,0.4);
}

.logo img {
    height: 50px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav ul li a {
    text-decoration: none;
    font-weight: bold;
    padding: 8px 12px;
    border-radius: 5px;
    transition: 0.3s;
    color: white;
}

/* Anglican Season Colors */
.advent nav ul li a { background: purple; }
.christmas nav ul li a { background: gold; color: black; }
.lent nav ul li a { background: violet; }
.easter nav ul li a { background: white; color: black; }
.pentecost nav ul li a { background: red; }

/* Footer */
#footer {
    text-align: center;
    padding: 15px;
    background: #111;
    color: white;
}
/* Bible Verse Overlay */
.verse-box {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 80%;
    text-align: center;
    padding: 20px 30px;
    background: rgba(0, 0, 0, 0.45);
    border-radius: 12px;
    color: white;
    z-index: 90;
    animation: fadeUp 1.5s ease;
}

.verse-box p {
    font-size: 1.4rem;
    font-style: italic;
    line-height: 1.5;
}

.verse-box span {
    display: block;
    margin-top: 10px;
    font-weight: bold;
    font-size: 1rem;
}

/* Anglican season verse highlight */
.advent .verse-box { border-left: 6px solid purple; }
.christmas .verse-box { border-left: 6px solid gold; }
.lent .verse-box { border-left: 6px solid violet; }
.easter .verse-box { border-left: 6px solid white; }
.pentecost .verse-box { border-left: 6px solid red; }

/* Animation */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translate(-50%, 20px);
    }
    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

/* Mobile adjustment */
@media (max-width: 768px) {
    .verse-box p {
        font-size: 1.1rem;
    }
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* Hero */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

/* Slideshow */
.slideshow-container,
.slide,
.slide img {
    height: 100%;
    width: 100%;
}

.slide {
    display: none;
}

.slide img {
    object-fit: cover;
}

/* Header */
#header {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 25px;
    background: rgba(0,0,0,0.45);
}

.logo img {
    height: 45px;
}

/* Menu */
nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

/* Hamburger */
.hamburger {
    display: none;
    font-size: 28px;
    color: white;
    cursor: pointer;
}

/* Bible Verse */
.verse-box {
    position: absolute;
    bottom: 70px;
    left: 50%;
    transform: translateX(-50%);
    width: 85%;
    text-align: center;
    background: rgba(0,0,0,0.5);
    padding: 20px;
    border-radius: 10px;
    color: white;
}

.verse-box p {
    font-size: 1.3rem;
}

.verse-box span {
    display: block;
    margin-top: 8px;
    font-weight: bold;
}

/* Footer */
#footer {
    text-align: center;
    padding: 15px;
    background: #111;
    color: white;
}

/* 🔹 MOBILE VIEW */
@media (max-width: 768px) {

    nav ul {
        position: absolute;
        top: 70px;
        right: 0;
        background: rgba(0,0,0,0.9);
        flex-direction: column;
        width: 100%;
        display: none;
        padding: 20px 0;
        text-align: center;
    }

    nav ul.show {
        display: flex;
    }

    .hamburger {
        display: block;
    }

    .verse-box p {
        font-size: 1.05rem;
    }
}
/* Diocese Info Section */
.diocese-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    padding: 70px 8%;
    background: #f5f5f5;
}

.info-box {
    background: white;
    padding: 30px;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.info-box:hover {
    transform: translateY(-8px);
}

.info-box h2 {
    margin-bottom: 15px;
    font-size: 1.5rem;
    color: #4b0082; /* Anglican purple */
}

.info-box p {
    font-size: 1rem;
    line-height: 1.7;
    color: #333;
}

.anthem {
    font-style: italic;
    text-align: center;
}

/* Mobile View */
@media (max-width: 900px) {
    .diocese-info {
        grid-template-columns: 1fr;
        padding: 50px 5%;
    }

    .info-box {
        text-align: center;
    }
}
/* Live Streaming Page */
.page-header {
    text-align: center;
    padding: 70px 20px;
    background: #4b0082;
    color: white;
}

.live-stream {
    padding: 60px 8%;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

.stream-box iframe {
    width: 100%;
    height: 420px;
    border-radius: 15px;
}

.stream-info {
    background: #f8f8f8;
    padding: 30px;
    border-radius: 15px;
}

.stream-info h2 {
    margin-bottom: 15px;
}

.youtube-btn {
    display: inline-block;
    margin-top: 20px;
    background: red;
    color: white;
    padding: 12px 22px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
}

/* Mobile */
@media (max-width: 768px) {
    .live-stream {
        grid-template-columns: 1fr;
    }

    .stream-box iframe {
        height: 260px;
    }
}
/* Diocese History Section */
.diocese-history {
    background: linear-gradient(to right, #f9f9f9, #ffffff);
    padding: 70px 20px;
}

.history-container {
    max-width: 1100px;
    margin: auto;
    background: #ffffff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.history-title {
    text-align: center;
    font-size: 34px;
    color: #2b2b2b;
    margin-bottom: 15px;
}

.history-divider {
    width: 80px;
    height: 4px;
    background: #8b0000;
    margin: 0 auto 30px;
    border-radius: 5px;
}

.history-container p {
    font-size: 17px;
    line-height: 1.9;
    color: #444;
    margin-bottom: 20px;
    text-align: justify;
}

.history-container strong {
    color: #8b0000;
}

.history-highlight {
    background: #f2f6ff;
    padding: 20px;
    border-left: 6px solid #8b0000;
    font-size: 18px;
    font-weight: 500;
    border-radius: 6px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .history-container {
        padding: 30px 20px;
    }

    .history-title {
        font-size: 26px;
    }

    .history-container p {
        font-size: 16px;
    }
}
/* Contact Section */
.contact-section {
    background: linear-gradient(to right, #f9f9f9, #ffffff);
    padding: 80px 20px;
}

.contact-container {
    max-width: 1200px;
    margin: auto;
}

.contact-title {
    text-align: center;
    font-size: 36px;
    color: #2b2b2b;
    margin-bottom: 10px;
}

.contact-subtitle {
    text-align: center;
    font-size: 18px;
    color: #555;
    margin-bottom: 50px;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: #ffffff;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

/* Contact Info */
.contact-info h3,
.contact-form h3 {
    font-size: 24px;
    color: #8b0000;
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 16px;
    color: #444;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Contact Form */
.contact-form form {
    display: flex;
    flex-direction: column;
}

.contact-form input,
.contact-form textarea {
    padding: 14px;
    margin-bottom: 18px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 15px;
}

.contact-form textarea {
    min-height: 140px;
    resize: vertical;
}

.contact-form button {
    background: #8b0000;
    color: #ffffff;
    padding: 14px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.contact-form button:hover {
    background: #5f0000;
}

/* Responsive */
@media (max-width: 900px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        padding: 30px;
    }

    .contact-title {
        font-size: 28px;
    }
}
/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    z-index: 9999;
    transition: transform 0.3s ease;
}

.whatsapp-float img {
    width: 35px;
    height: 35px;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* Mobile adjustment */
@media (max-width: 600px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
    }
}
.whatsapp-text {
    position: absolute;
    right: 70px;
    background: #25d366;
    color: #fff;
    padding: 6px 10px;
    border-radius: 5px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.whatsapp-float:hover .whatsapp-text {
    opacity: 1;
}
