/* Reset / Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Libre Caslon Text", serif;
    font-weight: 400;
    font-style: normal;
    color: #121111; /* Consistent dark text */
    line-height: 1.6;
}

h1 {
    font-weight: 900;
    font-size: 48px;
    margin-bottom: 20px;
}

h2 {
    font-weight: 400;
    font-style: italic;
    margin-bottom: 15px;
}

/* Header Layout using Flexbox */
header {
    width: 100%;
    padding: 20px 0;
    border-bottom: 1px solid #c59b27; /* subtle gold accent */
}

header section {
    display: flex;
    justify-content: space-between; /* Logo left, Nav right */
    align-items: center;            /* Vertically centers items */
    max-width: 1200px;              /* Keeps content contained */
    margin: 0 auto;                 /* Centers the header on the page */
    padding: 0 20px;
}

/* Logo Styling */
#logo a img {
    width: 180px;
    height: 180px;
    display: block;
}

/* Navigation Styling */
#top_nav ul {
    list-style: none;
    display: flex; /* Makes the list items align in a row */
    gap: 20px;     /* Adds even spacing between links */
}

#top_nav ul li a {
    text-decoration: none;
    color: #121111;
    font-family: "Roboto Flex", sans-serif; /* Using your specified body font */
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}

.clearer {
    clear: both;
}