/* ===========================
   GLOBAL BASE
   =========================== */

html, body {
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    background-color: linen;
    color: #000;
    line-height: 1.6;
}

/* ===========================
   MAIN PAGE WRAPPER
   =========================== */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    box-sizing: border-box;
}

/* ===========================
   MAIN SITE HEADER (NOT OBIT)
   =========================== */

.site-header {
    background-color: #333;
    color: #fff;
    padding: 15px 20px;
    text-align: center;
    font-size: 1.6rem;
    font-weight: bold;
}

/* ===========================
   HEADINGS
   =========================== */

h1, h2, h3, h4, p {
    margin: 0 0 12px;
    color: #000;
}

h1.title {
    color: grey;
    font-size: 1.25rem;
}

/* ===========================
   MAIN NAVBAR (FULL SITE)
   =========================== */

.navbar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    background-color: #8b5e3c;
    padding: 0;
    margin: 0;
    width: 100%;
}

.navbar a {
    color: #fdf6e3;
    padding: 14px 18px;
    font-size: 16px;
    text-decoration: none;
    display: block;
    transition: background-color 0.2s ease;
}

.navbar a:hover {
    background-color: tan;
    color: #000;
}

.navbar a.active {
    background-color: #4caf50;
    color: #fff;
}
.footer-soft {
    background: #e3f6f7;
    padding: 20px 10px;
    border-top: 3px solid #33a6b5;
    font-family: Arial, sans-serif;
}

.footer-soft-inner {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    text-align: center;
}

.footer-left,
.footer-right {
    flex: 1;
    font-size: 14px;
    color: #1f7f8b;
}

.footer-center {
    flex: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 6px;
}

.footer-facebook {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: #33a6b5;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    margin: 6px 0;
    font-size: 15px;
}

.footer-facebook:hover {
    background: #4fc4d3;
}

.fb-svg {
    width: 18px;
    height: 18px;
    fill: #fff;
}

.footer-top {
    color: #1f7f8b;
    text-decoration: none;
    font-size: 14px;
}

.footer-top:hover {
    text-decoration: underline;
}

.footer-archivist {
    color: #1f7f8b;
    text-decoration: none;
    font-size: 14px;
}

.footer-archivist:hover {
    text-decoration: underline;
}

/* Mobile layout */
@media (max-width: 600px) {
    .footer-soft-inner {
        flex-direction: column;
        gap: 10px;
    }
    .footer-left,
    .footer-right {
        text-align: center;
    }
}

/* ===========================
   MEDIA ELEMENTS
   =========================== */

img, video, iframe {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border: none;
}

/* ===========================
   TABLES
   =========================== */

table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background-color: #d3d3d3;
}

td, th {
    border: 1px solid #ccc;
    padding: 10px;
}

table th {
    background-color: #f2f2f2;
    color: #000;
}

