:root {
    --brand-color-1: #0F5F7A;
    --standard-padding: 16px;
    --standard-font-size: 18px;
    --standard-paragraph-spacing: 10px;
    --standard-section-spacing: 60px;
    --standard-text-color: #000;
}

@media (min-width: 960px) {
    :root {
        --standard-font-size: 20px;
    }
}

/*@media (min-width: 1024px) {
    :root {
        --standard-font-size: 18px;
    }
}

@media (min-width: 1600px) {
    :root {
        --standard-font-size: 20px;
    }
}*/

@font-face {
    font-family: "Nunito Sans";
    src: url("../fonts/nunito-sans.woff2");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Just Another Hand";
    src: url("../fonts/just-another-hand.woff2");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "impact";
    src: url("../fonts/impact.woff2");
    font-weight: normal;
    font-style: normal;
}

* {
    box-sizing: border-box;
}

:is(h1, h2, h3, h4, h5, h6, p, ul, ol) {
    margin-top: 0;
    margin-bottom: var(--standard-paragraph-spacing);
}

:is(h1, h2, h3, h4, h5, h6, p, ul, ol):last-child {
    margin-bottom: 0;
}

body {
    margin: 0;
    font-family: "Nunito Sans";
    font-size: var(--standard-font-size);
    background-color: #B3E4FF;
    display: flex;
    flex-direction: column;
    height: 100vh;
    color: var(--standard-text-color);
}

body:has(.mega-heading-section) header .logo {
    display: none;
}

body:has(.burger-menu.js-active) {
    overflow-y: hidden;
}

a, a:visited {
    color: var(--standard-text-color);
}

img {
    max-width: 100%;
}

/****************** Header ******************/

:root {
    --header-height: 50px;
}

header {
    background-color: rgba(0, 0, 0, 0.3);
    color: #fff;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

header > .inner {
    position: relative;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
    height: var(--header-height);
    max-width: 1200px;
    display: flex;
    justify-content: end;
    align-items: center;
    padding-left: var(--standard-padding);
    padding-right: var(--standard-padding);
}

header nav {
    display: none;
    position: absolute;
    top: var(--header-height);
    left: 0;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background-color: var(--brand-color-1);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

header nav a {
    font-family: "Just Another Hand";
    font-size: calc(var(--standard-font-size) * 3);
    text-decoration: none;
    color: #fff;
}

header nav a:visited {
    color: #fff;
}

header .burger-menu {
    height: 25px;
}

header:has(.burger-menu.js-active) {
    background-color: var(--brand-color-1);
    opacity: 0.95;
}

header:has(.burger-menu.js-active) nav {
    display: flex;
}

header .logo {
    position: absolute;
    top: 10px;
    left: var(--standard-padding);
    width: 120px;
}

header:has(.burger-menu.js-active) .logo {
    display: none;
}

@media (min-width: 768px) {
    header nav {
        display: flex;
        flex-direction: row;
        position: relative;
        width: auto;
        height: auto;
        background: none;
        top: auto;
        left: auto;
    }

    header nav a {
        font-size: calc(var(--standard-font-size) * 1.8);
    }

    header .burger-menu {
        display: none;
    }
}

@media (min-width: 1200px) {
    header > .inner {
        padding-left: 0;
        padding-right: 0;
    }
}

/****************** Main ******************/

main {
    background-color: #fff;
    flex: 1;
    position: relative;
    margin-bottom: calc(var(--standard-padding) + 12px);
    padding: var(--standard-padding);
    margin-top: 95px;
    overflow-x: clip;
}

main::before {
    display: block;
    content: " ";
    background-image: url("../img/svg/page-top.svg");
    width: 100%;
    height: 50px;
    position: absolute;
    left: 0;
    top: -49px;
    background-size: 100%;
    background-position: bottom;
    background-repeat: no-repeat;
    z-index: -1;
}

main::after {
    display: block;
    content: " ";
    background-image: url("../img/svg/page-bottom.svg");
    width: 100%;
    height: 50px;
    position: absolute;
    left: 0;
    bottom: -49px;
    background-size: 100%;
    background-position: top;
    background-repeat: no-repeat;
}

/*main:has(.mini-heading-section:first-child) {
    margin-top: 95px;
}*/

main:has(.mega-heading-section:first-child) {
    margin-top: 160px;
}

@media (min-width: 768px) {
    main {
        margin: var(--standard-padding);
        margin-top: 110px;
        margin-bottom: calc(var(--standard-padding) + 25px);
    }

    /*main:has(.mini-heading-section:first-child) {
        margin-top: 102px;
    }*/

    main:has(.mega-heading-section:first-child) {
        margin-top: 124px;
    }
}

@media (min-width: 1024px) {
    main {
        margin-top: 128px;
        margin-bottom: calc(var(--standard-padding) + 35px);
    }

    /*main:has(.mini-heading-section:first-child) {
        margin-top: 128px;
    }*/

    main:has(.mega-heading-section:first-child) {
        margin-top: 150px;
    }
}

@media (min-width: 1200px) {
    main {
        margin-left: auto;
        margin-right: auto;
        margin-bottom: calc(var(--standard-padding) + 45px);
        width: 1200px;
        padding: calc(var(--standard-padding) * 2);
    }

    /*main:has(.mini-heading-section:first-child) {
        margin-top: 134px;
    }*/

    main:has(.mega-heading-section:first-child) {
        margin-top: 152px;
    }
}

/****************** Footer ******************/

footer {
    background-color: var(--brand-color-1);
    color: #fff;
    padding: var(--standard-padding);
}

/****************** Mega Heading Section ******************/

.mega-heading-section {
    background-image: url(../img/svg/music-notes-bg.svg);
    background-repeat: no-repeat;
    background-size: calc(100% - 10px);
    background-position-x: 5px;
    background-position-y: 100%;
    padding-left: var(--standard-padding);
    padding-right: var(--standard-padding);
    padding-bottom: var(--standard-section-spacing);
    /*margin-bottom: -22px;*/
    margin-left: calc(var(--standard-padding) * -1);
    margin-right: calc(var(--standard-padding) * -1);
}

.mega-heading-section .logo {
    margin-bottom: calc(var(--standard-section-spacing) / 2);
}

.mega-heading-section:first-child .logo {
    margin-top: -120px;
}

@media (min-width: 768px) {
    .mega-heading-section .logo {
        width: 55%;
    }

    .mega-heading-section:first-child .logo {
        margin-top: -84px;
    }
}

@media (min-width: 1024px) {
    .mega-heading-section:first-child .logo {
        margin-top: -108px;
    }

    .mega-heading-section {
        padding-bottom: 130px;
        margin-bottom: -55px;
    }
}

@media (min-width: 1200px) {
    .mega-heading-section {
        padding-bottom: 155px;
        margin-bottom: -70px;
    }

    .mega-heading-section:first-child .logo {
        margin-top: -128px;
    }
}

@media (min-width: 768px) {
    .mega-heading-section .next-meetup {
        position: absolute;
        top: var(--standard-padding);
        right: var(--standard-padding);
        width: 45%;
    }
}

@media (min-width: 960px) {
    .mega-heading-section .next-meetup {
        max-width: 420px;
    }
}

@media (min-width: 1024px) {
    .mega-heading-section .next-meetup {
        right: calc(var(--standard-padding) * 2);
        max-width: 440px;
    }
}

@media (min-width: 1600px) {
    .mega-heading-section .next-meetup {
        max-width: 460px;
    }
}

/****************** Content Section ******************/

.content-section {
    margin-bottom: var(--standard-section-spacing);
}

.content-section:last-child {
    margin-bottom: 0;
}

.content-section .logo {
    margin-top: -58px;
    margin-bottom: var(--standard-padding);
    height: 100px;
}

.content-section h1 {
    font-family: "Just Another Hand";
    font-weight: normal;
    font-size: calc(var(--standard-font-size) * 4);
    line-height: 1;
    margin-bottom: var(--standard-padding);
}

@media (min-width: 1024px) {
    .content-section .logo {
        margin-top: -86px;
        height: 150px;
    }
}

@media (min-width: 1204px) {
    .content-section .logo {
        margin-top: -108px;
        height: 170px;
    }
}

/****************** Feature Section ******************/

:root {
    --feature-section-postcard-overhang-compensation: 64px;
}

.feature-section {
    position: relative;
    background-color: #E9F4FF;
    padding: var(--standard-padding);
    margin-bottom: var(--standard-section-spacing);
    display: flex;
    flex-direction: column;
    gap: var(--standard-padding);
}

.feature-section:last-child {
    margin-bottom: 0;
}

.feature-section:has(> .section-heading) {
    padding-top: calc(var(--standard-padding) * 2);
}

.feature-section .section-heading {
    position: absolute;
    top: 0;
    transform: translate(0, -50%);
}

.feature-section:has(> .postcard) {
    margin-bottom: calc(var(--standard-section-spacing) + var(--feature-section-postcard-overhang-compensation));
}

.feature-section:has(> .postcard):last-child {
    margin-bottom: var(--feature-section-postcard-overhang-compensation);
}

.feature-section > .postcard {
    margin-top: var(--standard-padding);
    margin-bottom: -60px;
}

@media (min-width: 768px) {

    .feature-section {
        min-height: 152px;
        margin-bottom: calc(var(--standard-padding) * 4);
        flex-direction: row;
    }

    .feature-section:has(> .postcard) {
        margin-bottom: var(--standard-section-spacing);
    }

    .feature-section:has(> .postcard) .content {
        padding-right: calc(30% + var(--standard-padding) * 2);
        margin-bottom: 0;
    }

    .feature-section > .postcard {
        margin-top: 0;
        margin-bottom: 0;
        width: 30%;
        position: absolute;
        top: 5px;
        right: 0;
    }

    .feature-section .content {
        flex: 70%;
    }

    .feature-section aside {
        flex: 30%;
    }
}

@media (min-width: 912px) {
    .feature-section {
        min-height: 174px;
    }
}


@media (min-width: 1024px) {
    .feature-section {
        min-height: 195px;
    }
}

@media (min-width: 1200px) {
    .feature-section {
        min-height: 230px;
        padding: calc(var(--standard-padding) * 2);
    }

    .feature-section:has(> .section-heading) {
        padding-top: calc(var(--standard-padding) * 3);
    }
}

/****************** Video Gallery Section ******************/

:root {
    --video-gallery-section-arrow-button-size: 20px;
}

.video-gallery-section {
    margin-bottom: var(--standard-section-spacing);
    position: relative;
}

.video-gallery-section:has(.film-strip.js-left-scrollable)::before {
    display: block;
    content: " ";
    background-image: url(../img/svg/arrow-left.svg);
    width: var(--video-gallery-section-arrow-button-size);
    aspect-ratio: 0.8;
    position: absolute;
    left: calc(var(--standard-padding) * -0.5);
    top: 50%;
    transform: translate(0, -50%);
    background-size: 100%;
    background-position: top;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: +1;
}

.video-gallery-section:has(.film-strip.js-right-scrollable)::after {
    display: block;
    content: " ";
    background-image: url(../img/svg/arrow-right.svg);
    width: var(--video-gallery-section-arrow-button-size);
    aspect-ratio: 0.8;
    position: absolute;
    right: calc(var(--standard-padding) * -0.5);
    top: 50%;
    transform: translate(0, -50%);
    background-size: 100%;
    background-position: top;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: +1;
}

.video-gallery-section .section-heading {
    position: absolute;
    top: 0;
    left: var(--standard-padding);
    transform: translate(0, -50%);
    z-index: +1;
}

@media (min-width: 1200px) {
    .video-gallery-section .section-heading {
        left: calc(var(--standard-padding) * 2);
    }
}

/****************** Image Gallery Section ******************/

:root {
    --image-gallery-section-arrow-button-size: 20px;
}
/*
@media (min-width: 768px) {
    :root {
        --image-gallery-section-arrow-button-size: 35px;
    }
}

@media (min-width: 1600px) {
    :root {
        --image-gallery-section-arrow-button-size: 40px;
    }
}
*/
.image-gallery-section {
    margin-bottom: var(--standard-section-spacing);
    position: relative;
    padding-top: var(--standard-padding);
}

.image-gallery-section:has(.polaroid-list.js-left-scrollable)::before {
    display: block;
    content: " ";
    background-image: url(../img/svg/arrow-left.svg);
    width: var(--image-gallery-section-arrow-button-size);
    aspect-ratio: 0.8;
    position: absolute;
    left: calc(var(--standard-padding) * -0.5);
    top: 50%;
    transform: translate(0, -50%);
    background-size: 100%;
    background-position: top;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: +1;
}

.image-gallery-section:has(.polaroid-list.js-right-scrollable)::after {
    display: block;
    content: " ";
    background-image: url(../img/svg/arrow-right.svg);
    width: var(--image-gallery-section-arrow-button-size);
    aspect-ratio: 0.8;
    position: absolute;
    right: calc(var(--standard-padding) * -0.5);
    top: 50%;
    transform: translate(0, -50%);
    background-size: 100%;
    background-position: top;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: +1;
}

.image-gallery-section .section-heading {
    position: absolute;
    top: 0;
    left: var(--standard-padding);
    transform: translate(0, -50%);
    z-index: +1;
}

@media (min-width: 1200px) {
    .image-gallery-section .section-heading {
        left: calc(var(--standard-padding) * 2);
    }
}


/****************** Next Meet-up ******************/

.next-meetup {
    display: flex;
    gap: var(--standard-padding);
    max-width: calc(100vw - (var(--standard-padding) * 2));
    margin-left: auto;
    margin-right: auto;
}

.next-meetup .details {
    flex: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.next-meetup .details .event-name {
    font-family: "Impact";
    color: var(--brand-color-1);
    text-align: center;
    text-wrap: balance;
    font-size: calc(var(--standard-font-size) * 1.2);
}

.next-meetup .details .time {
    text-align: center;
}

.next-meetup .calendar {
    margin-top: -18px;
    flex: 50%;
}

@media (min-width: 768px) {
    .next-meetup .details {
        flex: 55%;
    }

    .next-meetup .details h2 {
        margin-bottom: calc(var(--standard-padding) * 0.5);
    }

    .next-meetup .details .event-name {
        margin-bottom: calc(var(--standard-padding) * 0.5);
        font-size: calc(var(--standard-font-size) * 1.1);
    }

    .next-meetup .calendar {
        flex: 45%;
    }
}

@media (min-width: 960px) {
    .next-meetup .details .event-name {
        font-size: calc(var(--standard-font-size) * 1.3);
    }

    .next-meetup .details .time {
        font-size: calc(var(--standard-font-size) * 1.2);
    }
}

@media (min-width: 1024px) {
    .next-meetup .details .event-name {
        font-size: calc(var(--standard-font-size) * 1.6);
    }
}

/****************** Calendar ******************/

.calendar {
    color: transparent;
    user-select: none;
    flex: 1;

    display: block;
    aspect-ratio: 0.9;

    background-image: url(../img/svg/calendar.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

/****************** Postcard ******************/

.postcard {
    position: relative;
    display: flex;
    border: solid #FFF5D5 10px;
    box-shadow: 2px 0px 16px 4px rgba(0,0,0,0.09);
}

.postcard::before {
    display: block;
    content: " ";
    background-image: url(../img/svg/paperclip.svg);
    width: 30px;
    top: -25px;
    aspect-ratio: 1 / 2;
    position: absolute;
    background-size: 100%;
    background-position: bottom;
    background-repeat: no-repeat;
}

.postcard::after {
    display: block;
    content: " ";
    width: 70px;
    height: 70px;
    position: absolute;
    background-size: 100%;
    background-position: bottom;
    background-repeat: no-repeat;
}

.postcard.variant1 {
    transform: rotate(-4deg);
}

.postcard.variant1::before {
    right: 5px;
}

.postcard.variant1::after {
    background-image: url(../img/svg/postcard-flowers-1.svg);
    bottom: -26px;
    left: -36px;
}

.postcard.variant2 {
    transform: rotate(4deg);
}

.postcard.variant2::before {
    left: 5px;
}

.postcard.variant2::after {
    background-image: url(../img/svg/postcard-flowers-2.svg);
    bottom: -34px;
    right: -30px;
}

.postcard.variant3 {
    transform: rotate(-4deg);
}

.postcard.variant3::before {
    right: 5px;
}

.postcard.variant3::after {
    background-image: url(../img/svg/postcard-flowers-3.svg);
    bottom: -26px;
    left: -36px;
}

/****************** Polaroid ******************/

.polaroid {
    display: block;
    /*align-items: start;*/
    list-style: none;
    margin-bottom: var(--standard-padding);
}

.polaroid:last-child {
    margin-bottom: 0;
}

.polaroid a {
    position: relative;
    background-color: #fff5d5;
    display: flex;
    flex-direction: column;
    /*width: 100%;*/
    aspect-ratio: 5 / 6;
    
    padding-left: 5%;
    padding-right: 5%;
    padding-top: 5%;

    margin-top: 7%;
    margin-left: 8%;
    margin-right: 8%;

    box-shadow: 2px 0px 16px 4px rgba(0,0,0,0.09);
}

.polaroid a::before {
    display: block;
    content: " ";
    background-image: url(../img/svg/photo-tape.svg);
    width: 15%;
    aspect-ratio: 0.4;
    position: absolute;
    left: 8%;
    top: 8%;
    transform: translate(-50%, -50%) rotate(45deg);
    background-size: 100%;
    background-position: top;
    background-repeat: no-repeat;
    pointer-events: none;
}

.polaroid a::after {
    display: block;
    content: " ";
    background-image: url(../img/svg/photo-tape.svg);
    width: 15%;
    aspect-ratio: 0.4;
    position: absolute;
    right: 8%;
    top: 8%;
    transform: translate(50%, -50%) rotate(-45deg);
    background-size: 100%;
    background-position: top;
    background-repeat: no-repeat;
    pointer-events: none;
}

.polaroid img {
    object-fit: cover;
    /*width: calc(100%);*/
    aspect-ratio: 1;
}

/****************** Film Strip ******************/

:root {
    --film-strip-num-videos-per-screen: 1;
    --film-strip-gap: 3.5%;
    --film-strip-play-button-size: 20px;
}

@media (min-width: 768px) {
    :root {
        --film-strip-num-videos-per-screen: 3;
        --film-strip-gap: 2.3%;
        --film-strip-play-button-size: 35px;
    }
}

@media (min-width: 1600px) {
    :root {
        --film-strip-num-videos-per-screen: 4;
        --film-strip-gap: 1.8%;
        --film-strip-play-button-size: 40px;
    }
}

.film-strip {
    background-color: #fff5d5;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--film-strip-gap);
    overflow-x: hidden;
    margin-bottom: var(--standard-padding);
    cursor: grab;
}

.film-strip:last-child {
    margin-bottom: 0;
}

.film-strip .film {
    width: calc((100% - (var(--film-strip-gap) * (var(--film-strip-num-videos-per-screen) - 1))) / var(--film-strip-num-videos-per-screen));
    margin-bottom: 0;
}

/****************** Film ******************/

:root {
    --film-play-button-size: 35px;
}

@media (min-width: 768px) {
    :root {
        --film-play-button-size: 35px;
    }
}

@media (min-width: 1600px) {
    :root {
        --film-play-button-size: 40px;
    }
}


.film {
    background-color: #fff5d5;
    list-style: none;
    flex-shrink: 0;
    aspect-ratio: 1.176;

    background-image: url(../img/svg/film-overlay.svg);
    background-repeat: no-repeat;

    display: flex;
    align-items: center;
    position: relative;

    margin-bottom: var(--standard-padding);
}

.film:last-child {
    margin-bottom: 0;
}

.film::after {
    display: block;
    content: " ";
    background-image: url("../img/svg/play.svg");
    width: var(--film-play-button-size);
    aspect-ratio: 1;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-size: 100%;
    background-position: top;
    background-repeat: no-repeat;
    pointer-events: none;
}

.film a {
    display: flex;
    width: 100%;
    aspect-ratio: 16/9;
}

.film img {
    aspect-ratio: 16/9;
    object-fit: cover;
}

/****************** Polaroid List ******************/

:root {
    --polaroid-list-num-images-per-screen: 1;
    --polaroid-list-gap: 5%;
}

@media (min-width: 768px) {
    :root {
        --polaroid-list-num-images-per-screen: 3;
        --polaroid-list-gap: 5%;
    }
}

@media (min-width: 1600px) {
    :root {
        --polaroid-list-num-images-per-screen: 4;
        --polaroid-list-gap: 5%;
    }
}

.polaroid-list {
    position: relative;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--polaroid-list-gap);
    overflow-x: hidden;
    padding-bottom: calc(var(--standard-padding) * 1.5);
    margin-bottom: var(--standard-padding);
    cursor: grab;
}

.polaroid-list:last-child {
    margin-bottom: 0;
}

.polaroid-list .polaroid {
    width: calc((100% - (var(--polaroid-list-gap) * (var(--polaroid-list-num-images-per-screen) - 1))) / var(--polaroid-list-num-images-per-screen));
    flex-shrink: 0;
    margin-bottom: 0;
}

.polaroid-list .polaroid:nth-child(4n + 1) {
    transform: rotate(-4deg);
}

.polaroid-list .polaroid:nth-child(4n + 2) {
    transform: rotate(2deg);
}

.polaroid-list .polaroid:nth-child(4n + 3) {
    transform: rotate(-1deg);
}

.polaroid-list .polaroid:nth-child(4n + 4) {
    transform: rotate(3deg);
}

@media (min-width: 768px) {
    .polaroid-list {
        padding-top: calc(var(--standard-padding) * 1.5);
    }

    .polaroid-list .polaroid:nth-child(4n + 1) {
        transform: translate(6px, -15px) rotate(-4deg);
    }

    .polaroid-list .polaroid:nth-child(4n + 2) {
        transform: translate(-3px, 4px) rotate(4deg);
    }

    .polaroid-list .polaroid:nth-child(4n + 3) {
        transform: translate(2px, -4px) rotate(-10deg);
    }

    .polaroid-list .polaroid:nth-child(4n + 4) {
        transform: translate(-9px, 1px) rotate(6deg);
    }
}

/****************** Book ******************/

.book {
    background-image: url(../img/svg/book-bg.svg);
    background-size: cover;
    aspect-ratio: 390/500;
    position: relative;
    margin-bottom: var(--standard-padding);
    display: block;
}

.book:last-child {
    margin-bottom: 0;
}

.book img {
    object-fit: scale-down;
    aspect-ratio: 0.65;
    width: 70%;
    position: absolute;
    top: 52%;
    left: 52%;
    border-radius: 2%;
    transform: translate(-50%, -50%);
    background-color: #fff;;
}

/****************** Book Download ******************/

.book-download {
    margin-bottom: var(--standard-padding);
    display: block;
}

.book-download:last-child {
    margin-bottom: 0;
}

.book-download a {
    text-decoration: none;
}

.book-download .book-title {
    text-align: center;
}

.book-download .book-description {
    text-align: center;
}

/****************** Book List ******************/

:root {
    --book-list-gap: var(--standard-padding);
}

.book-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--book-list-gap);
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
    margin-top: var(--standard-padding);
    margin-bottom: var(--standard-padding);
}

.book-list:first-child {
    margin-top: 0;
}

.book-list:last-child {
    margin-bottom: 0;
}

.book-list .book-download {
    flex-grow: 1;
    list-style: none;
    margin-bottom: 0;
}

@media (min-width: 768px) {
    .book-list {
        grid-template-columns: 1fr 1fr 1fr;
        margin-top: calc(var(--standard-padding) * 2);
    }
}

@media (min-width: 1200px) {
    .book-list {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }
}


/****************** Burger Menu ******************/

.burger-menu {
    font-size: 0;
    color: transparent;
    user-select: none;

    display: block;
    aspect-ratio: 500/398;

    background-image: url(../img/svg/burger-menu.svg);
    background-repeat: no-repeat;
    background-size: cover;
}

.burger-menu.js-active {
    background-image: url(../img/svg/burger-menu-close.svg);
}

/****************** Page Heading ******************/
/*.page-heading {
    font-family: "Just Another Hand";
    font-weight: normal;
    font-size: calc(var(--standard-font-size) * 4);
    line-height: 1;
    margin-bottom: var(--standard-padding);
}

.page-heading:last-child {
    margin-bottom: 0;
}*/

/****************** Section Heading ******************/

.section-heading {
    font-family: "Just Another Hand";
    font-weight: normal;
    margin-bottom: var(--standard-padding);
    font-size: calc(var(--standard-font-size) * 2.5);
    line-height: 40px;
    position: relative;
}

.section-heading::after {
    display: block;
    content: " ";
    background-image: url("../img/svg/heading-underline.svg");
    width: 85px;
    height: 7px;
    position: absolute;
    left: 0;
    bottom: -2px;
    background-repeat: no-repeat;
    background-size: cover;
}

.section-heading.center {
    text-align: center;
}

.section-heading.center::after {
    left: 50%;
    transform: translate(-50%);
}

@media (min-width: 1600px) {
    .section-heading {
        font-size: calc(var(--standard-font-size) * 2.5);
    }

    .section-heading::after {
        width: 120px;
        height: 10px;
        bottom: -10px;
    }
}

/****************** Gig Mode Stamp ******************/

.gig-mode-stamp {
    background-image: url(../img/svg/gig-mode-stamp.svg);
    background-repeat: no-repeat;
    background-size: cover;
    aspect-ratio: 500 / 245;
    color: transparent;
    user-select: none;
    flex: 1;
}

/****************** Event ******************/

.event {
    position: relative;
    /*padding-left: calc(30% + var(--standard-padding));*/
    display: flex;
    gap: var(--standard-padding);
    margin-bottom: var(--standard-padding);
}

.event:last-child {
    margin-bottom: 0;
}

.event .event-date {
    flex: 35%;
}

.event .event-details {
    flex: 65%;
    padding-top: 4%;
}

.event .event-name {
    font-family: "Impact";
    font-weight: normal;
    color: var(--brand-color-1);
    margin-bottom: 0;
}

.event .event-address {
    font-weight: bold;
    margin-bottom: 0;
}

.event .gig-mode-stamp {
    position: absolute;
    bottom: 12px;
    right: 0;
    /*width: 10%;
    margin-left: auto;
    margin-right: auto;*/
    transform: rotate(-10deg);
}

@media (min-width: 768px) {
    .event .event-date {
        flex-basis: 160px;
        flex-shrink: 0;
        flex-grow: 0;
    }

    .event .event-details {
        flex-basis: calc(100% - 160px - 130px);
        flex-shrink: 0;
        flex-grow: 0;
        padding-top: 34px;
    }

    .event .gig-mode-stamp {
        top: 50%;
        bottom: auto;
        transform: translate(0, -50%) rotate(-10deg);
        width: 100px;
    }
}

/****************** Event List ******************/

.event-list {
    margin: 0;
    padding: 0;
    margin-bottom: var(--standard-padding);
}

.event-list>:last-child {
    margin-bottom: 0;
}

.event-list .event {
    border-bottom: solid #ddd 3px;
    padding-bottom: var(--standard-padding);
}

.event-list .event:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

/****************** Logo ******************/

.logo {
    display: block;
    color: transparent;
    user-select: none;

    aspect-ratio: 500/300;

    background-image: url(../img/svg/logo.svg);
    background-repeat: no-repeat;
    background-size: cover;
}

/****************** Modal ******************/

.modal {
    width: 100%;
    padding: var(--standard-padding);
    border: none;
    border-radius: 10px;
    max-width: 500px;
}

.modal::backdrop {
    background-color: var(--brand-color-1);
    opacity: 0.6;
}

.modal .modal-close {
    position: absolute;
    top: var(--standard-padding);
    right: var(--standard-padding);
    z-index: 10000;

    aspect-ratio: 500/500;

    background-image: url(../img/svg/modal-close.svg);
    background-repeat: no-repeat;
    background-size: cover;

    color: transparent;
    user-select: none;
    font-size: 0;
    height: 28px;
}

/****************** Form Group ******************/

.form-group {
    margin-bottom: var(--standard-padding);
}

.form-group:last-child {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    font-weight: bold;
}

.form-group input[type=text], input[type=password] {
    width: 100%;
    padding: calc(var(--standard-padding) / 2);
    border: solid var(--brand-color-1) 1px;
    border-radius: 4px;
}

.form-group small {
    font-size: calc(var(--standard-font-size) * 0.75);
    color: var(--brand-color-1);
}

/****************** Button ******************/

button {
    background-color: var(--brand-color-1);
    border: none;
    color: #fff;
    padding: calc(var(--standard-padding) / 2);
    border-radius: 4px;
}

/****************** Button ******************/

.month-seperator {
    text-align: center;
    background-color: #E0F4FF;
    padding: var(--standard-padding);
    border-radius: var(--standard-padding);
}