/* Reset basic margins */
body {
    margin: 0;
    padding: 0;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.site-main {
    flex: 1;
}

/* Header */
.site-header {
    background-color: #ffffff;
    border-bottom: 1px solid #eaeaea;
}

/* Constrains logo + name */
.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Brand section */
.brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    height: 80px;
    width: auto;
}

.church-name {
    font-family: 'Times New Roman', Times, serif;
}

.church-name h1 {
    margin: 0;
    font-size: 28px;
    font-weight: 500;
    color: #333;
    letter-spacing: 0.5px;
}

.church-name p {
    margin: 0;
    font-size: 18px;
    color: #555;
}

/* Navigation Bar */
.main-nav {
    background-color: #f4f4f4;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}

/* Nav links container */
.nav-links {
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 40px;
    display: flex;
    justify-content: center;
    gap: 45px;
    list-style: none;
}

/* Individual links */
.nav-links li a {
    text-decoration: none;
    color: #444;
    font-size: 14px;
    font-weight: 500;
    font-family: Arial, Helvetica, sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.nav-links li a:hover {
    color: #004a99;
}

/* Announcements */
.announcements {
    max-width: 800px;
    margin: 40px auto;
    padding: 0 40px;
    text-align: center;
}

#announcement-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* About Page */
.about-content {
    max-width: 800px;
    margin: 60px auto;
    padding: 0 40px;
    text-align: center;
}

.about-content h2 {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.about-subtitle {
    font-size: 18px;
    color: #555;
    margin-bottom: 40px;
    font-style: italic;
}

.about-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
}

/* Team Section */
.team {
    max-width: 800px;
    margin: 60px auto;
    padding: 0 40px;
    text-align: center;
}

.team h2 {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 40px;
}

#team-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.team-card {
    width: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.team-photo {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
}

.team-photo-placeholder {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background-color: #ddd;
    margin-bottom: 10px;
}

.team-card h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.team-title {
    margin: 0;
    font-size: 14px;
    color: #555;
    font-style: italic;
}

.team-contact {
    margin: 0;
    font-size: 13px;
    color: #777;
}

/* Footer Code*/

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-times p {
    margin: 0;
    font-size: 25px;
    font-weight: 500;
}

.footer-contact h2 {
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 600;
}

.footer-contact p {
    margin: 4px 0;
    font-size: 20px;
    line-height: 1.4;
}

.footer-info p {
    margin: 0;
    font-size: 13px;
}

