/* Under Design System CSS */
@import url("https://unpkg.com/@rnbws/renecss/dist/rene.min.css");

/* Font Faces */
@font-face {
    font-family: "Nudge";
    src: url("./brandsprint/fonts/VCNudge-BoldItalic.woff2") format("woff2"),
        url("./brandsprint/fonts/VCNudge-BoldItalic.woff") format("woff");
}

/* Typography */
.nudge_font {
    font-family: "Nudge", sans-serif;
    font-size: 9rem;
    line-height: 96%;
}

@media screen and (max-width: 768px) {
    .nudge_font {
        font-size: 4rem;
    }
}

/* Circle Elements */
.circle {
    cursor: pointer;
    display: flex;
    border-radius: 100%;
    position: absolute;
    z-index: 4;
    width: 220px;
    height: 220px;
    color: white;
    right: 50%;
    top: 30%;
    align-items: center;
    justify-content: center;
    text-align: center;
}



@media (max-width: 768px) {
    .circle {
        width: 160px;
        height: 160px;
    }
    
    /* Hide navigation circles on mobile */
    .circle1,
    .circle2,
    .circle3,
    .circle4,
    .circle5 {
        display: none !important;
    }
}

/* Content Overlays */
.content-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    color: white;
    mix-blend-mode: difference;
}

/* Media Elements */
.fullscreen-video {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-image {
    object-fit: cover;
    height: 100vh;
    width: 100%;
}

/* Scroll Animations */
.scroll {
    animation: scroll 25s linear infinite;
    flex-wrap: nowrap;
    display: flex;
    gap: 5rem;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100vw);
    }
}

/* Quote Elements */
.quote {
    width: 400px;
    flex: 0 0 auto;
}

/* Infinite Wrapper */
.infinite-wrapper {
    width: 100vw;
    overflow-x: hidden;
    /* The negative margins center the wrapper across the full viewport */
    margin-left: calc(-50vw + 50%);
}

/* Dividers */
.divider {
    width: 1px;
    height: 240px;
    background-color: #000;
    transform: rotate(10deg);
    margin: auto 0;
    opacity: 0.2;
}

@media screen and (max-width: 768px) {
    .divider {
        display: none;
    }
}

/* Schedule Section */
.schedule-div p {
    color: black;
    text-align: center;
}

@media screen and (max-width: 768px) {
    .schedule-div {
        text-align: center;
        align-items: center !important;
    }

    .schedule-div .date {
        justify-content: center !important;
    }

    .schedule-div>div,
    .schedule-div>a {
        margin: 0 auto;
    }
}
