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

a {
    text-decoration: none;
    transition: color 0.3s ease;
}

/* =========================================
   Header & Navigation
========================================= */
header {
    background: #CC5500; /* burnt orange */
    color: white;
    padding: 1rem 2rem;
    text-align: center;
}

header h1 {
    margin: 0;
    font-size: 2.2rem;
}

header h3 {
    margin: 0;
    font-weight: normal;
}

nav {
    margin-top: 0.5rem;
}

nav a {
    color: white;
    margin: 0 1rem;
    font-weight: bold;
}

nav a:hover {
    color: #FFD580; /* soft highlight on hover */
    text-decoration: underline;
}

/* =========================================
   Main Content
========================================= */
main {
    max-width: 900px;
    margin: 2rem auto;
    padding: 0 1rem;
}

h1, h2 {
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

h2 {
    color: #CC5500; /* burnt orange for section titles */
}

p, li {
    margin-bottom: 1rem;
}

/* =========================================
   Images
========================================= */
img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 1rem auto;
    border-radius: 10px; /* optional soft corners */
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

/* =========================================
   Social Links
========================================= */

.social-links {
    display: flex; /* arrange children in a row */
    justify-content: flex-start; /* center the row horizontally */
    align-items: flex-start; /* vertically center icons in the row */
    gap: 15px; /* space between icons */
    margin: 2rem 0; /* top/bottom spacing */
}

.social-links a {
    display: flex; /* make it a flex container */
    justify-content: center; /* horizontal center */
    align-items: center; /* vertical center */
    width: 50px; /* circle width */
    height: 50px; /* circle height */
    border-radius: 50%; /* circle shape */
    background-color: #CC5500; /* burnt orange */
    color: white; /* icon color */
    transition: transform 0.2s, background-color 0.2s;
}

.social-links a:hover {
    background-color: #004080; /* dark blue on hover */
    transform: scale(1.1);
}

.social-links a svg {
    width: 24px; /* size of icon inside circle */
    height: 24px;
}

.map-table-container {
    width: 100%; /* or a fixed width matching your map, e.g., 800px */
    max-width: 800px; /* optional */
    margin: 0 auto; /* center container */
}

#map, table {
    width: 100%;
}

table {
    border-collapse: collapse;
    margin-top: 10px; /* space below map */
}

td {
    border: 1px solid #CC5500;
    padding: 8px;
}