/* =========================================
   STAYEXOTIC HOMEPAGE
========================================= */

.home-body {
    margin: 0;
    min-height: 100vh;
    background: #000;
    color: #fff;
    font-family: Arial, Helvetica, sans-serif;
    overflow-x: hidden;

    animation: pageFade 0.7s ease forwards;
}


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

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

    padding: 0 48px;

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

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

    position: absolute;
    top: 0;
    left: 0;

    z-index: 100;

    opacity: 0;
    animation: fadeDown 0.8s ease 0.15s forwards;
}

.home-nav-logo {
    width: fit-content;
}

.home-nav-logo img {
    width: 120px;
    height: auto;
    display: block;
    filter: invert(1);

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

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

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

.home-nav-links a,
.home-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;
}

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

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

    width: 0;
    height: 1px;

    background: #fff;

    transition: width 0.25s ease;
}

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

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

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


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

.home-main {
    width: 100%;
}

.home-hero {
    min-height: 100vh;

    padding: 115px 48px 55px;

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

    position: relative;
}


/* SMALL TOP TEXT */

.home-eyebrow {
    margin: 0 0 24px;

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

    opacity: 0;

    animation: fadeUp 0.8s ease 0.45s forwards;
}


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

.home-logo-wrap {
    width: 100%;

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

.home-main-logo {
    width: min(1200px, 88vw);
    max-height: 520px;

    object-fit: contain;

    display: block;

    filter: invert(1);

    opacity: 0;

    animation: logoEnter 1s ease 0.3s forwards;

    transition:
        transform 0.4s ease,
        opacity 0.4s ease,
        filter 0.4s ease;
}

.home-main-logo:hover {
    transform: scale(1.025);
    filter: invert(1) brightness(1.15);
}


/* =========================================
   TAGLINE
========================================= */

.home-tagline {
    margin: 18px 0 0;

    font-size: 10px;
    letter-spacing: 5px;
    font-weight: 500;

    text-align: center;

    opacity: 0;

    animation: fadeUp 0.8s ease 0.65s forwards;
}


/* =========================================
   SHOP BUTTON
========================================= */

.home-shop-button {
    margin-top: 22px;

    width: 285px;

    padding: 17px 24px;

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

    background: #fff;
    color: #000;

    text-decoration: none;

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

    opacity: 0;

    animation: fadeUp 0.8s ease 0.8s forwards;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.home-shop-button:hover {
    background: #111;
    color: #fff;

    transform: translateY(-4px);

    box-shadow: 0 12px 30px rgba(255, 255, 255, 0.08);
}

.home-shop-button span {
    font-size: 16px;

    transition: transform 0.3s ease;
}

.home-shop-button:hover span {
    transform: translateX(6px);
}


/* =========================================
   BOTTOM DETAILS
========================================= */

.home-bottom-text {
    width: calc(100% - 96px);

    position: absolute;
    left: 48px;
    bottom: 28px;

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

    opacity: 0;

    animation: fadeUp 0.8s ease 1s forwards;
}

.home-bottom-text span {
    font-size: 8px;
    letter-spacing: 3px;
    opacity: 0.4;
}


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

@keyframes pageFade {

    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }

}


@keyframes fadeDown {

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

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

}


@keyframes fadeUp {

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

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

}


@keyframes logoEnter {

    from {
        opacity: 0;
        transform: translateY(20px) scale(0.96);
    }

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

}


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

@media (max-width: 950px) {

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

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

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

    .home-main-logo {
        width: 92vw;
        max-height: 460px;
    }

    .home-bottom-text {
        width: calc(100% - 50px);
        left: 25px;
    }

}


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

@media (max-width: 650px) {

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

        padding: 18px;

        display: flex;
        flex-wrap: wrap;

        gap: 18px;
    }

    .home-nav-logo {
        margin-right: auto;
    }

    .home-nav-logo img {
        width: 110px;
    }

    .home-nav-links {
        order: 3;

        width: 100%;

        justify-content: space-between;

        padding-top: 15px;

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

    .home-hero {
        padding:
            140px
            18px
            110px;
    }

    .home-main-logo {
        width: 98vw;
        max-height: none;
    }

    .home-eyebrow {
        margin-bottom: 18px;
    }

    .home-tagline {
        margin-top: 18px;

        line-height: 1.8;

        letter-spacing: 3px;
    }

    .home-shop-button {
        width: 100%;
        max-width: 320px;
    }

    .home-bottom-text {
        width: calc(100% - 36px);

        left: 18px;
        bottom: 22px;
    }

    .home-bottom-text span:nth-child(2) {
        display: none;
    }

}