/* =========================================
   STAYEXOTIC NEW DROP
========================================= */

.drop-body {
    margin: 0;
    background: #000;
    color: #fff;
    font-family: Arial, Helvetica, sans-serif;
    overflow-x: hidden;

    animation: dropPageFade 0.7s ease forwards;
}


/* =========================================
   NAVBAR
========================================= */

.drop-navbar {
    width: 100%;
    height: 82px;

    padding: 0 48px;

    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;

    background: #000;

    border-bottom: 1px solid rgba(255, 255, 255, 0.12);

    position: relative;
    z-index: 100;
}

.drop-logo {
    width: fit-content;
}

.drop-logo img {
    width: 120px;
    height: auto;
    display: block;

    filter: invert(1);

    transition:
        transform 0.3s ease,
        opacity 0.3s ease;
}

.drop-logo:hover img {
    transform: scale(1.04);
    opacity: 0.75;
}


.drop-nav-links {
    display: flex;
    align-items: center;
    gap: 42px;
}

.drop-nav-links a,
.drop-nav-right a {
    color: #fff;
    text-decoration: none;

    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;

    position: relative;

    transition:
        opacity 0.25s ease,
        transform 0.25s ease;
}

.drop-nav-links a::after,
.drop-nav-right a::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: -8px;

    width: 0;
    height: 1px;

    background: #fff;

    transition: width 0.25s ease;
}

.drop-nav-links a:hover,
.drop-nav-right a:hover {
    opacity: 0.7;
    transform: translateY(-1px);
}

.drop-nav-links a:hover::after,
.drop-nav-right a:hover::after {
    width: 100%;
}

.drop-nav-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 30px;
}


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

.drop-main {
    width: 100%;
}


/* =========================================
   HERO
========================================= */

.drop-hero {
    min-height: 88vh;

    padding:
        65px
        48px
        70px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.drop-top-line {
    display: flex;
    align-items: center;
    justify-content: space-between;

    font-size: 9px;
    letter-spacing: 3px;

    opacity: 0;

    animation: dropFadeUp 0.8s ease 0.2s forwards;
}

.drop-title-wrap {
    margin: 70px 0;
}

.drop-title-wrap h1 {
    margin: 0;

    font-size: clamp(100px, 15vw, 235px);
    font-weight: 800;

    line-height: 0.72;

    letter-spacing: -10px;

    opacity: 0;

    animation: dropTitleEnter 1s ease 0.35s forwards;
}

.drop-info {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    opacity: 0;

    animation: dropFadeUp 0.8s ease 0.7s forwards;
}

.drop-description p {
    margin: 0 0 10px;

    font-size: 11px;
    letter-spacing: 3px;
}

.drop-description span {
    font-size: 9px;
    letter-spacing: 2px;

    opacity: 0.45;
}

.drop-status {
    display: flex;
    align-items: center;
    gap: 10px;

    font-size: 9px;
    letter-spacing: 2px;
}

.status-dot {
    width: 6px;
    height: 6px;

    display: inline-block;

    background: #fff;

    border-radius: 50%;

    animation: statusPulse 1.8s ease infinite;
}


/* =========================================
   PREVIEW CARDS
========================================= */

.drop-preview {
    padding:
        35px
        48px
        120px;

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 16px;
}

.preview-card {
    min-width: 0;
}

.preview-number {
    display: block;

    margin-bottom: 12px;

    font-size: 9px;
    letter-spacing: 2px;

    opacity: 0.4;
}

.preview-box {
    width: 100%;

    aspect-ratio: 4 / 5;

    background:
        linear-gradient(
            145deg,
            #111,
            #191919
        );

    border:
        1px solid
        rgba(255, 255, 255, 0.08);

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

    overflow: hidden;

    position: relative;

    transition:
        transform 0.35s ease,
        border-color 0.35s ease;
}

.preview-box::after {
    content: "";

    width: 160%;
    height: 1px;

    background:
        rgba(255, 255, 255, 0.08);

    position: absolute;

    transform: rotate(-35deg);
}

.preview-box p {
    margin: 0;

    font-size: 10px;
    letter-spacing: 4px;

    opacity: 0.4;

    z-index: 2;
}

.preview-card:hover .preview-box {
    transform: translateY(-5px);

    border-color:
        rgba(255, 255, 255, 0.22);
}

.preview-bottom {
    margin-top: 13px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.preview-bottom span {
    font-size: 9px;
    letter-spacing: 2px;

    opacity: 0.55;
}


/* =========================================
   BOTTOM STATEMENT
========================================= */

.drop-footer-section {
    min-height: 75vh;

    padding:
        120px
        48px;

    background: #fff;
    color: #000;

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

.drop-footer-section p {
    margin: 0 0 30px;

    font-size: 9px;
    letter-spacing: 4px;
}

.drop-footer-section h2 {
    margin: 0;

    font-size: clamp(70px, 10vw, 160px);

    line-height: 0.85;

    letter-spacing: -6px;
}

.drop-footer-section a {
    width: fit-content;

    margin-top: 45px;

    padding-bottom: 7px;

    color: #000;

    text-decoration: none;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 2px;

    border-bottom: 1px solid #000;

    transition:
        opacity 0.25s ease,
        transform 0.25s ease;
}

.drop-footer-section a:hover {
    opacity: 0.5;
    transform: translateX(5px);
}


/* =========================================
   ANIMATIONS
========================================= */

@keyframes dropPageFade {

    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }

}

@keyframes dropFadeUp {

    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

@keyframes dropTitleEnter {

    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

@keyframes statusPulse {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 1;
    }

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 950px) {

    .drop-navbar {
        padding: 0 25px;
    }

    .drop-nav-links {
        gap: 22px;
    }

    .drop-nav-right {
        gap: 15px;
    }

    .drop-hero {
        padding:
            55px
            25px
            60px;
    }

    .drop-preview {
        padding:
            35px
            25px
            90px;
    }

    .drop-footer-section {
        padding:
            100px
            25px;
    }

}


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

@media (max-width: 650px) {

    .drop-navbar {
        height: auto;
        min-height: 90px;

        padding: 18px;

        display: flex;
        flex-wrap: wrap;

        gap: 18px;
    }

    .drop-logo {
        margin-right: auto;
    }

    .drop-logo img {
        width: 110px;
    }

    .drop-nav-links {
        order: 3;

        width: 100%;

        justify-content: space-between;

        padding-top: 15px;

        border-top:
            1px solid
            rgba(255, 255, 255, 0.12);
    }

    .drop-hero {
        min-height: 78vh;

        padding:
            45px
            18px
            50px;
    }

    .drop-top-line span:last-child {
        display: none;
    }

    .drop-title-wrap {
        margin: 60px 0;
    }

    .drop-title-wrap h1 {
        font-size: 92px;

        letter-spacing: -6px;
    }

    .drop-info {
        flex-direction: column;

        align-items: flex-start;

        gap: 25px;
    }

    .drop-preview {
        padding:
            25px
            18px
            70px;

        grid-template-columns: 1fr;
    }

    .drop-footer-section {
        min-height: 65vh;

        padding:
            80px
            18px;
    }

    .drop-footer-section h2 {
        font-size: 68px;

        letter-spacing: -4px;
    }

}