
/* ========================================
   GLOBAL
======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    width: 100%;
    min-height: 100%;
}

html::-webkit-scrollbar {
    display: none;
}

body {
    width: 100%;
    min-height: 100vh;
    min-height: 100dvh;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}


/* ========================================
   MAIN CONTAINER
======================================== */

main {
    width: 100%;
    min-width: 100%;
}


/* ========================================
   NAVIGATION
======================================== */

.section-nav {
    position: fixed;
    left: 50%;
    bottom: 3vh;
    transform: translateX(-50%);
    background-color: #1413137d;
    border-radius: 50px;
    padding: 1.5vh 1.5vw 1.5vh 1.5vw;
    display: flex;
    flex-direction: row;
    gap: 20px;

    z-index: 1000;
}

.section-nav {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.section-nav.show {
    opacity: 1;
    visibility: visible;
}

.section-nav a {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 20px;
    height: 20px;

    color: #aaa2a2;
    text-decoration: none;

    transition: 0.3s ease;
}

.section-nav a.active {
    color: #e00000;
    transform: scale(1.2);
}

.section-nav i {
    font-size: 18px;
}


/* ========================================
   LOADING / INTRO SECTION
======================================== */

.loader {
    position: relative;

    width: 100%;
    height: 100dvh;
    min-height: 100dvh;

    display: flex;
    justify-content: center;
    align-items: center;

    overflow: hidden;

    pointer-events: none;
}


/* ========================================
   LOADER BACKGROUND VIDEO
======================================== */



.loader-poster {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center center;

    z-index: 0;

    filter: brightness(90%);

    opacity: 1;
    transition: opacity 0.2s ease;
}

.loader-background {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center center;

    z-index: 1;

    filter: brightness(90%);

    opacity: 0;
    transition: opacity 0.2s ease;
}

.loader-background {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center center;

    z-index: 0;

    opacity: 1;

    filter: brightness(90%);
}

.loader-content {
    position: relative;
    z-index: 2;
}
/* ========================================
   LOADER OVERLAY
======================================== */

.loader-overlay {
    position: absolute;
    inset: 0;

    background: #000;
    opacity: 1;

    z-index: 1;

    pointer-events: none;

    animation: overlayFade 8s ease-out forwards;
}

@keyframes overlayFade {
    from {
        opacity: 0.8;
    }

    to {
        opacity: 0;
    }
}


/* ========================================
   LOADER CONTENT
======================================== */

.loader-content {
    position: relative;

    width: 100%;
    height: 100dvh;

    display: flex;
    justify-content: center;
    align-items: center;

    z-index: 2;
}


/* ========================================
   LOADER BOTTOM GRADIENT
======================================== */

.loader::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 100%;
    height: 40%;

    background:
        linear-gradient(
            to bottom,
            transparent,
            rgba(0, 0, 0, 1)
        );

    z-index: 3;

    pointer-events: none;
}


/* ========================================
   INITIAL LOGO
======================================== */

.loader-logo {
    width: 50%;
    max-width: 70%;

    opacity: 0;

    animation:
        logoFade
        2s
        ease-in-out
        forwards;
}

.loader-logo {
    filter: drop-shadow(0 8px 10px rgba(0, 0, 0, 0.8))
            drop-shadow(0 0 15px rgba(227, 0, 0, 0.4));
}

@keyframes logoFade {

    0% {
        opacity: 0;
        transform: scale(0.95);
    }

    30% {
        opacity: 1;
        transform: scale(1);
    }

    70% {
        opacity: 1;
        transform: scale(1);
    }

    100% {
        opacity: 0;
        transform: scale(1.05);
    }

}


/* ========================================
   PRESENTATION TEXT
======================================== */

.loader-text {
    display: none;

    color: #d10606;

    font-family:
        "Helvetica Neue",
        Helvetica,
        Arial,
        sans-serif;

    font-size: 2em;
    font-weight: 500;
    font-weight: bold;
    letter-spacing: 2px;
    line-height: 0.85;
    text-align: center;

    opacity: 0;

    text-shadow:
        0 0 3px #d10606,
        0 0 3px #d10606,
        0 0 3px #d10606;

    animation:
        textFade
        2s
        ease-in-out
        forwards;
}

.loader-text span {
    font-size: 0.8em;
    font-weight: normal;
}

@keyframes textFade {

    0% {
        opacity: 0;
        transform: translateY(10px);
    }

    25% {
        opacity: 1;
        transform: translateY(0);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }

}


/* ========================================
   FREAKSHOW LOGO
======================================== */

.freakshow-logo {
    position: absolute;

    top: 50%;
    left: 50%;

    width: 100%;
    height: 100%;

    object-fit: contain;

    display: none;

    opacity: 0;

    transform:
        translate(-50%, -50%)
        scale(0.95);

    z-index: 2;
}


/* ========================================
   FREAKSHOW LOGO APPEARS
======================================== */

.freakshow-logo.show {
    display: block;

    animation:
        freakshowSequence
        3.5s
        ease-in-out
        forwards;
}

@keyframes freakshowSequence {

    /* 5.0s — invisible */
    0% {
        opacity: 0;

        top: 50%;

        transform:
            translate(-50%, -50%)
            scale(0.95);
    }


    /* 5.5s — appears */
    14% {
        opacity: 1;

        top: 50%;

        transform:
            translate(-50%, -50%)
            scale(1);
    }


    /* 7.0s — stays centred */
    57% {
        opacity: 1;

        top: 50%;

        transform:
            translate(-50%, -50%)
            scale(1);
    }


    /* 8.5s — moved to top */
    100% {
        opacity: 1;

        top: 40%;

        transform:
            translate(-50%, -50%)
            scale(1);
    }

}


/* ========================================
   LOGO MOVES WITH DOLL
======================================== */

.freakshow-logo.being-pushed {
    display: block;

    opacity: 1;

    animation:
        freakshowPush
        1.5s
        cubic-bezier(.22, 1, .36, 1)
        forwards;
}

@keyframes freakshowPush {

    /* Starting position */
    0% {
        top: 50%;

        transform:
            translate(-50%, -50%)
            scale(1);
    }

    25% {
        top: 50%;

        transform:
            translate(-50%, -50%)
            scale(1);
    }

    /* Moving upward */
    80% {
        top: 23%;

        transform:
            translate(-50%, -50%)
            scale(1);
    }

    /* Final position */
    100% {
        top: 23%;

        transform:
            translate(-50%, -50%)
            scale(1);
    }

}


/* ========================================
   DOLL
======================================== */

.jack-box {
    position: absolute;
    left: 50%;
    bottom: -100%;
    height: 75%;
    width: auto;
    max-width: none;
    transform: translateX(-50%);
    opacity: 0;
    z-index: 3;
}

.jack-box.pop {
    animation:
        jackJump
        1.5s
        cubic-bezier(.22, 1, .36, 1)
        forwards;
}

@keyframes jackJump {

    0% {
        bottom: -100%;
        opacity: 0;

        transform:
            translateX(-50%);
    }

    100% {
        bottom: 3%;
        opacity: 1;

        transform:
            translateX(-50%);
    }

}


/* ========================================
   LOGO AT THE TOP
======================================== */

.top-branding {
    position: absolute;

    top: 5%;
    left: 50%;

    transform: translateX(-50%);

    display: none;

    flex-direction: column;
    align-items: center;

    text-align: center;

    opacity: 0;

    z-index: 5;
}

.top-branding.show {

    display: flex;

    animation:
        brandingFadeIn
        1.2s
        ease-out
        forwards;
}

@keyframes brandingFadeIn {

    from {
        opacity: 0;

        transform:
            translate(-50%, -10px);
    }

    to {
        opacity: 1;

        transform:
            translate(-50%, 0);
    }

}

.top-branding-logo {

    width: 8vw;
    height: auto;
}

.top-branding-text {

    color: #d10606;
    margin-top: 1vh;

    font-family:
        "Helvetica Neue",
        Helvetica,
        Arial,
        sans-serif;

    font-size: 0.8em;
    font-weight: bold;
    line-height: 0.85;
    letter-spacing: 1px;

    text-align: center;

    text-shadow:
        0 0 1px #d10606,
        0 0 1px #d10606,
        0 0 1px #d10606;
}

.top-branding-text span {
    font-size: 0.8em;
    font-weight: normal;
}


/* ========================================
   HIDE MAIN SECTIONS UNTIL LOADER FINISHES
======================================== */

.when-where,
.more-details,
.what-is-happening,
footer {
    width: 100%;

    display: none;

    position: relative;

    overflow: hidden;
}


/* ========================================
   WHEN & WHERE?
======================================== */

.when-where {
    position: relative;

    width: 100%;
    height: 50dvh;

    background-image: url("Assets/website2.png");
    background-size: auto 100%;
    background-position: center top;
    background-repeat: no-repeat;

    display: none;

    align-items: center;
}


/* ========================================
   WHEN & WHERE CONTENT
======================================== */

.when-where-title {
    display: flex;
    align-items: center;
    gap: 6vw;
}

.when-where-icon {
    width: auto;
    height: 6dvh;
}

.when-where-content h2 {
    font-family: "Helvetica World", Helvetica, Arial, sans-serif;
    color: #e30000;
    font-weight: 700;
    font-size: 2.5cqh;
    letter-spacing: -0.05em;
    line-height: 1;
    margin: 0;
}

.when-where-content h2 span {
    margin-left: 15vw;
}

.when-where-content {
    width: 90%;
    height: auto;
    background-color: #210202;
    padding: 3vh 5vw 3vh 5vw;
    margin: 5vh 0 5vh auto;
    border-radius: 5dvh 0 0 5dvh;
}

.when-where-details1 {
    margin-top: 4vh;
    font-size: clamp(16px, 1.5vw, 24px);
    font-family: "Helvetica World", Helvetica, Arial, sans-serif;
    color: #e30000;
    line-height: 1;
}

.when-where-details1 p,
.when-where-details2 p {
    margin: 0 0 1vh 0;
}

.when-where-details1 strong {
    font-size: 1.21em;
    font-weight: bold;
    margin-bottom: 2vh;
}

.when-where-details2 {
    margin-top: 4vh;
    margin-bottom: 4vh;
    font-size: clamp(16px, 1.5vw, 24px);
    font-family: "Helvetica World", Helvetica, Arial, sans-serif;
    color: #e30000;
    line-height: 1;
}

.when-where-details2 strong {
    font-size: 1.21em;
    font-weight: bold;
    margin-bottom: 2vh;
    margin-top: 1vh;
}


/* ========================================
   WHEN & WHERE — SCROLL REVEAL
======================================== */

.when-where-title,
.when-where-details1,
.when-where-details2,
.when-where-content .map-btn {
    opacity: 0;
    transform: translateY(30px);

    transition:
        opacity 0.8s ease-out,
        transform 0.8s ease-out;
}


/* Revealed */

.when-where-title.show,
.when-where-details1.show,
.when-where-details2.show,
.when-where-content .map-btn.show {
    opacity: 1;
    transform: translateY(0);
}


/* ========================================
   SHOW MAIN SECTIONS AFTER LOADER
======================================== */

body.loaded .when-where {
    display: flex;
}

body.loaded .more-details {
    display: flex;
}

body.loaded .what-is-happening {
    display: flex;
}

body.loaded footer {
    display: block;
}


/* ========================================
   MORE DETAILS
======================================== */

.more-details {
    position: relative;

    width: 100%;
    height: 100dvh;

    display: none;
    flex-direction: column;
}

.when-where,
.more-details-top,
.more-details-bottom {
    width: 100%;
    height: 50dvh;
}

.more-details-top {
    display: flex;
    justify-content: center;
    align-items: center;

    background-image: url("Assets/website3.png");
    background-size: auto 100%;
    background-position: center top;
    background-repeat: no-repeat;
}

.more-details-top img {
    height: 80%;
    width: auto;
}

.more-details-bottom {
    width: 100%;
    height: 50dvh;

    background-color: #210202;
    padding: 40px 24px;
    margin: 0 auto;

    color: #e30000;
    font-family: "Helvetica World", Helvetica, Arial, sans-serif;

    display: flex;
    flex-direction: column;
    justify-content: center;
}


/* Header */

.details-header {
    display: flex;
    align-items: center;
    gap: 6vw;
    margin-bottom: 2vh;
}

.star-icon {
    width: 50px;
    height: 50px;
}

.details-header h2 {
    font-size: 2.5cqh;
    font-weight: 900;
    line-height: 0.95;
    color: #ff0000;
    letter-spacing: -0.05em;
}


/* Grid Layout for Rows */

.details-grid {
    display: flex;
    flex-direction: column;
    gap: 2vh;
}

.detail-row {
    display: grid;
    grid-template-columns: 15vw 8vw 1fr;
    align-items: center;
    gap: 2vw;
}

.detail-label {
    font-weight: 800;
    font-size: 0.8rem;
    color: #ff0000;
    text-align: right;
    line-height: 1.1;
}

.detail-arrow {
    display: flex;
    justify-content: center;
    align-items: center;
}

.detail-arrow {
    width: 100%;
    height: auto;
}

.detail-arrow svg {
    width: 100%;
    height: 100%;
}

.detail-content {
    font-size: 0.8rem;
    line-height: 1.3;
    color: #cc0000;
}

.detail-content p {
    margin: 0;
}

.detail-content strong {
    color: #ff0000;
}

.detail-content small {
    display: block;
    font-size: 0.8rem;
    color: #aa0000;
    margin-top: 2px;
}

.ticket-btn {
    cursor: pointer;
}


/* Pricing Grid (Row 1 layout) */

.pricing-group {
    display: flex;
    gap: 20px;
}

.pricing-group div {
    display: flex;
    flex-direction: column;
}

.pricing-group span {
    font-size: 0.8rem;
    color: #cc0000;
}


/* Highlight Text */

.highlight-text {
    color: #ff0000;
    font-weight: 700;
}


/* ========================================
   WHAT IS HAPPENING
======================================== */

.what-is-happening {
    position: relative;
    display: none;
    justify-content: center;
    align-items: center;

    background-image: url("Assets/website4.png");
    background-size: auto 100%;
    background-position: center top;
    background-repeat: repeat;
}

.what-is-happening-content {
    width: 90%;
    height: auto;

    background-color: #210202;

    padding: 3vh 5vw 3vh 5vw;
    margin: 5vh auto 5vh 0;

    border-radius: 0 5dvh 5dvh 0;

    font-family: "Helvetica World", Helvetica, Arial, sans-serif;
}

.what-is-happening-title {
    display: flex;
    align-items: center;
    gap: 6vw;
}

.what-is-happening-title h2 {
    font-family: "Helvetica World", Helvetica, Arial, sans-serif;
    color: #e30000;
    font-weight: 700;
    font-size: 2.5cqh;
    letter-spacing: -0.05em;
    line-height: 1;
    margin: 0;
}

.what-is-happening-content .detail-row {
    margin-top: 2vh;
}

.what-is-happening-content .detail-row {
    display: grid;
    grid-template-columns: 15vw 8vw 1fr;
    align-items: center;
    gap: 2vw;
}

.what-is-happening-content .detail-label {
    font-weight: 800;
    font-size: 0.8rem;
    color: #ff0000;
    text-align: right;
    line-height: 1.1;
}

.what-is-happening-content .detail-content {
    font-size: 0.8rem;
    line-height: 1.35;
    color: #cc0000;
}


/* ========================================
   GLOBAL IMAGES
======================================== */

img {
    max-width: 100%;
    height: auto;
}


/* ========================================
   MAP BUTTON
======================================== */

.map-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;

    padding: 5px 20px;

    background-color: transparent;

    border: 1.5px solid #e30000;
    border-radius: 50px;

    color: #e30000;

    font-size: 16px;
    font-family: "Helvetica World", Helvetica, Arial, sans-serif;
    font-weight: bold;

    text-decoration: none;
    cursor: pointer;

    transition:
        all
        0.2s
        ease-in-out;
}

.map-btn:hover {
    background-color:
        rgba(229, 0, 0, 0.1);
}


/* ========================================
   ARROW
======================================== */

.arrow-icon {
    display: block;

    flex-shrink: 0;

    overflow: visible;
}

.arrow-path {
    stroke: url(#red-grad);
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}


/* ========================================
   GET TICKET
======================================== */

.ticket-modal {
    position: fixed;
    inset: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(0, 0, 0, 0.8);

    opacity: 0;
    visibility: hidden;

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;

    z-index: 2000;
}

.ticket-modal.show {
    opacity: 1;
    visibility: visible;
}

.ticket-modal-content {
    position: relative;

    max-width: 60%;

    padding: 35px 25px;

    background: #210202;
    border-radius: 20px;

    text-align: center;
}

.ticket-modal-content h2,
.ticket-modal-content p {
    color: #ff0000;

    font-family:
        "Helvetica World",
        Helvetica,
        Arial,
        sans-serif;

    text-shadow:
        1px 1px 3px rgba(0, 0, 0, 0.8);
}

.ticket-modal-content p {
    font-size: 0.8em;
}

.ticket-close {
    position: absolute;

    top: 12px;
    right: 15px;

    border: none;
    background: none;

    color: #ff0000;
    font-size: 1em;

    cursor: pointer;
}

.paynow-qr {
    width: 240px;
    height: 240px;

    padding: 10px;

    border-radius: 10px;

    object-fit: contain;
}


/* ========================================
   MOBILE PORTRAIT
======================================== */

@media (max-width: 767px) and (orientation: portrait) {

    html,
    body {
        width: 100%;
        min-width: 100%;
        min-height: 100%;
    }

    .loader {
        width: 100%;
        height: 100dvh;
        min-height: 100dvh;
    }

    .loader-content {
        width: 100%;
        height: 100dvh;
    }

    .loader-background {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .when-where,
    .more-details,
    .what-is-happening {
        width: 100%;
    }
}


/* ========================================
   PHONE LANDSCAPE
======================================== */

@media (orientation: landscape) and (max-height: 500px) {

    .loader-logo {
        width: 20%;
        max-width: 20%;
    }

    .freakshow-logo {
        width: 55%;
        height: auto;
    }

    @keyframes freakshowPush {

        0% {
            top: 50%;

            transform:
                translate(-50%, -50%)
                scale(1);
        }

        25% {
            top: 50%;

            transform:
                translate(-50%, -50%)
                scale(1);
        }

        80% {
            top: 30%;

            transform:
                translate(-50%, -50%)
                scale(1);
        }

        100% {
            top: 30%;

            transform:
                translate(-50%, -50%)
                scale(1);
        }

    }

    /* DOLL */

    @keyframes jackJump {

        0% {
            bottom: -100%;
            opacity: 0;

            transform:
                translateX(-50%);
        }

        100% {
            bottom: -5%;
            opacity: 1;

            transform:
                translateX(-50%);
        }

    }

    .top-branding-logo {
        width: 3vw;
    }

    .top-branding-text {
        font-size: 0.45rem;
    }

    .top-branding-text span {
        font-size: 0.35rem;
        font-weight: normal;
    }

    .when-where {
        width: 100%;
        height: 80dvh;

        background-size: auto 100%;
        background-position: center left;
    }

    .when-where-content {
        width: 50%;
        height: 80dvh;

        margin: 0 0 0 auto;

        border-radius: 0 0 0 0;

        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
    }

    .when-where-title,
    .details-header,
    .what-is-happening-title {
        gap: 3vw;
        height: 10dvh;
        margin-bottom: 5vh;
    }

    .when-where-title h2,
    .when-where-icon,
    .details-header h2,
    .star-icon,
    .what-is-happening-title h2 {
        height: 100%;
        font-size: 5cqh;
        letter-spacing: -0.05em;
    }

    .when-where-content h2 span,
    .what-is-happening-title h2 span {
        margin-left: 7vw;
    }

    .more-details h2 span {
        margin-left: 3vw;
    }

    .when-where-details1 {
        margin-top: 0;
        font-size: 1em;
    }

    .when-where-details2 {
        margin-top: 5vh;
        font-size: 0.9em;
    }

    .map-btn {
        margin-top: 2vh;
        width: fit-content;
    }

    .more-details {
        flex-direction: row;
        height: 80dvh;
    }

    .more-details-top,
    .more-details-bottom {
        width: 50%;
        height: 80dvh;
    }

    .more-details-bottom {
        order: 1;
        padding: 5vh 5vw;
    }

    .more-details-top {
        order: 2;
    }

    .detail-row {
        grid-template-columns: 8vw 4vw 1fr;
    }

    .details-grid,
    .what-is-happening-content .details-grid {
        gap: 4vh;
    }

    .what-is-happening {
        position: relative;

        width: 100%;
        height: 80dvh;

        margin: 0;

        background-size: auto 100%;
        background-position: left center;
        background-repeat: no-repeat;
    }

    .what-is-happening-content {
        width: 50%;

        margin: 0 0 0 auto;

        border-radius: 0 0 0 0;

        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;

        height: 100%;
    }

    .what-is-happening-content .detail-row {
        grid-template-columns: 6vw 4vw 1fr;
        gap: 2vw;
    }

    .arrow-path {
        stroke-width: 4;
    }

    .section-nav i {
        font-size: 0.8em;
    }
}


/* ========================================
   TABLET (PORTRAIT)
   768px and above
======================================== */

@media (min-width: 768px) and (orientation: portrait) {

    .loader-logo {
        width: 20%;
        max-width: 20%;
    }

    .when-where {
        width: 100%;
        height: 60dvh;
        background-size: auto 100%;
    }

    .when-where-content {
        width: 60%;
        height: 80dvh;

        margin: 0 0 0 auto;

        border-radius: 0 0 0 0;

        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
    }

    .when-where-title,
    .details-header,
    .what-is-happening-title {
        gap: 3vw;
        height: 5dvh;
        margin-bottom: 5vh;
    }

    .when-where-title h2,
    .when-where-icon,
    .details-header h2,
    .star-icon,
    .what-is-happening-title h2 {
        height: 100%;
        font-size: 3cqh;
        letter-spacing: -0.05em;
    }

    .when-where-content h2 span,
    .more-details h2 span,
    .what-is-happening-title h2 span {
        margin-left: 7vw;
    }

    .when-where-details1 {
        margin-top: 0;
        font-size: 1.2em;
    }

    .when-where-details2 {
        margin-top: 5vh;
        font-size: 1.2em;
    }

    .map-btn {
        margin-top: 1vh;
        font-size: 1.2em;
        width: fit-content;
    }

    .more-details {
        flex-direction: row;
        height: 60dvh;
    }

    .more-details-top,
    .more-details-bottom {
        height: 60dvh;
    }

    .more-details-bottom {
        order: 1;
        padding: 5vh 5vw;
        width: 60%;
    }

    .more-details-top {
        order: 2;
        width: 40%;
        background-size: auto 110%;
    }

    .more-details-top img {
        height: auto;
        width: 100%;
    }

    .detail-row,
    .what-is-happening-content .detail-row {
        grid-template-columns: 10vw 3vw 1fr;
    }

    .details-grid,
    .what-is-happening-content .details-grid {
        gap: 4vh;
    }

    .details-header {
        margin-bottom: 5vh;
        gap: 3vw;
    }

    .detail-label,
    .detail-content,
    .what-is-happening-content .detail-label,
    .what-is-happening-content .detail-content {
        font-size: 1.2em;
    }

    .what-is-happening {
        position: relative;

        width: 100%;
        height: 60dvh;

        margin: 0;

        background-size: auto 100%;
        background-position: left center;
        background-repeat: no-repeat;
    }

    .what-is-happening-content {
        width: 60%;

        margin: 0 0 0 auto;

        border-radius: 0 0 0 0;

        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;

        height: 100%;
    }

    .what-is-happening-title {
        margin-bottom: 5vh;
        gap: 3vw;
    }

    .arrow-path {
        stroke-width: 4;
    }

    .section-nav i {
        font-size: 2.5vw;
    }

    .section-nav {
        padding: 2vh 2vw 2vh 2vw;
        gap: 3vw;
    }
}


/* ========================================
   TABLET (LANDSCAPE)
   768px and above
======================================== */

@media (min-width: 768px) and (orientation: landscape) and (min-height: 501px) {

    .loader-logo {
        width: 20%;
        max-width: 20%;
        height: auto;
    }

    .freakshow-logo {
        width: 75%;
        height: auto;
    }

    @keyframes freakshowPush {

        0% {
            top: 50%;

            transform:
                translate(-50%, -50%)
                scale(1);
        }

        25% {
            top: 50%;

            transform:
                translate(-50%, -50%)
                scale(1);
        }

        80% {
            top: 30%;

            transform:
                translate(-50%, -50%)
                scale(1);
        }

        100% {
            top: 30%;

            transform:
                translate(-50%, -50%)
                scale(1);
        }

    }

    /* DOLL */

    @keyframes jackJump {

        0% {
            bottom: -100%;
            opacity: 0;

            transform:
                translateX(-50%);
        }

        100% {
            bottom: -5%;
            opacity: 1;

            transform:
                translateX(-50%);
        }

    }

    .top-branding-logo {
        margin-top: 3vh;
        width: 3vw;
        height: auto;
    }

    .top-branding-text {
        font-size: 0.6em;
    }

    .top-branding-text span {
        font-size: 0.6em;
        font-weight: normal;
    }

    .when-where {
        width: 100%;
        height: 80dvh;

        background-size: auto 110%;
        background-position: center left;
    }

    .when-where-content {
        width: 50%;
        height: 80dvh;

        margin: 0 0 0 auto;

        border-radius: 0 0 0 0;

        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
    }

    .when-where-title.show h2,
    .when-where-icon {
        height: 8vh;
    }

    .when-where-title {
        gap: 3vw;
    }

    .when-where-content h2 span,
    .more-details h2 span,
    .what-is-happening-title h2 span {
        margin-left: 7vw;
    }

    .when-where-details1,
    .when-where-details2 {
        margin-top: 6vh;
    }

    .map-btn {
        margin-top: 3vh;
        width: fit-content;
    }

    .more-details {
        flex-direction: row;
        height: 80dvh;
    }

    .more-details-top,
    .more-details-bottom {
        width: 50%;
        height: 80dvh;
    }

    .more-details-bottom {
        order: 1;
        padding: 5vh 5vw;
    }

    .more-details-top {
        order: 2;
        background-size: auto 110%;
    }

    .detail-row {
        grid-template-columns: 8vw 4vw 1fr;
    }

    .details-grid,
    .what-is-happening-content .details-grid {
        gap: 4vh;
        margin-bottom: 4vh;
    }

    .details-header {
        margin-bottom: 5vh;
        gap: 3vw;
    }

    .what-is-happening {
        position: relative;

        width: 100%;
        height: 80dvh;

        margin: 0;

        background-size: auto 100%;
        background-position: left center;
        background-repeat: no-repeat;
    }

    .what-is-happening-content {
        width: 50%;

        margin: 0 0 0 auto;

        border-radius: 0 0 0 0;

        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;

        height: 100%;
    }

    .what-is-happening-title {
        margin-bottom: 5vh;
        gap: 3vw;
    }

    .what-is-happening-content .detail-row {
        grid-template-columns: 6vw 4vw 1fr;
        gap: 2vw;
    }

    .arrow-path {
        stroke-width: 4;
    }

    .section-nav i {
        font-size: 2vw;
    }

    .section-nav {
        padding: 2vh 2vw 2vh 2vw;
        gap: 3vw;
    }
}


/* ========================================
   DESKTOP
   1024px and above
======================================== */

@media (orientation: landscape) and (min-width: 768px) and (min-height: 501px) {

    .loader-logo {
        width: 10%;
        max-width: 10%;
        height: auto;
    }

    .top-branding-logo {
        margin-top: 0.5vh;
        width: 3vw;
        height: auto;
    }

    .top-branding {
        top: 3%;
    }

    .top-branding-text {
        margin-top: 0.5vh;
        font-size: 1em;
        line-height: 1.2;
    }

    .top-branding-text span {
        font-size: 1em;
    }

    .when-where-title,
    .more-details-bottom .details-header,
    .what-is-happening-title {
        max-height: 10vh;
    }

    .when-where-title h2,
    .more-details-bottom .details-header h2,
    .what-is-happening-title h2 {
        gap: 1.5vw;
        font-size: 5cqh;
    }

    .when-where-icon,
    .star-icon {
        height: 80%;
        max-height: 80%;
        width: auto;
    }

    .detail-row {
        grid-template-columns: 6vw 4vw 1fr;
    }

    .when-where-content h2 span,
    .more-details h2 span,
    .what-is-happening-title h2 span {
        margin-left: 3vw;
    }

    .map-btn {
        width: fit-content;
        font-size: clamp(16px, 1.5vw, 24px);
        padding: 1vh 2vw;
        margin-top: 1vh;
    }

    .detail-label,
    .detail-content,
    .what-is-happening-content .detail-label,
    .what-is-happening-content .detail-content {
        font-size: clamp(16px, 1.5vw, 24px);
    }

    .arrow-path {
        stroke-width: 2;
    }

    .section-nav i {
        font-size: 1vw;
    }
}
