/* modern-styles.css */

:root {
    --brown: #71643C;
    --dark-brown: #4B4228;
    --teal: #006F7A;
    --slate: #3E4E59;
    --sage: #F4F5F0;
    --cream: #FDFCF8;
}

/* Base Body for Modern Pages */
.modern-page {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--cream);
    color: var(--slate);
    line-height: 1.6;
    margin: 0;
}

/* Modern Header & Nav (Matches your Calendar) */
.modern-header {
    background: #fff;
    border-bottom: 4px solid var(--brown);
    padding: 20px;
    display: flex;
    justify-content: center;
}

.modern-nav-bar {
    background: var(--brown);
    color: #fff;
    text-align: center;
    padding: 14px 20px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.modern-nav-bar a {
    text-decoration: none;
    color: #fff;
    padding: 6px 14px;
    border-radius: 4px;
    transition: 0.2s;
    font-weight: 600;
    font-size: 0.9rem;
}

.modern-nav-bar a:hover {
    color: #fff3cd;
    background-color: var(--dark-brown);
}

/* Content Container */
.modern-container {
    max-width: 1000px;
    margin: 40px auto;
    padding: 40px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

/* Button Styling */
.modern-btn {
    display: inline-block;
    padding: 12px 24px;
    color: var(--teal);
    border: 2px solid var(--teal);
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    transition: 0.3s;
}

.modern-btn:hover {
    background: var(--teal);
    color: #fff;
}

.header-support {
    text-align: center;
    margin-bottom: 20px;
}

.header-support h5 {
    display: block;
    margin-bottom: 8px;
}

.header-support h1 {
    display: block;
    line-height: 1.1;
}

/* 1. Turn all links inside your main body content to teal */
.content a {
    color: #008080; /* Standard Teal - change hex code to match your specific brand teal if needed */
    text-decoration: underline;
    transition: color 0.2s ease;
}

.content a:hover {
    color: #005a5a; /* A slightly darker teal for the hover effect */
}

/* 2. Resize and center the large desktop image */
@media scope, screen and (min-width: 769px) {
    .img-about-church1 {
        display: block;
        max-width: 600px; /* Limits the width so it doesn't blow up on big screens */
        width: 100%;
        height: auto;
        margin: 0 auto 30px auto; /* Centers the image and adds space underneath */
        border-radius: 8px; /* Optional: adds a soft, modern corner to match modern styles */
    }
}