@import url("./fonts/circularxx.css");

body {
    margin: 0;
    font-family: "CircularXX";
    background-color: #1e1e1e;
    color: #fff;
    font-size: 20px;
    font-weight: 100;
    /* background: rgb(35,36,36); */
    /* background: radial-gradient(circle, rgba(35,36,36,1) 0%, rgba(57,58,58,1) 50%, rgba(25,26,27,1) 100%); */
    background-image: url("./img/bgline2200.png"), radial-gradient(circle, rgba(35,36,36,1) 0%, rgba(57,58,58,1) 50%, rgba(25,26,27,1) 100%);
    background-size: 100% auto;
    background-position: top;
    background-repeat: no-repeat;
}
.header {
    text-align: center;
    padding-top: 120px;
    margin-bottom: 40px;
    padding-left: 20px;
    padding-right: 20px;
}
.header p {
    margin-top: 60px;
    text-transform: uppercase;
    font-size: 28px;
    letter-spacing: 0.05em;
    font-weight: 200;
}
.header p strong {
    font-size: 28px;
    letter-spacing: 0.05em;
    font-weight: 500;
}
.section-title {
    font-size: 28px;
    letter-spacing: 0.05em;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.ploomShopImg {
    border-radius: 20px;
    max-width: 100%;
}

.cardsContainer {
    display: flex;
    flex-wrap: wrap;
}

a {
    color: white;
}

p {
    margin: 0;
}

.cardSpacer {
    width: 50%;
    margin-bottom: 20px;
}
.cardSpacer:nth-child(odd) {
    padding-right: 10px;
}
.cardSpacer:nth-child(even) {
    padding-left: 10px;
}

.cardRow {
    display: flex;
}
.card h3 {
    font-size: 40px;
    font-weight: 100;
    text-transform: uppercase;
    margin-top: 40px;
    margin-bottom: 20px;
}
.card {
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    padding: 20px;
    color: white;
    white-space: pre-line;
    aspect-ratio: 1;
}
.card.img {
    width: 100%;
    border-radius: 20px;
    padding: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.card.img img {
    max-width: 100%;
    height: 100%;
    object-fit: cover;
}

button.openVideoButton, button.openMapButton {
    padding: 0;
    margin: 0;
    border: none;
    outline: none;
    background: none;
    white-space: normal;
    height: 100%;
    width: 100%;
}

.monthSection {
    margin-top: 120px;
}

.modalsContainer {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mapModal, .videoModal {
    padding: 20px;
    background-color: black;
    border: 1px solid white;
    border-radius: 20px;
}
.mapModal {
    height: 80vh;
    width: 80vw;
    max-height: 1080px;
    max-width: 2000px;
}
.videoModal {
    max-height: 100%;
    max-width: calc(100% - 20px);
}
.videoModal video {
    max-width: 100%;
}

#map {
    height: 100%;
    width: 100%;
}

.infoWindow {
    color: black;
}
.infoWindow a {
    color: blue;
}

.mobileOnly {
    display: none;
}

.mapContainer {
    overflow: hidden;
}

.mapContainer iframe {
    margin-top: -60px;
}

.socials {
    margin-top: 100px;
    margin-bottom: 60px;
}

.copyright {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    padding-bottom: 120px;
}
.copyright a {
    text-decoration: none;
}


.footer {
    background-color: rgb(245, 166, 35);
    color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    max-height: 7vh;
    height: 96px;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    font-weight: 400;
    text-align: center;
    padding: 0 20px;
}

.noScroll {
    overflow: hidden;
}

.btn.btn-primary {
    background-color: #1e1e1e;
    color: white;
    outline: none;
    border: none;
}

button#closeMapButton {
    position: absolute;
    left: 50%;
    transform: translateX(-50%) translateY(28px);
}

@media (min-width: 1400px) {

    /* body {
        background-image: url("./img/bgline2200.png"), radial-gradient(circle, rgba(35,36,36,1) 0%, rgba(57,58,58,1) 50%, rgba(25,26,27,1) 100%);
    } */

    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1166px;
    }
}

@media (max-width: 1199px) {

    .card {
        max-height: 456px;
        overflow: auto;
    }

    .card p {
        font-size: 18px;
        line-height: 21px;
    }
    
    .card h3 {
        font-size: 32px;
        margin-top: 10px;
        margin-bottom: 10px;
    }
    
}

@media (max-width: 991px) {

    .header {
        padding-top: 40px;
    }

    .header p {
        margin-top: 40px;
        font-size: 24px;
        line-height: 34px;
    }
    .header p strong {
        font-size: 24px;
    }
    
    .header img {
        max-width: 120px;
    }

    .monthSection {
        margin-top: 80px;
    }
    
    .section-title {
        margin-bottom: 20px;
        padding-left: 4px;
    }

    .cardsContainer {
        display: block;
    }
    
    .cardSpacer {
        width: 100%;
        padding: 0!important;
    }
    
    .card {
        width: 100%;
        min-height: unset;
        max-height: unset;
        aspect-ratio: unset;
        padding-bottom: 30px;
    }
    
    .card.img img {
        width: 100%;
        max-height: 340px;
    }

    .cardRow {
        flex-direction: column;
    }
    .cardRow.reverseOnMobile {
        flex-direction: column-reverse;
    }
    
    /* .card h3 {
        font-size: 40px;
        font-weight: 100;
        text-transform: uppercase;
        margin-top: 40px;
        margin-bottom: 20px;
    }
        */

    .card p {
        font-size: 18px;
        line-height: 23px;
    }

    .footer {
        padding-top: 20px;
        padding-bottom: 20px;
        max-height: unset;
        height: unset;
    }
    
}

@media (max-width: 577px) {

    .mapModal, .videoModal {
        width: calc(100% - 20px);
        height: 70%;
    }

    .videoModal {
        height: unset;
    }

    .socials, .copyright {
        padding-left: 20px;
        padding-right: 20px;
    }

    .mobileOnly {
        display: block;
    }

    .noMobile {
        display: none;
    }

}
