:root {
    --bg-col: #F9F2E7;
    --header-font: "Oswald", sans-serif;
    --body-font: "Onest", sans-serif;
    --dark-color: #242422;
    --dark-blue: #2F6171;
    --blue: #78A3D7;
    --green: #D9E5A7;
    --pink: #E9C3D6; 
    --orange: #B36416;
}

@font-face {
    font-family: "Des Montilles";
    font-weight: 400;
    src: url("../fonts/DesMontilles-Regular.otf") format("opentype");
}

html,
body {
    background-color: var(--bg-col);
}

a {
	color: var(--dark-color);
}

/* Generic classes */
.centered {
    display: flex;
    max-width: 80%;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    max-width: 1020px;
    margin: 0 auto;
}

.columns {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
}

.columns-equal>div{
    width: 50%;
}

.std-button {
    display: inline;
    background: var(--pink);
    padding: 10px 12px;
    text-transform: uppercase;
    font-weight: 600;
    text-decoration: none;
    box-sizing: border-box;
}

/* Header */
header .top-section {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 32px 0;
}

header .content-container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 80%;
    margin: 0 auto;
}

header .social-icons {
    position: absolute;
    left: 0;
    top: calc(50% - 12px);
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 18px;
}

header .social-icons img {
    height: 24px;
    width: auto;
}

.site-branding {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.site-branding a {
    line-height: 0;
}

.site-branding a img {
    max-width: 30vw;
    width: 100%;
}

.nav-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
}

.nav-menu li a {
    text-transform: lowercase;
    font-weight: 500;
}   

.menu-toggle {
    line-height: 0;
    background: none;
    border: 0;
    outline: 0;
    padding: 0;
}

.menu-toggle img {
    width: 24px;
}

@media (max-width: 640px) {
    header .content-container {
        flex-direction: column;
        gap: 12px;
    }

    header .top-section .site-branding {
        order: 1;
    }

    header .top-section .social-icons {
        order: 2;
        position: relative;
        top: auto;
        left: auto;
    }

    .site-branding a {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .site-branding a img {
        max-width: 100%;
    }

    header .main-navigation {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    header .main-navigation ul {
        align-items: center;
        justify-content: center;
        padding-top: 22px;
    }

    header .main-navigation ul li a {
        text-align: center;
    }
}

/* Footer */
footer {
    background: var(--dark-blue);
}

/* Homepage Fields */
.site-main .headline {
    max-width: 904px;
    width: 100%;
    padding: 32px 12px;
    margin: 0 auto;
}

.site-main .headline h1 {
    text-align: center;
    font-size: 36px;
    line-height: 36px;
}

.sticky-note-strip {
    position: relative;
    line-height: 0;
}

.sticky-note-strip img {
    min-height: 300px;
    max-height: 520px;
    width: 100%;
    object-fit: cover;
}

.sticky-note-strip .sticky-note {
    position: absolute;
    top: calc(50% - 140px);
    left: 50px;
    width: 400px;
    height: 280px;
    box-sizing: border-box;
    padding-left: 42px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    transform: rotate(-4deg);
}

.sticky-note-strip.right .sticky-note {
    transform: rotate(4deg);
    left: auto;
    right: 50px;
}

.sticky-note-strip .sticky-note h2 {
    font-family: "Des Montilles", sans-serif;
    font-weight: 400;
    font-size: 80px;
    line-height: 80px;
    margin: -12px 0 0 0;
}

.sticky-note-strip .sticky-note p {
    font-size: 40px;
    line-height: 44px;
    font-family: var(--header-font);
    font-weight: 600;
    text-transform: uppercase;
    max-width: 260px;
    margin: 0;
}

@media (max-width: 960px) {
    .sticky-note-strip .sticky-note {
        width: 300px;
        height: 210px;
        padding-left: 31px;
        top: calc(50% - 105px);
    }

    .sticky-note-strip .sticky-note h2 {
        font-size: 60px;
        line-height: 60px;
    }

    .sticky-note-strip .sticky-note p {
        font-size: 30px;
        line-height: 33px;
        max-width: 195px;
    }
}

/* CTA Strip */
.cta-strip .col-1 h2 {
    text-transform: uppercase;
    font-size: 88px;
    line-height: 92px;
}

.cta-strip .col-2 p {
    margin: 0;
}

.woocommerce .evo_event_information {
    margin: 0px 0 10px 0;
}

.woocommerce .evo_event_information span {
    font-size: 18px;
}

/* Event Style Overrides */
.eventon_events_list .eventon_list_event .event_description {
    background: rgba(0,0,0,0) !important;
}