@charset "UTF-8";

body {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, sans-serif;
    background-color: #fdfbfb;
    color: #4a4a4a;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5 {
    color: #b56a6f;
    font-weight: normal;
    letter-spacing: 1px;
}

header.hero-banner {
    background-image: url('images/logo.png');
    background-size: 100% auto;
    background-position: center center;
    background-repeat: no-repeat;
    text-align: left;
    border-bottom: 1px solid #f2e1e2;
    padding: 0;
    margin-bottom: 0;
}

.banner-content {
    padding: 15px 5vw;
}

.hero-logo {
    max-width: 250px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0px 2px 4px rgba(0, 0, 0, 0.1));
}

nav {
    background-color: #fdfbfb;
    padding: 15px 0;
    border-bottom: 1px solid #f2e1e2;
}

nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

nav a {
    text-decoration: none;
    color: #6a5d5d;
    font-size: 1.1em;
    letter-spacing: 0.5px;
    padding: 5px 10px;
    border-bottom: 2px solid transparent;
}

nav a:hover,
nav a.active {
    color: #b56a6f;
    border-bottom: 2px solid #b56a6f;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
}

.promo-bar {
    background-color: #fceceb;
    padding: 10px;
    text-align: center;
    border-bottom: 1px solid #f2e1e2;
}

.promo-bar a {
    text-decoration: none;
}

.text-center {
    text-align: center;
}

.site-footer {
    text-align: center;
    padding: 20px;
    background-color: #eee;
    clear: both;
}