/* ===== Global Styles ===== */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    line-height: 1.6;
}

/* ===== Header ===== */
header {
    background-color: #333;
    color: white;
    padding: 20px;
    text-align: center;
}

/* ===== Primary Navigation (Top Menu) ===== */
nav {
    background-color: #555;
    padding: 10px;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center; /* centers the nav items */
    gap: 20px;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

/* ===== Main Content Box ===== */
main {
    padding: 20px;
    background-color: white;
    max-width: 900px;
    margin: 20px auto;
    border-radius: 8px;
}

/* ===== Images (Medium Size) ===== */
img {
    max-width: 100%;
    max-height: 300px;   /* Medium size */
    height: auto;
    width: auto;
    display: block;
    margin: 0 auto;
    border-radius: 6px;
    object-fit: cover;
}

/* ===== Footer (Background + Text) ===== */
footer {
    background-color: #333;
    color: white;
    padding: 15px;
    text-align: center;
    margin-top: 20px;
}

/* ===== Footer Navigation (Centered + Spaced) ===== */
.footer-links {
    display: flex;
    justify-content: center;
    gap: 25px;        /* spacing between links */
    padding: 10px 0;
}

.footer-links a {
    color: white;          /* matches your theme */
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffcc66;        /* gold hover highlight */
}