:root {
    --section-border-radius: 1em;
    --background-color: #e8e3de;
    --link-color: #73460e;
    --accent-color: #8f6127;
    --shadow-color: #4d310e;
}

body {
    background-color: var(--background-color);
}

a {
    color: var(--link-color);
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    color: var(--accent-color);
}

.container {
    max-width: 1024px;
}

.header__title {
    font-size: 3em;
    text-align: center;
    margin: 0;
    font-weight: bold;
    font-family: 'Arvo', serif;
    line-height: 1.3;
    text-decoration: underline;
    text-decoration-color: var(--accent-color);
}

.location {
    font-family: 'Arvo', serif;
    margin-bottom: 1em;
}

.header__dates {
    text-align: center;
    font-size: 1.5em;
    margin: 0;
    font-family: 'Arvo', serif;
    line-height: 1;
}

.columns {
    display: flex;
    flex-flow: wrap;
}

.columns > div {
    display: flex;
    flex-grow: 1;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1em;
}

.section {
    padding-bottom: 2em;
    padding-left: 2em;
    padding-right: 2em;
    background-color: #fff;
    filter: drop-shadow(4px 4px 2px var(--shadow-color));
}

.section:last-of-type {

    border-bottom-left-radius: var(--section-border-radius);
    border-bottom-right-radius: var(--section-border-radius);
}

.header {
    padding-top: 3em;
    padding-bottom: 3em;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
}

.image {
    filter: drop-shadow(4px 4px 2px var(--shadow-color));
    width: 100%;
}

.image-rotate-l {
    transform: rotate(-2deg);
}

.image-rotate-r {
    transform: rotate(2deg);
}

.columns__title {
    font-weight: bold;
    font-size: 2em;
    text-align: center;
    font-family: 'Arvo', serif;
    transform: rotate(-1deg);
    text-decoration: underline;
    text-decoration-color: var(--accent-color);
    margin-bottom: 0.5em;
}

.image-column {
    display: flex;
    flex-direction: column;
    max-width: 480px;
}

.footer-row {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.footer-row__image {
    background-image: url("/images/PNG/KDIlogosmol.png");
    background-size: contain;
    background-repeat: no-repeat;
    width: 150px;
    height: 120px;
    flex-shrink: 0;
}

.footer-row__socials > a {
    margin-right: 0.2em;
}

.footer-row__design-credit {
    font-size: 0.8em;
}

.header__logo {
    background-image: url("/images/PNG/KDIbooksmol.png");
    background-size: contain;
    background-repeat: no-repeat;
    width: 150px;
    height: 120px;
    flex-shrink: 0;
}

.location__address-1 {
    font-size: 1.5em;
}

.map-embed {
    border: none;
    width: 70vw;
    max-width: 800px;
    height: 300px;
}

.map-embed-container {
    display: flex;
    justify-content: center;
    margin-bottom: 1em;
}

.hotel-gallery {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
}

.hotel-gallery > img {
    width: 100%;
    margin: 0.5em;
}

@media (min-width: 1000px) {
    .columns {
        flex-flow: row;
    }

    .columns > div {
        align-items: normal;
        margin-left: 1em;
        margin-right: 1em;
        flex: 1;
    }

    .header {
        flex-direction: row;
    }

    .image {
        width: auto;
        max-width: 480px;
    }

    .hotel-gallery > img {
        width: 15vw;
    }
}