@font-face {
    font-family: 'mainFont';
    src: url('../fonts/objectivity/Objectivity-Thin.otf');
}

:root {
    --bg: #050505;
    --bg-soft: #0d0d0d;
    --text: #f5f5f5;
    --muted: #8d8d8d;
    --accent: #e78200;
    --gold: #ffd166;
    --border: rgba(255, 255, 255, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: black;
    color: var(--text);
    font-family: 'mainFont';
    overflow-x: hidden;
    position: relative;
}

/* GLOBAL ATMOSPHERE */

.noise {
    position: fixed;
    inset: 0;
    opacity: 0.03;
    pointer-events: none;
    z-index: 999;
    background-image:
        repeating-radial-gradient(circle at 0 0,
            transparent 0,
            #ffffff 1px,
            transparent 2px);
}

.vignette {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 998;
    background:
        radial-gradient(circle,
            transparent 45%,
            rgba(0, 0, 0, 0.45) 100%);
}

/* HERO */

.hero {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 8rem 6% 2rem;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at center,
            rgba(231, 130, 0, 0.22),
            transparent 45%);
    filter: blur(80px);
    transform: scale(1.4);
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom,
            transparent 60%,
            black 100%);
    pointer-events: none;
}

.top-nav {
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;

    z-index: 1000;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 1.5rem 6%;

    background:
    linear-gradient(
    to bottom,
    rgba(0,0,0,0.96) 0%,
    rgba(0,0,0,0.82) 30%,
    rgba(0,0,0,0.52) 65%,
    rgba(0,0,0,0) 100%
    );
}

.nav-brand {
    letter-spacing: 0.45rem;
    color: var(--gold);
    font-size: 0.85rem;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.65);
    transition: 0.35s;
    font-size: 0.95rem;
    letter-spacing: 0.05rem;
}

.nav-links a:hover {
    color: white;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 3;
    margin-top: -6vh;
}

.hero-logo {
    width: min(700px, 85vw);
    filter:
        drop-shadow(0 0 25px rgba(255, 255, 255, 0.08)) drop-shadow(0 0 60px rgba(231, 130, 0, 0.15));
}

.hero-tagline {
    margin-top: 4rem;
    letter-spacing: 0.25rem;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    font-size: clamp(0.8rem, 1.5vw, 1.1rem);
}

.scroll-indicator {
    margin-top: 5rem;
    color: rgba(255, 255, 255, 0.35);
    letter-spacing: 0.25rem;
    text-transform: uppercase;
    font-size: 0.75rem;
    animation: floatText 4s ease-in-out infinite;
}

@keyframes floatText {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(8px);
    }

    100% {
        transform: translateY(0);
    }
}

/* WORLD SECTIONS */

.world-section {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10rem 8%;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.world-background {
    position: absolute;
    inset: 0;
    opacity: 0.55;
    z-index: 0;
}

.world-content {
    position: relative;
    z-index: 3;
    max-width: 650px;
}

.world-index {
    display: block;
    color: var(--gold);
    letter-spacing: 0.35rem;
    margin-bottom: 2rem;
    font-size: 0.8rem;
}

.world-content h2 {
    font-size: clamp(3rem, 8vw, 7rem);
    line-height: 0.95;
    font-weight: 100;
    margin-bottom: 2rem;
}

.world-content p {
    font-size: 1.2rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.65);
    max-width: 500px;
}

.world-button {
    display: inline-block;
    margin-top: 3rem;
    text-decoration: none;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 2rem;
    border-radius: 999px;
    transition: 0.4s;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.03);
}

.world-button:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.06);
}

.world-logo {
    width: min(340px, 38vw);
    position: relative;
    z-index: 2;
    opacity: 0.95;
}

/* LITL */
.litl-world {
    background: black;
}

.litl-world .world-background {
    background:
        linear-gradient(to top,
            rgba(0, 0, 0, 0) 72%,
            rgba(0, 0, 0, 1) 100%),
        linear-gradient(to bottom,
            rgba(0, 0, 0, 0) 72%,
            rgba(0, 0, 0, 1) 100%),

        linear-gradient(to right,
            rgba(0, 0, 0, 0.78) 10%,
            rgba(0, 0, 0, 0.35) 45%,
            rgba(0, 0, 0, 0.12) 100%),

        url('../media/litl-background.jpg');

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    opacity: 1;

    transform: scale(1.02);

    filter:
        saturate(0.95) brightness(0.78) blur(1px);
}

.litl-world .world-content {
    position: relative;
    z-index: 5;
}

.afloat-world h2 {
    font-size: clamp(4rem, 9vw, 8rem);
}

/* AFLOAT */
.afloat-world {
    background: black;
}

.afloat-world .world-background {
    background:
        linear-gradient(to top,
            rgba(0, 0, 0, 0) 72%,
            rgba(0, 0, 0, 1) 100%),
        linear-gradient(to bottom,
            rgba(0, 0, 0, 0) 72%,
            rgba(0, 0, 0, 1) 100%),

        url('../media/afloat-background.jpg');

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    opacity: 1;

    transform: scale(1.02);

    filter:
        saturate(1) brightness(0.82) blur(1px);
}

.afloat-world {
    justify-content: center;
    text-align: center;
}

.afloat-world .world-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* CITY DESTRUCTION */
.cd-world {
    background: black;
}

.cd-world .world-background {
    background:
        linear-gradient(to top,
            rgba(0, 0, 0, 0) 72%,
            rgba(0, 0, 0, 1) 100%),
        linear-gradient(to bottom,
            rgba(0, 0, 0, 0) 72%,
            rgba(0, 0, 0, 1) 100%),
        linear-gradient(to right,
            rgba(0, 0, 0, 0.88) 12%,
            rgba(0, 0, 0, 0.48) 42%,
            rgba(0, 0, 0, 0.08) 100%),
        url('../media/cd-background.png');

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    opacity: 1;

    transform: scale(1.02);

    filter:
        saturate(0.95) brightness(0.72) blur(1px);
}

.cd-world .world-content {
    position: relative;
    z-index: 5;
}

.cd-world h2 {
    font-size: clamp(3.5rem, 8vw, 7rem);
}

/* ABOUT */

.about-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 10rem 10%;
    background: black;
}

.about-content {
    max-width: 900px;
}

.about-content span {
    color: var(--gold);
    letter-spacing: 0.35rem;
    font-size: 0.8rem;
}

.about-content h2 {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 100;
    margin-top: 2rem;
    line-height: 1;
}

.about-content p {
    margin-top: 2.5rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 2;
    font-size: 1.15rem;
}

/* SERVICES */

.services-section {
    padding: 10rem 8%;
}

.services-header span {
    color: var(--gold);
    letter-spacing: 0.35rem;
    font-size: 0.8rem;
}

.services-header h2 {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 100;
    margin-top: 2rem;
    max-width: 800px;
}

.services-layout {
    margin-top: 6rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.service-link {
    text-decoration: none;
    color: white;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(15px);
    transition: 0.4s;
}

.service-link:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.04);
}

.service-link img {
    width: 72px;
}

.service-link h3 {
    margin-top: 2rem;
    font-size: 1.8rem;
    font-weight: 100;
}

.service-link p {
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
}

/* FOOTER */

footer {
    padding: 8rem 8% 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    gap: 4rem;
    flex-wrap: wrap;
}

.footer-brand h3 {
    font-size: 2rem;
    font-weight: 100;
    letter-spacing: 0.3rem;
}

.footer-brand p {
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-socials {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-socials a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7);
    transition: 0.3s;
}

.footer-socials a:hover {
    color: white;
}

.footer-bottom {
    margin-top: 5rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.5);
    transition: 0.35s;
}

.footer-links a:hover {
    color: rgba(255, 255, 255, 0.9);
}

.footer-bottom p {
    margin-top: 2rem;
    color: rgba(255, 255, 255, 0.35);
    line-height: 1.8;
}

/* MOBILE */

@media(max-width:900px) {

    .top-nav {
        flex-direction: column;
        gap: 2rem;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.2rem;
    }

    .hero-content {
        margin-top: -2vh;
    }

    .hero-tagline {
        width: 80%;
        font-size: 0.75rem;
        letter-spacing: 0.18rem;
    }

    .world-section {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        gap: 5rem;
    }

    .world-content {
        display: flex;
        flex-direction: column;
        align-items: center !important;
        text-align: center;
        margin: auto;
    }

    .world-content p {
        font-size: 1rem;
    }

    .world-logo {
        width: min(220px, 50vw);
    }

    /* MOBILE ATMOSPHERIC BACKGROUNDS */

    .litl-world .world-background {
        background:
        linear-gradient(to top,
            rgba(0, 0, 0, 0) 72%,
            rgba(0, 0, 0, 1) 100%),
            linear-gradient(to bottom,
                rgba(0, 0, 0, 0) 68%,
                rgba(0, 0, 0, 1) 100%),

            radial-gradient(circle at center,
                rgba(0, 0, 0, 0.18) 0%,
                rgba(0, 0, 0, 0.45) 62%,
                rgba(0, 0, 0, 0.82) 100%),

            url('../media/litl-background.jpg');

        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    .afloat-world .world-background {
        background:
        linear-gradient(to top,
            rgba(0, 0, 0, 0) 72%,
            rgba(0, 0, 0, 1) 100%),
            linear-gradient(to bottom,
                rgba(0, 0, 0, 0) 68%,
                rgba(0, 0, 0, 1) 100%),

            radial-gradient(circle at center,
                rgba(0, 0, 0, 0.12) 0%,
                rgba(0, 0, 0, 0.38) 62%,
                rgba(0, 0, 0, 0.72) 100%),

            url('../media/afloat-background.jpg');

        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    .cd-world .world-background {
        background:
        linear-gradient(to top,
            rgba(0, 0, 0, 0) 72%,
            rgba(0, 0, 0, 1) 100%),
            linear-gradient(to bottom,
                rgba(0, 0, 0, 0) 68%,
                rgba(0, 0, 0, 1) 100%),

            radial-gradient(circle at center,
                rgba(0, 0, 0, 0.2) 0%,
                rgba(0, 0, 0, 0.48) 62%,
                rgba(0, 0, 0, 0.88) 100%),

            url('../media/cd-background.png');

        background-size: cover;
        background-position: 67.5% center;
        background-repeat: no-repeat;
    }

    .services-layout {
        grid-template-columns: 1fr;
    }

    .footer-top {
        flex-direction: column;
    }

}