@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');

body {
    margin: 0;
    background-color: black;
}

* {
    font-family: 'Montserrat', sans-serif;
    color: white;
}

.section {
    min-height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    /* overflow: hidden; */
}

.section-title {
    padding-top: 6vh;
    padding-left: 6vw;
    z-index: 1;
}

.darken-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #292929;
    mix-blend-mode: hard-light;
    transform: translate3d(0, 0, 0);
}

.text-big {
    font-size: 100px;
    font-weight: 700;
    margin: 0;
}

/* LANDING */

.landing-section {
    overflow: hidden;
    display: grid;
    grid-auto-rows: auto 1fr;
    height: 100vh;
}

.landing-background {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: grid;
    grid-auto-rows: 50px;
    grid-gap: 15px;
    grid-template-columns: repeat(auto-fill, minmax(30%, 1fr));
    z-index: -1;
    background-color: black;
}

.landing-image {
    background-position: center;
    background-size: cover;
}

[short] {
    grid-row: span 7;
}

[tall] {
    grid-row: span 8;
}

[taller] {
    grid-row: span 10;
}

[tallest] {
    grid-row: span 15;
}

.landing-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.landing-location {
    font-size: 40px;
    font-weight: 500;
    margin: 0;
}

.landing-date {
    font-size: 36px;
    font-weight: 600;
    margin: 0;
    margin: 20px 0 0 0;
}

.landing-content {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    justify-items: center;
    align-items: center;
    height: 100%;
}

.landing-logo {
    width: 850px;
}

/* ARTISTS */
#tsparticles {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.artists-section {
    min-height: 100vh;
    height: fit-content;
    display: flex;
    flex-direction: column;
}

.artists-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-items: center;
    gap: 2vw; 
    padding: 5vw 0 5vw 0;
}

.artist-card {
    max-width: 443px;
    max-height: 702px;
    min-width: 280px;
    min-height: 444px;
    width: 19vw;
    height: 31vw;
    background-color: black;
    background-size: cover;
    position: relative;
    display: flex;
    align-items: flex-end;
}


.hidden-artist:hover::after {
    content: '' !important;
    width: 0px !important;
}

.artist-card:hover::after {
    content: attr(data-hover);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center; 
    padding: 12px;       
    font-size: 20px;
    background: rgba(0, 0, 0, 0.6);
    width: calc(100% + 1px);
    height: calc(100% + 1px);
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
    margin-bottom: -1px;
    box-sizing: border-box;
}

@media (max-width: 650px) {
  .artist-card:hover::after {
    font-size: 16px;
  }
}


.artist-card::before {
    content: '';
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, black 100%);
    width: calc(100% + 1px);
    height: 70%;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
    margin-bottom: -1px;
}

.artist-card-text {
    height: 35%;
    width: 100%;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0 0 28px 28px;
    text-shadow: 0 4px 4px rgba(0, 0, 0, 0.26);
}

.artist-name {
    font-weight: 400;
    /* font-size: 64px; */
    /* font-size: 2.5vw; */
    font-size: clamp(40px, 2.5vw, 60px);
    margin: 0;
}

.artist-time {
    font-weight: 300;
    /* font-size: 48px; */
    font-size: clamp(32px, 2vw, 43px);
    margin: 0;
}

.artist-date {
    font-weight: 300;
    /* font-size: 40px; */
    font-size: clamp(25px, 1.6vw, 40px);
    margin: 0;
}

/* ABOUT */

.about-section {
    min-height: 100vh;
    /* height: fit-content; */
    display: grid;
    grid-auto-rows: auto 1fr;
}

.about-background {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    background-image: url(../assets/img/low-web-new/o-nas-new.webp);
    background-size: cover;
    background-position: center;
}

.about-content {
    /* height: 100%; */
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr 30%;
    padding-top: 3vw;
}

.about-text-wrapper {
    grid-area: 1 / 1 / 2 / 2;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.about-text {
    margin: 0;
    font-weight: 400;
    font-size: 28px;
    width: 80%;
}

.about-socials-wrapper {
    grid-area: 2 / 1 / 3 / 2;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.about-patron {
    grid-area: 2 / 2 / 3 / 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-patron-image {
    height: 180px;
}

.about-patron-text {
    width: fit-content;
    margin: 0;
    padding: 0;
    font-weight: 500;
    font-size: 24px;
    padding-left: 20px;
}

.about-ico {
    display: block;
    height: 180px;
    width: 180px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-ico img {
    width: 100%;
    fill: white;
}

.about-video-wrapper {
    grid-area: 1 / 2 / 3 / 3;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.about-video {
    aspect-ratio: 16 / 9;
    width: 40vw;
    /* background-color: darkred; */
    display: flex;
    justify-content: center;
    align-items: center;
    background-position: center;
    background-size: cover;
}

.about-video img {
    height: 100%;
}

.about-video-frame {
    height: 100%;
    width: 100%;
}

/* GALLERY */

.gallery-section {
    display: grid;
    grid-auto-rows: auto 1fr;
    height: 100vh;
    overflow: hidden;
}

.gallery-image-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.gallery-content {
    width: 100%;
    max-width: 100vw;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    max-height: 100%;
    overflow: hidden;
}

.gallery {
    width: 90%;
    height: 90%;
    max-height: 90%;
    display: flex;
    align-items: center;
}

.preview-wrapper {
    overflow-y: scroll;
    max-height: 100%;
    min-height: 100px;
    width: 15%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
    padding: 10px;
}

.preview-wrapper::-webkit-scrollbar {
    background: yellow;
    width: 10px;
    height: 10px;
}

.preview-wrapper::-webkit-scrollbar-track {
    background: #212121;
}

.preview-wrapper::-webkit-scrollbar-thumb {
    background: white;
    border-radius: 25px;
}

.preview-image {
    aspect-ratio: 1/1;
    width: 100%;
    background-position: center;
    background-size: cover;
    border-radius: 16px;
}

[data-active='true'] {
    border: 1px solid #fff;
    box-shadow: inset 0 0 10px #000000;
}

/* ZONES */
.zones-section {
    display: grid;
    grid-auto-rows: auto 1fr;
    min-height: 100vh;
    background-image: url(../assets/img/low-web/IMG_0310.webp);
    background-size: cover;
    background-position: center;
}

.zones-content {
    width: 100%;
    height: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
    max-height: 90%;
    margin-left: auto;
    margin-right: auto;
    z-index: 1;
}

.zones-image {
    width: 100%;
    height: 100%;
    padding-right: 5%;
    display: flex;
    align-items: center;
}

.zones-image img {
    width: 100%;
    object-fit: contain;
}

.zones-image-wrapper {
    position: relative;
}

.zones-cards {
    width: 60%;
    /* padding: 0 4%; */
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    align-content: center;
    gap: 20px;
}

.zones-card {
    aspect-ratio: 0.75 / 1;
    width: clamp(100px, 10vw, 216px);
    display: flex;
    justify-content: center;
}

.zones-card-inner {
    background-color: #000000;
    width: 100%;
    height: 87%;
    margin: 3px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
}

.zones-card-ico {
    width: clamp(32px, 4vw, 68px);
    height: clamp(32px, 4vw, 68px);
}

.zones-card-title {
    font-weight: 400;
    font-size: clamp(14px, 1.5vw, 24px);
    margin: 0;
    text-align: center;
}

.ico-woman {
    margin-right: clamp(-7px, 1.5vw, -12px);
}

.ico-man {
    margin-left: clamp(-7px, 1.5vw, -12px);
}

/* .pin{
    position: absolute;
    top: 0;
    left: 0;
    background-color: white;
    border: 5px solid white;
    width: 1%;
    height: 1.5%;
    border-radius: 100%;
    box-shadow: 4px 4px 10px #000;
}

.pin[data-zone="food"]{
    top: 55%;
    left: 32%;
    background-color: #B80F0A;
}

.pin[data-zone="entry"]{
    top: 52%;
    left: 71%;
    background-color: #76BA1B;
}
.pin[data-zone="entry"]:hover > .pin-desc, .pin[data-zone="food"]:hover > .pin-desc, .pin[data-zone="toilet"]:hover > .pin-desc, .pin[data-zone="stage"]:hover > .pin-desc{
    display: block;
}

.pin[data-zone="toilet"]{
    top: 16%;
    left: 61%;
    background-color: #1260CC;
}

.pin[data-zone="stage"]{
    top: 21%;
    left: 18%;
    background-color: #FFD300;
}

.pin-desc{
    display: none;
    z-index: 99;
    background-color: whitesmoke;
    padding: 5px;
    width: fit-content;
    border-radius: 16px;
    font-size: 16px;
    color: #000000;
    box-shadow: 4px 4px 10px #000;
    position: absolute;
    left: -50px;
} */

/* LOCATION */

.location-section {
    display: grid;
    grid-auto-rows: auto 1fr;
    height: 100vh;
}

.location-content {
    width: 90%;
    height: 90%;
    max-height: 90%;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    align-items: center;
    font-size: 40px;
}

.location-content-wrapper {
    display: grid;
    grid-template-columns: repeat(2, auto);
    grid-template-rows: repeat(2, auto);
    margin-bottom: 5%;
}

.location-img-desc-wrapper {
    display: flex;
    align-items: center;
    grid-area: 1 / 1 / 3 / 1;
}

.location-mail-wrapper {
    display: grid;
    grid-template-columns: repeat(2, auto);
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.location-mail-ico {
    width: 100px;
    height: 100px;
}

.location-mail-text {
    margin: 0;
    font-weight: 600;
    /* font-size: 24px; */
    font-size: 0.6em;
}

.location-statue-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.location-img {
    width: 100%;
    max-width: 600px;
    object-fit: contain;
}

.location-iframe {
    aspect-ratio: 1.66 / 1;
    width: 100%;
    max-width: 600px;
    /* width: 100%;
    height: 100%; */
    /* max-width: 600px; */
}

.location-desc-wrapper {
    padding-left: 50px;
    /* font-size: clamp(20px, 2vw ,40px) */
}

.location-desc-title {
    font-weight: 600;
    /* font-size: 40px; */
    font-size: 1em;
}

.location-desc-subtext {
    font-weight: 500;
    /* font-size: 24px; */
    font-size: 0.5em;
}

.location-statue-button {
    display: block;
    width: 275px;
    height: 93px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.6em;
    border: 3px solid white;
    grid-area: 2 / 2 / 3 / 3;
}

/* EXIT */

.exit-section {
    display: grid;
    grid-auto-rows: auto 1fr;
    height: 100vh;
}

.exit-content {
    display: grid;
    justify-items: center;
    align-items: center;
    height: 100%;
    background-image: url(../assets/img/low-web-new/Uni-UWB-2048px-294.webp);
    background-size: cover;
    background-position: center;
}

.exit-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.sponsors-body {
    display: grid;
    width: 90%;
    margin: 0 auto;
    grid-template-columns: repeat(2, 1fr);
    padding-top: 100px;
    row-gap: 200px;
    column-gap: 50px;
}

.sponsors-container {
    width: fit-content;
    padding: 10px;
    /* border: 1px dashed rgba(255, 0, 0, 0.274); */
}

.sponsors-title-wrapper {
    margin-bottom: 20px;
}

.sponsors-title {
    color: white;
    font-size: 48px;
    font-weight: 400;
    margin: 0;
}

.sponsors-wrapper {
    display: grid;
    grid-template-columns: repeat(3, auto);
    gap: 50px;
    /* padding: 50px; */
}

.sponsors-logo {
    height: 120px;
}

@media (max-width: 1920px) {
    /* LANDING */
    .text-big {
        font-size: 80px;
    }

    .landing-location {
        font-size: 36px;
    }

    .landing-date {
        font-size: 29px;
    }

    .landing-logo {
        width: 500px;
    }

    /* ABOUT */
    .about-text {
        font-size: 24px;
    }

    .about-ico {
        height: 144px;
        width: 144px;
    }

    .about-patron-image {
        height: 144px;
    }

    /* ZONES */
    .zones-card-title {
        font-size: clamp(14px, 1.5vw, 21px);
    }
    .zones-card-ico {
        width: clamp(32px, 4vw, 62px);
        height: clamp(32px, 4vw, 62px);
    }

    /* LOCATION */
    .location-content {
        font-size: 32px;
    }

    .location-statue-button {
        width: 240px;
        height: 80px;
    }

    /* SPONSORS */
    .sponsors-body {
        row-gap: 100px;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .sponsors-title {
        color: white;
        font-size: 40px;
        font-weight: 400;
        margin: 0;
    }

    .sponsors-logo {
        height: 100px;
    }
}

@media (max-width: 1500px) {
    .location-mail-wrapper {
        grid-template-columns: auto;
        grid-template-rows: repeat(2, auto);
        justify-items: center;
        align-content: center;
    }

    .location-desc-wrapper {
        padding-left: 25px;
    }
}

@media (max-width: 1300px) {
    /* ARTISTS */
    .artists-container {
        justify-content: space-evenly;
        padding: 6vw 0;
    }

    .artist-card-text {
        padding: 0 0 23px 23px;
    }

    /* ABOUT */
    .about-text {
        font-size: 20px;
    }

    .about-ico {
        height: 118px;
        width: 118px;
    }

    .about-patron-image {
        height: 118px;
    }

    /* ZONES */
    .zones-image {
        padding-right: 0;
    }

    /* LOCATION */

    .location-content-wrapper {
        display: grid;
        grid-template-columns: repeat(2, auto);
        grid-template-rows: repeat(2, auto);
        margin-bottom: 5%;
        gap: 25px;
    }

    .location-mail-wrapper {
        grid-template-columns: repeat(2, auto);
        grid-template-rows: auto;
        grid-area: 3 / 1 / 3 / 1;
    }

    .location-statue-wrapper {
        grid-area: 3 / 2 / 3 / 2;
    }

    .location-img-desc-wrapper {
        grid-area: 1 / 1 / 1 / 3;
        justify-content: space-around;
    }

    .location-img {
        max-width: 500px;
    }
}

@media (max-width: 1200px) {
    /* LANDING */
    .landing-content {
        grid-template-columns: auto;
        grid-template-rows: repeat(3, 1fr);
    }

    .landing-logo {
        grid-row: 1;
    }

    .landing-text {
        grid-row: 2;
    }

    .landing-logo {
        width: 400px;
    }

    /* ARTISTS */
    .artists-container {
        grid-template-columns: repeat(2, auto);
        grid-template-rows: repeat(2, auto);
    }

    /* ABOUT */

    .about-ico {
        height: 108px;
        width: 108px;
    }

    .about-patron-image {
        height: 108px;
    }

    .about-text {
        font-size: 18px;
    }

    /* GALLERY */

    .gallery {
        flex-direction: column;
    }

    /* .gallery-content{
        overflow: visible;
    } */

    .gallery-image-wrapper {
        width: 90%;
        height: 90%;
    }

    .preview-wrapper {
        overflow-x: scroll;
        overflow-y: hidden;
        width: 100%;
        height: 15%;
        flex-wrap: nowrap;
        padding-bottom: 10px;
        z-index: 9;
    }

    .preview-image {
        width: auto;
        height: 100%;
    }

    /* LOCATION */
}

@media (max-width: 960px) {
    .section-title {
        padding-top: 3vh;
    }
    /* LANDING */
    .text-big {
        font-size: 80px;
    }

    .landing-location {
        font-size: 36px;
    }

    .landing-date {
        font-size: 29px;
    }

    /* ABOUT */
    .about-content {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        gap: 20px;
    }

    .about-ico {
        height: 88px;
        width: 88px;
    }

    .about-patron-image {
        height: 88px;
    }

    .about-text-wrapper {
        grid-area: 1 / 1 / 2 / 1;
        align-items: center;
    }

    .about-text {
        font-size: 16px;
    }

    .about-video-wrapper {
        grid-area: 2 / 1 / 3 / 1;
        align-items: center;
        /* padding: 0 6vw; */
    }

    .about-video {
        width: 80%;
    }

    .about-video img {
        display: none;
    }

    .about-socials-wrapper {
        grid-area: 4 / 1 / 4 / 1;
        padding-bottom: 20px;
    }

    .about-patron {
        grid-area: 3 / 1 / 4 / 1;
    }

    /* GALLERY */
    .gallery {
        width: 100%;
    }

    /* ZONES */
    .zones-cards {
        padding: 20px 0;
        width: 100%;
    }
    .zones-card {
        width: clamp(100px, 14vw, 216px);
    }
    .zones-content {
        max-height: 100%;
        height: 100%;
        flex-direction: column-reverse;
    }
    .zones-image-wrapper {
        display: flex;
        justify-content: center;
    }

    .zones-image img {
        width: 80%;
        object-fit: contain;
    }

    /* LOCATION */

    .location-content {
        width: 100%;
        height: 100%;
    }

    .location-content-wrapper {
        grid-template-columns: auto;
        grid-template-rows: repeat(4, auto);
        margin: 0;
        height: 100%;
    }

    .location-img {
        max-width: 650px;
    }

    .location-img-desc-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .img-desc-wrapper {
        grid-area: 1 / 1 / 1 / 1;
    }

    .location-mail-wrapper {
        grid-area: 2 / 1 / 2 / 3;
    }

    .location-statue-wrapper {
        grid-area: 3 / 1 / 3 / 3;
    }

    /* SPONSORS */
    .sponsors-body {
        row-gap: 70px;
    }

    .sponsors-title {
        font-size: 36px;
    }

    .sponsors-logo {
        height: 90px;
    }

    .sponsors-wrapper {
        padding: 20px 0;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
    }
}

@media (max-width: 650px) {
    /* LANDING */
    .text-big {
        font-size: 40px;
    }

    .landing-location {
        font-size: 17px;
    }

    .landing-date {
        font-size: 16px;
    }

    .landing-logo {
        width: 300px;
    }

    /* ARTISTS */
    .artists-container {
        grid-template-columns: auto;
        grid-template-rows: repeat(4, auto);
        column-gap: 2vw;
    }

    /* ABOUT */
    .about-ico {
        height: 68px;
        width: 68px;
    }

    .about-patron-image {
        height: 68px;
    }

    .about-patron-text {
        font-size: 18px;
    }

    /* ZONES */
    .zones-content {
        height: 100%;
        max-height: 100%;
    }
    .zones-image img {
        width: 90%;
    }

    /* LOCATION */

    .location-content-wrapper {
        margin-top: 25px;
    }

    .location-content {
        font-size: 20px;
    }

    .location-img-desc-wrapper {
        width: 90%;
        margin-left: auto;
        margin-right: auto;
    }

    .location-desc-wrapper {
        padding: 0;
        text-align: left;
        width: 100%;
    }

    .location-desc-subtext {
        font-size: 0.75em;
    }

    .location-mail-ico {
        width: 75px;
        height: 75px;
    }

    .location-statue-button {
        width: 192px;
        height: 62px;
    }

    /* SPONSORS */
    .sponsors-body {
        row-gap: 70px;
        padding-top: 50px;
    }

    .sponsors-title {
        font-size: 20px;
        padding-bottom: 10px;
    }

    .sponsors-logo {
        height: 60px;
    }

    .sponsors-wrapper {
        padding: 10px 0;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
    }
}

@media (max-width: 960px) and (max-height: 450px) {
    .landing-content {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    .landing-logo {
        grid-row: 1;
        grid-column: 1;
    }

    .landing-text {
        grid-row: 1;
        grid-column: 2;
    }

    .sponsors-body {
        padding-top: 50px;
    }
}

@media (max-width: 960px) and (max-height: 850px) {
    .text-big {
        font-size: 40px;
    }
    .landing-location {
        font-size: 20px;
    }
    .landing-date {
        font-size: 17px;
    }
    .landing-logo {
        width: 210px;
    }

    .location-section {
        height: auto;
    }

    .zones-section {
        height: auto;
    }

    .zones-cards {
        height: auto;
    }

    .gallery-section {
        height: auto;
    }

    .gallery {
        height: 100%;
        max-height: 100%;
    }
}

.sponsor-section {
    display: grid;
    grid-auto-rows: auto 1fr;
}

.sponsor-grid {
    display: grid;  
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 2rem;
    margin-inline: 2rem;
    justify-items: center;
    align-items: center;
}

.sponsor-grid img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%) brightness(0.9);
    transition: filter 0.3s ease;
}

.sponsor-grid img:hover {
    filter: none;
}

