@import url('https://fonts.googleapis.com/css2?family=Syncopate:wght@400;700&family=Tenor+Sans&display=swap');

:root {
    --black: #080808;
    --white: #ffffff;
    --neon-violet: #bb86fc;
    --deep-grey: #1a1a1a;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--black);
    color: var(--white);
    font-family: 'Tenor Sans', sans-serif;
    overflow-x: hidden;
}

/* CUSTOM CURSOR */
.cursor {
    width: 20px; height: 20px;
    border: 1px solid var(--neon-violet);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s;
}

/* NAVIGATION: Floating Minimalist */
nav {
    position: fixed;
    bottom: 50px; left: 50%;
    transform: translateX(-50%);
    display: flex; gap: 30px;
    padding: 15px 40px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
}

nav a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-family: 'Syncopate', sans-serif;
    opacity: 0.5;
    transition: 0.3s;
}

nav a:hover, nav a.active { opacity: 1; color: var(--neon-violet); }

/* SECTION LAYOUT */
section {
    min-height: 100vh;
    padding: 100px 10%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero { height: 100vh; text-align: center; background-attachment: fixed; background-size: cover; background-position: center; }

h1 {
    font-family: 'Syncopate', sans-serif;
    font-size: clamp(2rem, 8vw, 5rem);
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 20px;
}

.sub-title { color: var(--neon-violet); letter-spacing: 10px; text-transform: uppercase; font-size: 0.8rem; margin-bottom: 50px; }

/* SCROLLING IMAGE GALLERY */
.marquee {
    overflow: hidden;
    white-space: nowrap;
    padding: 100px 0;
}

.marquee-content {
    display: inline-flex;
    gap: 40px;
    animation: marquee 20s linear infinite;
}

.marquee-content img {
    width: 450px; height: 600px;
    object-fit: cover;
    filter: sepia(0.3) brightness(0.8);
}

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* CONTENT BLOCKS */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    margin-top: 50px;
}

.text-col { font-size: 1.2rem; line-height: 2; color: #ccc; }
.accent-col { font-family: 'Syncopate', sans-serif; color: var(--neon-violet); font-size: 3rem; opacity: 0.2; }

/* SCROLLBAR */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--neon-violet); }