:root {
    --bg-color: #FBF9F4;
    --bg-color-2: #AF5D42;
    --bg-color-3: #2C2C2C;
    --bg-color-4: #FFFFFF;
    --primary-color: #55544E;
    --secondary-color: #625E55;
    --color2: #49473F;
    --logo-color: #3c3752;
}

@font-face {
    font-family: 'Fraunces';
    src: url("/static/web/Fraunces_72pt-Regular.6c2d9bf28de6.woff2");
    font-weight: normal;
    font-style: normal;
    font-display: optional;
}

@font-face {
    font-family: 'Inter';
    src: url("/static/web/Inter_18pt-Regular.645368443dd4.woff2");
    font-weight: normal;
    font-style: normal;
    font-display: optional;
}


@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}




@keyframes spin2 {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(45deg);
    }
}


@keyframes spin3 {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(-45deg);
    }
}


#announcement {
    text-align: right;
    letter-spacing: 8px;
    font-size: 12px;
    text-transform: uppercase;
}

header {
    background-color: rgba(255, 255, 255, 0.7);
    color: var(--secondary-color);
    font-size: 32px;
    text-align: center;
    border-bottom: 1px solid var(--secondary-color);
    position: sticky;
    top: 0;
    margin-left: -10px;
    width: calc(100% + 20px);
    z-index: 999;
    backdrop-filter: blur(10px);
    height: 63px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

header svg {
    width: 40px;
    height: 40px;

    fill: currentColor;
    vertical-align: bottom;
}


.logo svg {
    width: 160px;
    height: 60px;
    display: flex;
    color: var(--logo-color);
}

#L, #O1, #O2, #O3, #P path {
    fill: var(--logo-color);
}

header div {
    flex: 2 0 0;
}

header .logo {
    margin-left: calc(50% - 40px);
    height: 60px;
}

#O1, #O2, #O3 {
    animation: spin 10s infinite ease-in-out;
}

#O1 {
    transform-origin: 16% 56%;
}

#O2 {
    transform-origin: 41% 56%;
    animation-direction: reverse;
}

#O3 {
    transform-origin: 66% 56%;
}

#mainmenu path {
    transition: all 0.3s ease;
}

#mainmenu:hover .top {
    transform: translate(26%, -8%) rotate(45deg);
}

#mainmenu:hover .middle {
    transform: translate(40%, -21%) rotate(45deg);
}

#mainmenu:hover .bottom {
    transform: translate(-45%, 36%) rotate(-45deg);
}

header a, a:visited {
    text-decoration: none;
    color: inherit;
}


body {
    font-family: "Inter", sans-serif;
    background-color: var(--bg-color);
    color: var(--color2);
    padding: 0;
    margin: 0 10px;
}

main {
    min-height: calc(100dvh - 167px);
}

h1, h2, h3, h4, h5 {
    font-family: "Fraunces", serif;
    font-weight: 400;
}

h2 {
    color: var(--bg-color-3);
}

select, input {
    border: 1px solid var(--color2);
    border-radius: 5px;
    padding: 6px;
}


.card {
    width: calc(100% + 18px);
    margin-left: -10px;
    background-color: var(--bg-color-4);
    border-radius: 5px;
    margin-bottom: 30px;
    border: 1px solid #ccc;
}

.card .photo {
    border-radius: 5px 5px 0 0;
    aspect-ratio: 1;
    overflow: hidden;
}

.card .photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s ease;
}

.card .body {
    padding: 10px;
    margin-bottom: 20px;
}

.card .footer {
    color: var(--primary-color);
    font-size: 90%;
    margin: 10px;
}

.card .footer div {
    padding: 2px;

}



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

.small-card {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: flex-start;
    justify-content: space-between;
    padding: 10px;
    border-top: 1px solid var(--primary-color);
}

.small-card h3 {
    margin: 0;
}

.small-card .date {
    width: 100px;
    height: 100%;
    text-transform: uppercase;
}

.small-card .date .month {
    font-size: 120%;
}

.small-card .date .day {
    font-size: 200%;
}

.small-card .body {
    width: 100%;
    height: 100%;
}

.small-card .location a, a:visited {
    color: inherit;
    text-decoration: none;
}

.small-card:last-of-type {
    border-bottom: 1px solid var(--primary-color);
    margin-bottom: 40px;
}

.qrcode {
    display: flex;
    justify-content: center;
}

.qrcode img {
    width: 290px;
    height: 290px;
}

#brand .photo {
    margin-left: calc(20% - 20px);
    width: 75%;
    height: 75%;
    border-radius: 5px 5px 0 0;
    aspect-ratio: 1;
    overflow: hidden;
    margin-bottom: 20px;
}

#brand .photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s ease;
}


footer {
    font-size: 75%;
    padding: 20px 10px;
    text-align: center;
    color: var(--bg-color);
    background: var(--logo-color);
    margin: 30px -10px 0;
    width: 100%;
}

footer a:visited, footer a:any-link {
    color: var(--bg-color);
    font-weight: bold;
    font-size: 120%;
}

form {
    display: flex;
    flex-direction: column;
}

form div.grid div {
    display: flex;
    flex-wrap: wrap;
}

form div div div {
    padding: 5px;
    width: 150px;

}

form div.line {
    max-width: 500px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    margin: 10px;
}

form div.line label {
    margin-right: 20px;
}

form div.line .preview img {
    width: 150px;
}

form div.required label::after {
    content: "*";
    color: red;
}

form div.buttons {
    max-width: 500px;
    display: flex;
    align-content: center;
    justify-content: space-evenly;
}


button {
    background-color: var(--bg-color-3);
}

button, .button {
    color: var(--bg-color);
    font-size: 100%;
    font-weight: bold;
    padding: 5px 20px;
    margin: 10px;
    cursor: pointer;
    text-decoration: none;
}

button.delete {
    width: fit-content;
    background-color: var(--bg-color-2);
}

a.cancel {
    color: var(--bg-color);
    background-color: var(--primary-color);
}

#nearMeForm {
    flex: 0 0 auto;
}

#nearMeForm button {
    display: flex;
    background-color: transparent;
    width: fit-content;
    color: var(--color2);
    font-size: 50%;
    border-width: 0px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

#nearMeForm button svg {
    width: 2rem;
    height: 2rem;
    fill: currentColor;
    vertical-align: bottom;
}


#waitlist div:nth-child(6) {
    display: none;
}

#map {
    position: absolute;
    top: 40px;
    left: 0;
    bottom: 50%;
    width: 100%;
}

.accordion.off {
    height: 0px;
    overflow-y: hidden;
    transition: all 0.5s;
}

.accordion.on {
    height: 300px;
    overflow-y: hidden;
    transition: all 0.5s;
}

.tags {
    display: flex;
}

.tags .tag {
    border: 1px solid var(--bg-color-3);
    background: var(--bg-color);
    border-radius: 6px;
    margin: 8px 3px 8px 3px;
    padding: 4px 5px;
}

.tags a {
    font-weight: bold;
    text-decoration: none;
    color: var(--primary-color);
}

.tags a:hover .tag {
    color: var(--bg-color);
    background-color: var(--primary-color);
}

svg.icon {
    width: 1rem;
    height: 1rem;
    fill: currentColor;
    vertical-align: bottom;
}

a svg.icon {
    padding: 5px;
    width: 35px;
    height: 35px;
}


@media (min-width: 600px) {
    main {
        margin-left: calc(50% - 290px);
        width: 570px;
    }

    header {
        background-color: var(--bg-color);
        position: relative;
    }
}

@media print {
    body {
        font-family: 'Courier New', Courier, monospace !important;
    }

    h1, h2, h3, h4, h5 {
        font-family: 'Times New Roman', Times, serif !important;
    }
}