/* ==========================================================================
    OWN THE NIGHT INTERACTIVE SCROLL SECTION
   ========================================================================== */

.night-pin-wrapper {
    position: relative;
    width: 100%;
}

.own-night-interactive-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.night-bg-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.dark-state-bg {
    z-index: 1;
}

.light-state-bg {
    z-index: 2;
    opacity: 0;
}

.night-content-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
}

.night-content-overlay#nightScene01 {
    opacity: 1;
    visibility: visible;
}

.night-content-overlay#nightScene02 {
    opacity: 0;
    visibility: hidden;
}

.scroll-trigger-title {
    font-size: calc(2.7rem + 3.5vw);
    font-weight: 500;
    color: #FAFAFA;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: "Outfit", sans-serif;
    opacity: 0.7;
    will-change: transform, opacity;
}

.scroll-trigger-title span {
    font-weight: 300;
    font-size: 0.9em;
}

.led-showcase-title {
    font-size: calc(2.8rem + 3vw);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.1;
    will-change: transform, opacity;
}

.led-showcase-subtitle {
    font-size: calc(1.3rem + 1vw);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    will-change: transform, opacity;
}

.btn-discover {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 6px 0px 6px 32px;
    border-radius: 100px;
    font-family: system-ui, -apple-system, sans-serif;
    color: #ffffff;
    font-weight: 500;
    font-size: 17px;
    letter-spacing: -0.2px;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px) saturate(110%);
    -webkit-backdrop-filter: blur(20px) saturate(110%);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.2);
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform, opacity;
}

.btn-discover img {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    padding: 7px;
    border-radius: 50%;
    background: transparent;
    border: none;
    box-sizing: border-box;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.btn-discover:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.4);
    color: #ffffff;
}

.btn-discover:hover img {
    transform: translateX(2px);
}
