:root {
    --font-main: "Inter", sans-serif;

    --title-desktop: 72px;
    --title-tablet: 3rem;
    --title-mobile: 2.4rem;

    --desc-desktop: 18px;
    --desc-mobile: 0.95rem;

    --frame-radius: 24px;
    --frame-radius-mobile: 12px;
    --frame-border: 4px;

    --black: #000000;
    --white: #ffffff;
}


@font-face {
    font-family: "Inter";
    src: url("/assets/fonts/static/Inter_18pt-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Inter";
    src: url("/assets/fonts/static/Inter_18pt-Light.ttf") format("truetype");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Inter";
    src: url("/assets/fonts/static/Inter_18pt-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Inter";
    src: url("/assets/fonts/static/Inter_18pt-Thin.ttf") format("truetype");
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Inter";
    src: url("/assets/fonts/static/Inter_18pt-Italic.ttf") format("truetype");
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}


body {
    font-family: var(--font-main);
    background: var(--black);
    color: var(--black);
    overflow: hidden;

}

a {
    color: inherit;
    text-decoration: none;
}

/* MAIN*/
#hero {
    width: 100vw;
    height: 100vh;
    padding: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* FRAME */
.frame {
    width: 100%;
    height: 100%;
    background: var(--white);
    border-radius: var(--frame-radius);
    position: relative;
    z-index: 5;
    overflow: hidden;
}

.button-wrapper.flex {
    gap: 10px;
}

.primary-button {
    border-radius: 8px;
    border-width: 1px;
    background: #000;
    color: #fff;
    border: 1px solid #000;
    padding: 21px 45px 21px 32px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease-in-out;
}

.secondary-button {
    border-radius: 8px;
    border-width: 1px;
    color: #000;
    background: #fff;
    border: 1px solid #000;
    padding: 21px 45px 21px 32px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease-in-out;
}

.primary-button span,
.secondary-button span {
    position: relative;
    transition: all 0.3s ease-in-out;
    display: flex;
    align-items: center;
}

.primary-button svg,
.secondary-button svg {
    position: absolute;
    right: -12px;
}
.primary-button:hover svg,
.secondary-button:hover svg {
    right: -15px;
}

.primary-button:hover {
    background: #000000cf;
}

.secondary-button:hover {
    background: #ebebeb;
}

.primary-button svg,
.secondary-button svg {
    transition: right 0.3s ease-in-out;
    padding-top: 2px;
}





/* BACKGROUND GRID */

.grid-bg::before,
.grid-bg::after {
    content: "";
    position: absolute;
    background: var(--black);
}

.grid-bg {
    width: 100%;
    height: 100%;
    position: absolute;
}

/* Horizontal center line */
.grid-bg::after {
    height: 1px;
    width: 100%;
    left: 0;
    top: 50%;
}

/*  DOTS (top center, left, bottom) */
.dots span {
    width: 6px;
    height: 6px;
    background: var(--black);
    display: inline-block;
}

/* top left */
.title-image {
    position: absolute;
    left: 32px;
    top: 32px;
    width: 96px;
    height: 48px;
}

/* TOP CENTER */
.dots-top {
    position: absolute;
    top: 28px;
    left: 44%;
    transform: translateX(-50%);
    display: flex;
    gap: 16px;
}

/* LEFT SIDE (vertical) */
.dots-left {
    position: absolute;
    left: 32px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* dots bottom */
.dots-bottom {
    position: absolute;
    bottom: 32px;
    left: 44%;
    transform: translateX(-50%);
    display: flex;
    gap: 16px;
}




.explore-btn {
    position: absolute;
    top: 32px;
    right: 32px;
    display: flex;
    align-items: center;
    border: 1.33px solid var(--black);
    border-radius: 4px;
    text-decoration: none;
    color: var(--black);
    background: var(--white);
    overflow: hidden;
}

.explore-btn .btn-text {

    padding: 14px 20px 14px 14px;
    gap: 3px;
    position: relative;
    display: flex;
    flex-direction: column;
    font-size: 18px;
    font-family: var(--font-main);
    font-weight: 700;
    letter-spacing: -1.33px;
    border-right: 1.33px solid var(--black);
    transition: color 0.5s ease-in;

}

.btn-text::before {

    content: "";
    position: absolute;
    height: 100%;
    width: 0%;
    background: var(--black);
    left: 0;
    top: 0;
    bottom: 0;
    transition: width 0.8s ease-in-out;


}

.explore-btn:hover .btn-text {
    color: var(--white);
}

.explore-btn:hover .btn-text::before {

    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    background: var(--black);
    opacity: 1;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.explore-btn .btn-text strong {
    z-index: 2;
}


.explore-btn .btn-text p {

    font-size: 16px;
    font-weight: 200;
    font-style: italic;
    position: relative;
    z-index: 2;
}

.explore-btn .btn-icon-wrapper {
    justify-content: center;
    align-items: center;
    display: flex;
    padding: 14px;
}

.explore-btn .btn-icon {
    width: 32px;
    height: 22px;
    line-height: 100%;
    letter-spacing: -0.67px;
    transition: transform 0.8s ease;
}

.explore-btn:hover .btn-icon {
    transform: scale(1.05);
}




/* MAIN CONTENT */
.main-content-warapper {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;

}

/* LEFT CARD */


.logo-card-wrapper {
    position: relative;
    width: 440px;
    height: 542px;
    margin-left: 12.5%;
    margin-right: 90px;
    z-index: 1;
}

/* Move ::before here */
.logo-card-wrapper::before {
    content: "";
    position: absolute;
    background: var(--black);
    width: 1px;
    height: 200vh;
    left: 50%;
    top: -50%;
    z-index: 0;
    pointer-events: none;
}

.logo-card {
    width: 100%;
    height: 100%;
    position: relative;
    transition: transform 0.25s ease;
    perspective: 1000px;
    transform-style: preserve-3d;
    will-change: transform;
    cursor: pointer;
}


.logo-card img.logo-main {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: block;
}



/* CARD BASE */
.logo-card {
    perspective: 1000px;
    transform-style: preserve-3d;
    transition: transform 0.15s ease;
    will-change: transform;
    cursor: pointer;
}

.logo-card img {
    display: block;
    width: 100%;
    height: 100%;
    transform: translateZ(0);
}

#tilt-card {
    transform-style: preserve-3d;
    perspective: -1000px;

}



@keyframes quiet {
    25% {
        transform: scaleY(.6);
    }

    50% {
        transform: scaleY(.4);
    }

    75% {
        transform: scaleY(.8);
    }
}

@keyframes normal {
    25% {
        transform: scaleY(1);
    }

    50% {
        transform: scaleY(.4);
    }

    75% {
        transform: scaleY(.6);
    }
}

@keyframes loud {
    25% {
        transform: scaleY(1);
    }

    50% {
        transform: scaleY(.4);
    }

    75% {
        transform: scaleY(1.2);
    }
}



/*  RIGHT  TEXT BLOCK */
.text-block {
    /* padding-top: 5rem;
    flex: 1;
    max-width: 600px;
    position: relative; */
    padding-top: 5rem;
    flex: 1;
    max-width: 600px;
    height: 542px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-bottom: 10px;
}

.title-wrapper {
    display: inline-flex;
    position: relative;
}

.title {
    font-size: var(--title-desktop);
    font-family: var(--font-main);
    padding-bottom: 7px;
    font-weight: 700;
    text-transform: lowercase;
    position: relative;
    line-height: 100%;
    letter-spacing: -4px;
    text-wrap: nowrap;
}

.stamp-image-wrapper {
    position: absolute;
    top: -30%;
    right: -8%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.stamp-image-center {
    width: 57px;
    height: 42px;
    position: relative;
    z-index: 1;
}

.stamp-image-center img {
    width: 100%;
    height: 100%;
}

.stamp-image-wrapper .rotateimgtext {
    width: 123px;
    height: 123px;

}

.stamp-image-wrapper .rotateimgtext img {
    object-fit: contain;
    width: 123px;
    height: 123px;

}

.rotateimgtext {
    position: absolute;
    margin-top: 5px;
    animation: rotateText 15s linear infinite;
    -webkit-animation: rotateText 15s linear infinite;
}

@keyframes rotateText {
    100% {
        transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
    }

    0% {
        transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
    }
}

.description {
    padding: 10px 0;
    font-family: "Inter";
    width: 100%;
    font-size: var(--desc-desktop);
    color: var(--black);
    font-weight: 300;
    letter-spacing: -1px;
    text-align: justify;
    line-height: 24px;


}

.address-time-wrapper {
    max-width: 418px;

}

.address-time-wrapper .address-wrapper {
    font-family: "Inter";
    font-weight: 300;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: -1px;
    text-align: justify;

}

.address-time-wrapper .address-wrapper a {
    font-family: "Inter";
    font-weight: 500;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: -1px;
    text-align: justify;
    text-decoration: underline;
    text-decoration-style: solid;
    text-decoration-thickness: 0%;
    text-decoration-skip-ink: auto;
    color: #000;
    text-underline-offset: 2px;
    white-space: nowrap;
}

.address-time-wrapper .address-wrapper a:hover {
    color: #000000cf;
}

.flex {
    display: flex;
    align-items: center;
    gap: 6px;
}

.time-contact-wrapper {
    display: flex;
    gap: 32px;
    margin: 24px 0 28px;
}

.phone-number {
    position: relative;
    padding-right: 20px;
}

.phone-number svg {
    position: absolute;
    right: 7px;
    transition: all 0.3s ease-in-out;
}

.phone-number:hover svg {
    right: 3px;
}

/*BOTTOM LEFT MUSIC INFO */
.music-info {
    position: absolute;
    left: 32px;
    bottom: 32px;
    background: var(--white);
    border: 1px solid var(--black);
    border-radius: 4px;
    display: flex;
    align-items: center;
}

#music-toggle img {
    width: 50px;
    height: 52px;
}

.track-text {

    display: flex;
    flex-direction: column;
    padding: 10px 25px 10px 10px;
    justify-content: center;
    align-items: start;
    font-size: 14px;
    letter-spacing: -1px;

}

.track-text span {
    font-family: var(--font-main);
    font-size: 12px;
    font-weight: 200;
    font-style: italic;
    letter-spacing: -0.5px;
}


/* BOTTOM RIGHT ARTWORK */
.silhouette {
    position: absolute;
    right: 0px;
    top: 50%;
    bottom: 0;
}

.silhouette img {
    height: 46vh;
    width: auto;
    object-fit: contain;
}

.image-show-tablet {
    display: none;

}


.music-player-wrapper {
    height: 100%;
    position: relative;
    padding: 10px;
    border-right: 1px solid var(--black);
}

.musicBarWrapper {

    display: flex;
    justify-content: space-between;
    height: 35px;
    --boxSize: 5px;
    --gutter: 4px;
    width: calc((var(--boxSize) + var(--gutter)) * 4);
}

.placeholder-play-btn {
    position: absolute;
    width: 28px;
    height: 28px;
    background: var(--black);
    -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><polygon points='5,3 19,12 5,21' fill='white'/></svg>") center/contain no-repeat;
    mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><polygon points='5,3 19,12 5,21' fill='white'/></svg>") center/contain no-repeat;
    position: absolute;
    inset: 0;
    margin: auto;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;

}


.musicBarWrapper.paused .placeholder-play-btn {
    opacity: 1;
}

.musicBarWrapper.playing .placeholder-play-btn {
    opacity: 0;
}

.musicBarWrapper.playing .loading-wave {
    opacity: 1;
}



.mobile-explore-button-wrapper {
    display: none;

}


/* Wrapper */
.loading-wave {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    height: 100%;
    opacity: 0;
}

/* Bars */
.loading-bar {
    width: 5px;
    height: 50%;
    margin: 0 2px;
    background-color: var(--black);
    opacity: 0.8;
    will-change: height;
    animation: random-wave 1.5s infinite ease-in-out alternate;
    animation-play-state: running;
}

/* Random durations for randomness */
.loading-bar:nth-child(1) {
    animation-duration: 1.5s;
}

.loading-bar:nth-child(2) {
    animation-duration: 2.4s;
}

.loading-bar:nth-child(3) {
    animation-duration: 1.8s;
}

.loading-bar:nth-child(4) {
    animation-duration: 1s;
}

.loading-bar:nth-child(5) {
    animation-duration: 1.1s;
}

.loading-bar:nth-child(6) {
    animation-duration: 1.6s;
}

/* Keyframes: random heights */
@keyframes random-wave {
    0% {
        height: 20%;
    }

    25% {
        height: 80%;
    }

    50% {
        height: 40%;
    }

    75% {
        height: 100%;
    }

    100% {
        height: 50%;
    }
}


.musicBarWrapper.paused .loading-bar {
    animation-play-state: paused;
}




/* Responsiveness */

@media (max-width:1740px) {

    .silhouette {
        right: -6%;

    }

}

@media (max-width:1600px) {
    .text-block {
        max-width: 508px;
        height: 473px;
    }

    .logo-card-wrapper {
        margin-left: 11%;
        width: 382px;
        height: 473px;
        margin-right: 60px;
    }

    .title {
        padding-bottom: 7px;
    }

    .description {
        padding-top: 13px;
        font-size: 16px;

    }

}


@media (max-width:1370px) {
    .address-time-wrapper {
        max-width: 480px;
    }

    .address-time-wrapper .address-wrapper {
        font-size: 16px;
    }

    .logo-card-wrapper {
        margin-left: 12%;
        margin-right: 42px;
        width: 321px;
        height: 397px;
    }

    .text-block {
        max-width: 508px;
        height: 397px;
        padding-top: 3rem;
        padding-bottom: 0;
    }


    .silhouette {
        right: -8%;

    }

    .music-player-wrapper {
        padding: 5px 10px;

    }

    .title {
        padding-bottom: 7px;
    }

    .description {
        padding-top: 12px;
        font-size: 16px;

    }

    .dots-top {

        left: 55%;
    }

    .dots-bottom {

        left: 45%;
    }

}

@media (max-width:1280px) {
    .image-hide-tablet {
        display: none;
    }

    .image-show-tablet {

        display: block;
        object-fit: contain;
        width: auto;
    }

    .silhouette {
        height: 173px;
        right: 0;
        top: unset;
        bottom: 0;

    }


    .silhouette img {
        height: auto;
        right: 0;

    }
}

@media (max-width:1080px) {



    .main-content-warapper {
        padding: 30% 14%;
        gap: 43px;
        flex-direction: column;
        align-items: start;
        justify-content: center;
    }

    .logo-card-wrapper {
        margin-left: 0;
        width: 321px;
        height: 397px;
        margin-right: 42px;
        aspect-ratio: 321/397;
    }

    .text-block {
        padding-top: 0;
        max-width: 508px;
        height: 397px;
    }



    .music-player-wrapper {
        padding: 5px 10px;

    }

    .title {
        padding-bottom: 6px;
    }

    .description {
        padding-top: 10px;
        font-size: 16px;

    }


    .logo-card-wrapper::before {
        top: unset;
        bottom: 0;

    }

    .dots-top,
    .dots-bottom {
        display: none;
    }

    .grid-bg::after {

        top: 40%;
    }

    .dots-left {
        top: 40%;
    }

    #tilt-card {

        transform: none !important;
        perspective: none !important;

    }

}



@media (max-width:768px) {
    body {

        overflow-y: auto;

    }


    #hero {
        height: 1024px;
        padding: 12px;
    }

    .frame {
        height: 100%;

    }


    .title-image {

        left: 16px;
        top: 16px;
        width: 84px;
        height: 42px;
    }

    .main-content-warapper {
        padding: 93px 30px 53px 30px;
        gap: 30px;

    }

    .logo-card-wrapper {
        margin-left: 0;
        width: 100%;
        max-width: 350px;
        height: auto;
        margin-right: 0;
    }

    .grid-bg {
        display: none;
    }

    .logo-card-wrapper::before {
        display: none;
    }

    .logo-card-wrapper::after {
        content: "";
        position: absolute;
        background: var(--black);
        height: 1px;
        width: 200vw;
        top: 50%;
        left: -50%;
        z-index: -1;
        pointer-events: none;
    }

    .text-block {
        padding-top: 0;
        max-width: 508px;
        justify-content: start;
    }

    .stamp-image-wrapper {
        top: -8%;
        right: -5%;
    }

    .silhouette {
        height: 173px;
        right: 0;
        top: unset;
        bottom: 0;

    }


    .silhouette img {
        height: auto;
        right: 0;

    }

    .music-player-wrapper {
        padding: 5px 10px;

    }

    .title {
        padding-bottom: 4px;
        font-size: 42px;
        line-height: 100%;
        letter-spacing: -3px;
    }

    .description {
        padding-top: 10px;
        font-size: 16px;

    }

    .logo-card-wrapper::before {
        top: unset;
        bottom: 0;

    }

    .dots-top,
    .dots-bottom {
        display: none;
    }

    .grid-bg::after {

        top: 40%;
    }

    .dots-left {
        display: none;
    }

    .explore-btn {
        /* left: 28px;
        bottom: 54px;
        top: unset;
        right: unset; */
        display: none;
    }

    .mobile-explore-button-wrapper {

        display: inline-flex;
        position: relative;
        justify-content: start;

    }

    .mobile-explore-button-wrapper .explore-btn-mobile {
        font-family: Inter;
        font-weight: 500;
        font-size: 16px;
        line-height: 16px;
        letter-spacing: -1px;
        text-align: justify;
        text-decoration: underline;
        text-decoration-style: solid;
        text-decoration-thickness: 0%;
        text-decoration-skip-ink: auto;
        text-underline-offset: 4px;
        padding: 2px 0 15px;
    }

    .address-time-wrapper {
        padding-top: 50px;
    }

    .music-info {
        top: 16px;
        right: 16px;
        bottom: unset;
        left: unset;
    }

    .musicBarWrapper {
        height: 35px;
        width: calc((var(--boxSize) + var(--gutter)) * 4);
    }

    .music-player-wrapper {
        padding: 5px 6px;
    }

    .track-text {
        display: none;
    }

    .bar {
        height: 80%;
        width: 3px;
    }

    .stamp-image-center {
        width: 25px;
        height: 18px;

    }

    .stamp-image-wrapper .rotateimgtext {
        width: 52px;
        height: 52px;
    }

    .stamp-image-wrapper .rotateimgtext img {
        width: 52px;
        height: 52px;
    }
}

@media (max-width:700px) {
    .image-show-tablet {
        display: none;
    }
}

@media (max-width:630px) {
    .image-show-tablet {
        display: none;
    }

    .frame {
        border-radius: var(--frame-radius-mobile);
    }
}

@media (max-width:530px) {
    .main-content-warapper {
        align-items: center;
        gap: 25px;
    }

    #hero {
        min-height: 1100px;
        height: 100%;
        max-height: 1100px;
    }
}

@media (max-width:480px) {
    .time-contact-wrapper {
        flex-wrap: wrap;
        gap: 16px;
    }

    .button-wrapper.flex {
        display: block;
    }
    .button-wrapper.flex .primary-button,
    .button-wrapper.flex .secondary-button {
        margin: 7px 0;
    }
}

@media (max-width:450px) {

    .explore-btn {
        display: none;
    }

}

@media (max-width:350px) {

    .title {
        font-size: 36px;
    }
}



@media (max-width: 768px) and (max-height: 800px) {
    #hero {
        height: 100%;
        min-height: 1100px;
    }

}

@media (min-width: 768px) and (max-width: 1080px) and (max-height: 850px) {
    #hero {
        height: 100%;
        min-height: 1100px;
    }

    body {
        overflow-y: auto;
    }
}