﻿

body {
    background-image: url('/images/bkg_tree.jpg'); /* or '../images/bkg_tree.jpg' if needed */
    background-size: cover; /* scales to fill the screen */
    background-position: center; /* centers the image */
    background-repeat: no-repeat; /* prevents tiling */
    background-attachment: fixed; /* keeps it in place while scrolling */

    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
    color: #000;
}

/* Typography */
.heading-primary {
    font-weight: bold;
    font-size: 21px;
    color: #ffffff;
}

.heading-secondary {
    font-weight: bold;
    font-size: 15px;
    color: #ffffff;
}

.text-block {
    font-size: 12px;
    text-align: justify;
    padding: 1rem;
    color: #222; /* charcoal gray */


}

/* Layout */
.container {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 2rem;
}

.card {
    display: block;
    width: 100%;
    margin-bottom: 1rem;
    text-align: center;
}

    .card.text-block {
        background-color: rgba(255, 255, 255, 0.75); /* soft overlay for readability */
        padding: 2rem;
        margin-bottom: 2rem;
        border-radius: 10px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
        font-size: 14px;
        line-height: 1.6;
        color: #331a00; /* deep brown for warmth and contrast */
        text-align: justify;
    }

    .card.prayer-text {
        background-color: rgba(255, 255, 255, 0.75);
        padding: 2rem;
        border-radius: 10px;
        text-align: center;
        font-size: 14px;
        line-height: 1.6;
        color: #331a00;
    }

        .card.prayer-text,
        .card.prayer-text p,
        .card.prayer-text h1,
        .card.prayer-text h2 {
            text-align: center;
        }


.image-default {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
}

.caption {
    font-size: 0.9rem;
    color: #331a00; /* deep brown for warmth and contrast */
    background-color: rgba(255, 255, 255, 0.75); /* soft overlay for readability */
    padding: 0.5rem 1rem;
    border-radius: 6px;
    text-align: center;
    margin-top: 0.5rem;
    display: inline-block;
}


.contact-info {
    font-size: 1rem;
    color: #331a00; /* deep brown for warmth and contrast */
    background-color: rgba(255, 255, 255, 0.75); /* soft overlay for readability */
    padding: 0.5rem 1rem;
    border-radius: 6px;
    text-align: center;
    margin-top: 1rem;
    display: inline-block;
}


/* Menu */
.menu {
    background-color: #313031;
    color: white;
    font-family: Tahoma;
    font-size: 0.8rem;
    font-weight: bold;
    padding: 0.5rem 1rem;
    text-decoration: none;
    border-right: 1px solid white;
    display: inline-block;
}

    .menu:hover {
        background-color: #5A8EC6;
    }

/* Links */
a {
    text-decoration: none;
    color: #331a00;
}

    a:hover {
        background-color: #5A8EC6;
        color: #fff;
    }

/* Utility */
.centered {
    text-align: center;
}

 .centered img {
        margin-top: 0.1rem;
 }


.highlight {
    background-color: #5A8EC6;
    color: #fff;
}

.hero-banner {
    width: 100%;
    text-align: center;
    margin-bottom: 1rem;
}

.hero-image {
    max-width: 100%;
    height: auto;
    border: 1px solid #fff;
}

.toolbar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    background-color: #313031;
    padding: 0.5rem;
    gap: 0.5rem;
}

.menu {
    color: white;
    font-family: Tahoma, sans-serif;
    font-size: 0.8rem;
    font-weight: bold;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-right: 1px solid white;
}

    .menu:hover {
        background-color: #5A8EC6;
    }

.content-area {
    padding: 2rem;
    background-color: transparent;
    color: #000;
}

.schedule-table {
    width: 100%;
    max-width: 800px;
    margin: 2rem auto;
    border-collapse: collapse;
    background-color: transparent;
    color: #fff;
    font-family: Arial, sans-serif;
    font-size: 1rem;
}

    .schedule-table th,
    .schedule-table td {
        border: 1px solid rgba(255, 255, 255, 0.3);
        padding: 0.75rem;
        text-align: center;
    }

    .schedule-table th {
        background-color: rgba(0, 0, 0, 0.4);
        font-weight: bold;
    }

    .schedule-table tr:nth-child(even) {
        background-color: rgba(255, 255, 255, 0.1);
    }

    .schedule-table tr:hover {
        background-color: rgba(255, 255, 255, 0.2);
    }


.sermon-table {
    background-color: rgba(255, 255, 255, 0.75); /* matches card overlay */
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    font-size: 14px;
    line-height: 1.6;
    color: #331a00; /* same warm contrast */
    text-align: justify;
    width: 100%;
    border-collapse: collapse;
}

    .sermon-table th,
    .sermon-table td {
        padding: 0.75rem 1rem;
        border-bottom: 1px solid rgba(51, 26, 0, 0.2); /* subtle brown divider */
    }

    .sermon-table th {
        font-weight: bold;
        background-color: rgba(255, 255, 255, 0.85); /* slightly stronger for headers */
    }

    .sermon-table tr:nth-child(even) {
        background-color: rgba(255, 255, 255, 0.15); /* slightly stronger */
    }

    .sermon-table tr:hover {
        background-color: rgba(255, 255, 255, 0.3); /* clearer hover feedback */
    }

.newsletter-section {
    background-color: rgba(255, 255, 255, 0.75);
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    font-size: 14px;
    line-height: 1.6;
    color: #331a00;
    text-align: justify;
}

.newsletter-table {
    background-color: rgba(255, 255, 255, 0.75); /* matches card overlay */
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    font-size: 14px;
    line-height: 1.6;
    color: #331a00; /* same warm contrast */
    text-align: justify;
    width: 100%;
    border-collapse: collapse;
}

.newsletter-table th,
.newsletter-table td {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid rgba(51, 26, 0, 0.2); /* subtle brown divider */
}

.newsletter-table th {
    font-weight: bold;
    background-color: rgba(255, 255, 255, 0.85); /* slightly stronger for headers */
}

.newsletter-table tr:nth-child(even) {
    background-color: rgba(255, 255, 255, 0.15); /* slightly stronger */
}

.newsletter-table tr:hover {
    background-color: rgba(255, 255, 255, 0.3); /* clearer hover feedback */
}

.sermonbooks-section {
    background-color: rgba(255, 255, 255, 0.75);
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    font-size: 14px;
    line-height: 1.6;
    color: #331a00;
    text-align: justify;
}

.sermonbooks-table {
    background-color: rgba(255, 255, 255, 0.75); /* matches card overlay */
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    font-size: 14px;
    line-height: 1.6;
    color: #331a00; /* same warm contrast */
    text-align: justify;
    width: 100%;
    border-collapse: collapse;
}

    .sermonbooks-table th,
    .sermonbooks-table td {
        padding: 0.75rem 1rem;
        border-bottom: 1px solid rgba(51, 26, 0, 0.2); /* subtle brown divider */
    }

    .sermonbooks-table th {
        font-weight: bold;
        background-color: rgba(255, 255, 255, 0.85); /* slightly stronger for headers */
    }

    .sermonbooks-table tr:nth-child(even) {
        background-color: rgba(255, 255, 255, 0.15); /* slightly stronger */
    }

    .sermonbooks-table tr:hover {
        background-color: rgba(255, 255, 255, 0.3); /* clearer hover feedback */
    }

.site-footer {
    background-color: rgba(255, 255, 255, 0.75);
    color: #331a00;
    padding: 1rem 0;
    font-size: 12px;
    line-height: 1;
    text-align: center;
    border-top: 1px solid rgba(51, 26, 0, 0.2);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    display: flex;
    justify-content: center;
}

.footer-identity {
    max-width: 800px;
    width: 100%;
}



