@font-face {
    font-family: metropolis-blackitalic;
    src: url(fonts/metropolis.black-italic.otf);
}

@font-face {
    font-family: metropolis-black;
    src: url(fonts/metropolis.black.otf) format('opentype');
}

@font-face {
    font-family: metropolis-bold;
    src: url(fonts/metropolis.bold.otf) format('opentype');
}

@font-face {
    font-family: metropolis-light;
    src: url(fonts/metropolis.light.otf) format('opentype');
}

@font-face {
    font-family: metropolis-extrabold;
    src: url(fonts/metropolis.extra-bold.otf) format('opentype');
}

@font-face {
    font-family: metropolis-reg;
    src: url(fonts/metropolis.regular.otf) format('opentype');
}

@font-face {
    font-family: metropolis-semi;
    src: url(fonts/metropolis.semi-bold.otf) format('opentype');
}

@font-face {
    font-family: metropolis-regitalic;
    src: url(fonts/metropolis.regular-italic.otf) format('opentype');
}

@keyframes appear {
    from {
        opacity: 0;
        transform: scale(0.5);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* PARALLAX START */
.parallax-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-image: url(images/landing-page-bgnotext.svg);
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.sun {
    position: absolute;
    top: 40%;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, #2abefd61, #23abe67f);
    border-radius: 50%;
    box-shadow: 0 0 205px #23abe6eb, 0 0 100px #2abefd;
    transform: scale(1);
    transition: transform 0.2s ease-out;
    mix-blend-mode: color-dodge;
}


.scroll-indicator {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 14px;
    background: rgba(0, 0, 0, 0.5);
    padding: 8px 16px;
    border-radius: 20px;
    animation: bounce 2s infinite;
    opacity: 1;
    transition: opacity 0.4s ease;
    z-index: 5;
}

.background-layer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-image: url(images/landing-page-bgnotext.svg);
    background-size: cover;
    background-position: center;
    z-index: -1;
}

/* Content Container */
.animation-container {
    position: relative;
    height: 300vh;
}

/* Parallax Section */
.parallax-section {
    position: relative;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

#container {
    display: flex;
    flex-direction: column;
    margin-top: 2em;
}

/* Comment Popups */
.comment-popup {
    position: absolute;
    width: 250px;
    padding: 15px;
    border-radius: 10px;
    backdrop-filter: blur(9px);
    background: rgba(255, 255, 255, 0.085);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    border: 0.5px solid rgba(255, 255, 255, 0.3);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
    z-index: 100;
    pointer-events: none;
}

.comment-popup.visible {
    opacity: 1;
    transform: translateY(0);
}

.comment-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.comment-author {
    font-weight: bold;
    color: white;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
    font-size: 14px;
}

.comment-text {
    color: white;
    line-height: 1.4;
    font-size: 13px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}

/* Scroll Indicator */
.scroll-indicator {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 14px;
    background: rgba(0, 0, 0, 0.5);
    padding: 8px 16px;
    border-radius: 20px;
    animation: bounce 2s infinite;
    opacity: 1;
    transition: opacity 0.3s ease;
    z-index: 5;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0) translateX(-50%);
    }

    40% {
        transform: translateY(-20px) translateX(-50%);
    }

    60% {
        transform: translateY(-10px) translateX(-50%);
    }
}

/* PARALLAX END */

.block {
    opacity: 0;
    transform: scale(0.5);
    transition: opacity 1s ease, transform 1s ease;
}

.block.visible {
    opacity: 1;
    /* Fully visible */
    transform: scale(1);
    /* Normal size */
}

/* Section Styling */
#landingpage-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100vh;
    background-image: url(images/landing-page-bgnotext.svg);
    background-size: cover;
    text-decoration: none;
    /* removes underline */
    background-position: center;
}

#logo img {
    max-width: 100%;
    height: 5%;
    padding-top: 0em;
    padding-bottom: 2em;
}

#text-body {
    width: 100%;
    /* Set a width for the container */
    height: auto;
    /* Adjust height as needed */
}


#text-content {
    max-width: 100%;
    color: white;
    margin: 1rem 0rem;
    position: relative;
    align-self: center;
    align-content: center;
}

#additional-details {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

#lp-subheader {
    color: aliceblue;
    font-family: metropolis-semi;
    font-size: 1.6rem;
    margin: 1rem 0;
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

#lp-description {
    color: aliceblue;
    font-family: metropolis-light;
    font-size: 0.9rem;
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

#key-facts {
    padding: 1rem 1rem;
    background-color: #020047;
    height: fit-content;
    width: 100%;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

#key-facts.active {
    opacity: 1;
    transform: translateY(0);
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0) translateX(-50%);
    }

    40% {
        transform: translateY(-20px) translateX(-50%);
    }

    60% {
        transform: translateY(-10px) translateX(-50%);
    }
}

#facts-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    color: aliceblue;
}

#lbl-keyfacts-container,
#attendees-container,
#events-container,
#venues-container {
    padding: 5em;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#attendees-container,
#events-container {
    border-right: 5px solid aliceblue;
    height: 20vh;
}

#lbl-venues,
#lbl-events,
#lbl-attendees {
    font-size: 1rem;
    font-family: metropolis-light;
}

#count-venues,
#count-events,
#count-attendees {
    font-size: 3rem;
    font-family: metropolis-bold;
}

#lbl-keyfacts {
    font-family: metropolis-bold;
    font-size: 3rem;
}

/* Footer Styling */
.copyright-container {
    color: aliceblue;
    font-size: 0.8rem;
    font-family: metropolis-reg;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #020047;
    padding: 0.5rem 0;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.copyright-content {
    text-align: center;
    width: 100%;
}

#key-facts.reveal-facts {
    opacity: 1;
    transform: translateY(0);
}

#navbar {
    position: fixed;
    top: 0;
    left: 0;
    align-items: right;
    text-align: center;
    display: flex;
    justify-content: right;
    list-style: none;
    text-decoration: none;
    width: 100%;
    padding-right: 7em;
    padding-top: 4em;
    z-index: 9999; 
    pointer-events: auto;

}

#list-container {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: row;
    gap: 2rem;
}

#list-container li a {
    text-decoration: none;
    background-color: transparent;
    color: aliceblue;
    padding: 12px 30px;
    border-radius: 30px;
    margin: 0.5rem;
    transition: all 0.6s ease;
}

#list-container li a:hover {
    background-color: #F2EC26;
    color: #020047;
    padding: 12px 60px;
    font-weight: 600;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px #f2eb2663;
}

/* Switch to landing-page-bg.svg when the screen is full height */
@media (min-height: 100vh) and (min-width: 1350px) {

    #landingpage-section {
        background-image: url(images/landing-page-bg.svg);
    }
}

/* Responsive Design */
@media only screen and (max-width: 968px) {
.comment-popup {
        display: none !important;
        opacity: 0 !important;
        transition: none !important;
        animation: none !important;
    }
        #facts-container {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        width: 50%;
    }

    #navbar {
        position: absolute;
        padding: 0;
        margin-top: 3rem;
        margin-right: 0.7rem;
    }

    #lbl-keyfacts-container,
    #attendees-container,
    #events-container,
    #venues-container {
        padding: 4em;
    }
}

@media only screen and (max-width: 768px) {
.comment-popup {
        display: none !important;
        opacity: 0 !important;
        transition: none !important;
        animation: none !important;
    }
    #landingpage-section {
        background-image: url(images/landing-page-bgnotext.svg);
        background-size: cover;
        background-position: center;
    }

    #navbar {
        justify-content: center;
        padding: 1em;
    }

    #list-container {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    #list-container li a {
        padding: 10px 16px;
        font-size: 0.9rem;
    }

    #lp-description {
        width: 100%;
        font-size: 0.9rem;
        padding: 0rem 1rem;
    }

    #lp-subheader {
        color: aliceblue;
        font-family: metropolis-bold;
        font-size: 1.5rem;
    }

    #text-content {
        height: 20vh;
        padding: 0rem 1rem;
    }

    #text-body {
        width: 100%;
        height: auto;
    }

    #facts-container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 50%;
    }

    #lbl-keyfacts-container,
    #attendees-container,
    #events-container,
    #venues-container {
        padding: 3em;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    #lbl-keyfacts {
        font-size: 3rem;
        margin-top: 1em;
    }


    #attendees-container,
    #events-container {
        border-right: none;
        border-bottom: 5px solid aliceblue;
        width: 10%;
    }

}

@media only screen and (max-width: 576px) {
.comment-popup {
        display: none !important;
        opacity: 0 !important;
        transition: none !important;
        animation: none !important;
    }
    #landingpage-section {
        background-image: url(images/landing-page-bgnotext.svg);
        background-size: cover;
        background-position: center;
    }

    #additional-details {
        width: 100%;
    }

    #lp-subheader {
        color: aliceblue;
        font-family: metropolis-bold;
        font-size: 1.5rem;
    }

    #lp-description {
        width: 100%;
        font-size: 0.9rem;
        padding: 0rem 1rem;
    }

    #text-content {
        height: 20vh;
        padding: 0rem 1rem;
    }

    #navbar {
        flex-direction: column;
        align-items: center;
        padding: 1em 0.5em;
    }

    #list-container {
        flex-direction: column;
        gap: 0.5rem;
        width: 100%;
        align-items: center;
    }

    #list-container li a {
        padding: 8px 12px;
        font-size: 0.85rem;
        width: 90%;
        text-align: center;
    }

    #text-body {
        width: 100%;
        height: auto;
    }

    #facts-container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        color: aliceblue;
    }

    #lbl-keyfacts-container,
    #attendees-container,
    #events-container,
    #venues-container {
        padding: 3em;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    #lbl-keyfacts {
        font-size: 3rem;
        margin-top: 1em;
    }

    #attendees-container,
    #events-container {
        border-right: none;
        border-bottom: 5px solid aliceblue;
        width: 10%;
    }

    .copyright-container {
        font-size: 0.7rem;
    }

}