/* GLOBAL/BASE STYLES */

/* Use a box-sizing model that makes responsiveness easier */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}

/* Container to keep content centered and constrained */
.container {
    width: 90%; /* Use a percentage for responsiveness */
    max-width: 1200px; /* Maximum width on very large screens */
    margin: 0 auto; /* Center the container on the page */
    padding: 20px 0;
}

section.container {
    padding: 40px 0;
}


/* IMAGE CENTERING AND RESPONSIVENESS */

/* Make the image responsive and center it in the container */
.center-image {
    display: block; /* Important for margin: auto to work */
    max-width: 100%; /* Image will never be wider than its parent */
    height: auto; /* Maintains the image's aspect ratio */
    margin: 20px auto; /* Centers the block-level image horizontally */
}


/* HEADER STYLES (To center the text and image container content) */
header {
    text-align: center; /* Center text, h1, p, etc. */
    background-color: #fff;
    padding-bottom: 0; /* Adjust padding if needed */
}

/* Ensure the tagline is styled correctly */
.tagline {
    margin-top: 10px;
    font-size: 1.2em;
    font-weight: 400;
}

/* Ensure sections have some internal padding */
#about, #mission, #symbolism, #message {
    padding-left: 15px;
    padding-right: 15px;
}

/* Footer styling */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 10px 0;
}

/* Clean up existing inline styles that can cause issues */
p[align="center"] {
    text-align: center;
}
/* Use CSS for font size, not <font> tags */
p font { 
    font-size: 1.2em;
}