/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body Styling */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}

/* Container for centering content */
.container {
    max-width: 1100px;
    margin: auto;
    overflow: hidden; /* Clears floats */
    padding: 0 20px;
}

/* Header Styling */
header {
    background: #005a9c; /* A calming blue */
    color: #fff;
    padding-top: 30px;
    min-height: 120px;
    border-bottom: #003d6b 3px solid;
    text-align: center;
}

header h1 {
    margin-bottom: 10px;
    font-size: 2.5em;
}

header p {
    font-size: 1.1em;
    margin-bottom: 20px;
}

/* Navigation Styling */
header nav {
    background: #333;
    color: #fff;
    padding: 10px 0;
}

header nav ul {
    list-style: none;
    padding: 0;
    text-align: center;
}

header nav ul li {
    display: inline;
    margin: 0 10px;
}

header nav ul li a {
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.9em;
    padding: 5px 10px;
    transition: background-color 0.3s ease;
}

header nav ul li a:hover,
header nav ul li a:focus {
    background-color: #555;
    border-radius: 4px;
    outline: none; /* Remove focus outline if desired */
}

/* Main Content Area */
main {
    padding: 20px 0;
}

main section {
    padding: 20px;
    margin-bottom: 20px;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

main h2 {
    color: #005a9c;
    margin-bottom: 15px;
}

/* Placeholder Content Styling */
.quick-links {
    margin-top: 20px;
}

.quick-links a {
    display: inline-block;
    background: #e7e7e7;
    color: #333;
    padding: 10px 15px;
    margin: 5px;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.quick-links a:hover {
    background: #005a9c;
    color: #fff;
}



/* Basic Responsiveness */
@media(max-width: 768px) {
    header h1 {
        font-size: 2em;
    }
    header nav ul li {
        display: block; /* Stack links vertically */
        margin: 10px 0;
    }
    header nav ul li a {
        display: block; /* Make the whole block clickable */
    }
    .container {
        padding: 0 15px;
    }
}

/* === Footer Styling === */
footer {
    background-color: #333; /* Dark background for footer */
    color: #ccc; /* Light grey text */
    padding: 40px 0 20px 0; /* More padding top, less bottom */
    margin-top: 40px; /* Space above the footer */
    border-top: 4px solid #005a9c; /* Accent color border */
    text-align: center;
}

/* Ensure container within footer resets text-align if needed elsewhere */
footer .container {
    text-align: center;
}

/* --- Supporters Section --- */
#supporters-section {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #555; /* Separator line */
}

#supporters-section h2 {
    color: #fff; /* White heading */
    margin-bottom: 10px;
    font-size: 1.8em;
}

.supporters-intro {
    color: #ddd;
    margin-bottom: 25px;
    font-size: 1.1em;
}

.supporters-list {
    display: flex;
    flex-wrap: wrap; /* Allow items to wrap on smaller screens */
    justify-content: center; /* Center items horizontally */
    align-items: center; /* Align items vertically */
    gap: 20px; /* Space between supporter logos */
    margin-bottom: 25px;
}

.supporter-item {
    /* Flex-basis is set inline in HTML for proportion */
    padding: 10px;
    background-color: #f4f4f4; /* Light background to make logos stand out */
    border-radius: 5px;
    min-width: 80px; /* Minimum width */
    transition: transform 0.2s ease; /* Slight scale effect on hover */
}

.supporter-item:hover {
    transform: scale(1.05);
}

.supporter-item img {
    display: block; /* Remove extra space below image */
    max-width: 100%; /* Ensure image scales within its container */
    height: auto;   /* Maintain aspect ratio */
    max-height: 60px; /* Control max height for consistency */
    margin: 0 auto; /* Center image if container is wider */
}

.supporters-cta {
    margin-top: 20px;
    font-weight: bold;
}

.supporters-cta a {
    color: #16fe16 ; /* Light blue link */
    text-decoration: none;
}

.supporters-cta a:hover {
    text-decoration: underline;
}


/* --- Social Media Links --- */
.social-links {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #555; /* Separator line */
}

.social-links h3 {
     color: #fff;
     margin-bottom: 15px;
     font-size: 1.4em;
}

.social-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.social-links li {
    display: inline-block; /* Arrange icons horizontally */
    margin: 0 10px; /* Space between icons */
}

.social-links img {
    width: 32px; /* Consistent icon size */
    height: 32px;
    vertical-align: middle;
    transition: opacity 0.2s ease;
}

.social-links a:hover img {
    opacity: 0.8; /* Slight fade on hover */
}

/* --- Credits & Copyright --- */
.credits {
    margin-top: 20px;
}

.credits p {
    margin-bottom: 8px;
    font-size: 0.9em;
    color: #aaa; /* Lighter grey for credits */
}

.credits .made-by a {
    color: #bbb; /* Slightly brighter link for credit */
    text-decoration: none;
}

.credits .made-by a:hover {
    text-decoration: underline;
}

.credits .copyright {
    font-size: 0.85em;
    color: #888; /* Even lighter for copyright */
}

/* Ensure dynamic year span is styled if needed */
#current-year {
    /* No specific style needed unless you want to highlight it */
}