@font-face {
    font-family: 'Libra BT';
    font-style: normal;
    font-weight: 400;
    src: local('Libra BT'), url('/libra_bt.woff') format('woff');
}

html,
body {
    height: 100%;
    background-color: #bab178;
}

body {
    display: flex;
    justify-content: center;
}

h1,
h2 {
    font-family: 'Libra BT', sans-serif;
    color: #4f2a0c;
}

h1 {
    font-size: clamp(3.3em, 4vw, 4em);
}

h2 {
    font-size: 3em;
}

.site-header {
    background-color: #aa6965;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
}

.navbar {
    margin: 0;
    border: 0;
    padding: 0;
    font-family: 'Libra BT', sans-serif;
    font-size: clamp(1.3em, 2vw, 1.7em);
    text-transform: uppercase;
}

.navbar .container-fluid {
    justify-content: center;
    align-items: center;
}

.navbar .navbar-header .navbar-brand {
    padding: 0;
    display: block;
    height: 65px;
}

.navbar .navbar-header .navbar-brand img {
    max-height: 100%;
}

.navbar .navbar-collapse {
    margin-top: auto;
    margin-bottom: .7em;
    border: 0;
}

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

.navbar .navbar-nav>li>a {
    color: #ecca9a;
}


.background {
    background-image: url(/images/background.jpg);
    background-repeat: no-repeat;
    background-position: top;
    background-size: 100%;
    padding: 64px 0;
    width: 100%;
    max-width: 1500px;
    height: fit-content;
}

.wrapper {
    background-color: #e7d9a8;
    padding: 5px;
}

.page-top {
    display: flex;
    justify-content: center;
}

.page-content {
    padding: 0.5em 0.5em 2em;
}

footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 65px;
    border: 0;
}

footer .content {
    background-color: #e7d9a8;
    height: 65px;
    display: flex;
    justify-content: space-around;
}

footer .content img {
    height: 100%;
}

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

.img-wide {
    width: 100%;
    display: inline-block;
    text-align: center;
}

.img-wide img {
    max-height: 8em;
    margin-bottom: .5em;
}

.img-wide div {
    display: flex;
    align-items: center;
    justify-content: center;
}

.sponsor div {
    display: flex;
    justify-content: center;
    margin-bottom: 0.5em;
}

.sponsor .main {
    height: 6.5em;
}

.sponsor .golden {
    height: 6em;
}

.sponsor .silver {
    height: 5em;
}

.sponsor div img {
    max-height: 100%;
}

.text-label {
    display: flex;
    justify-content: flex-start;
    text-wrap-mode: nowrap;
    margin-bottom: .5em;
}

.text-label::after {
    content: '';
    width: 100%;
    border-bottom: solid 1px black;
    margin-left: .5em;
    margin-bottom: .3em;
}

.hospitality-card {
    display: block;
    margin-bottom: 1em;
    text-align: center;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
    background-color: #fff;
}

.hospitality-card:hover {
    transform: scale(1.03);
}

.hospitality-card-icon {
    padding: 1em;
}

.hospitality-card-icon img {
    width: 100%;
    height: auto;
    display: block;
}

.hospitality-card-title {
    font-size: 1.2rem;
    font-weight: 600;
    padding: 1rem;
}

.img-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin: 1em 0;
}

.img-box div {
    width: 100%;
    padding: 5px;
    box-sizing: border-box;
    height: auto;
    text-align: center;
}

.img-box div img {
    box-shadow: rgba(0, 0, 0, 0.3) 2px 2px 5px;
}

@media (min-width: 1000px) {

    .background .container,
    footer .container {
        width: 1000px;
    }

    .page-content {
        padding: 0.5em 1.5em 2em;
    }
}

@media (min-width: 768px) {

    .navbar .container-fluid {
        justify-content: center;
        align-items: center;
        display: flex;
    }

    .navbar .navbar-header .navbar-brand {
        height: 1.2em;
    }

    .navbar .navbar-nav {
        justify-content: center;
        text-align: center;
    }

    .navbar .navbar-nav>li>a {
        margin: 0 6px;
        padding: 0 8px;
    }

    .img-wide {
        display: flex;
        justify-content: center;
    }

    .img-box div {
        width: 33%;
    }

    .img-box div img {
        max-height: clamp(8em, 10vw, 10em);
    }

}