/* RESET & VARIABLES */
:root {
    --bg-color: #e8e6e1; /* Soft Paper White (Legal feel) */
    --text-color: #1a1a1a; /* Sharp Black */
    --accent: #ff4d00; /* International Orange (Quirky pop) */
    --font-serif: 'Playfair Display', serif;
    --font-mono: 'Space Mono', monospace;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none; /* Hides default cursor */
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-mono); /* Default to Tech font */
    overflow-x: hidden;
}

/* CUSTOM CURSOR */
.cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    background: var(--text-color);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, background 0.3s;
    z-index: 9999;
    mix-blend-mode: difference; /* This creates the cool color inversion */
}

/* Cursor grows when hovering over important things */
.cursor.active {
    width: 80px;
    height: 80px;
    background: #fff;
}

/* NAVIGATION */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 4rem;
    mix-blend-mode: difference;
    color: white;
}

.logo {
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 1.5rem;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 3rem;
}

.nav-links a {
    text-decoration: none;
    color: white; /* Inverted by mix-blend-mode */
    font-family: var(--font-mono);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    position: relative;
}

/* HERO SECTION */
.hero {
    height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.intro-tag {
    color: var(--accent);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

h1 {
    font-family: var(--font-serif);
    font-size: 6vw; /* Responsive huge text */
    line-height: 1.1;
    margin-bottom: 2rem;
    font-weight: 400;
}

.italic {
    font-style: italic;
    font-weight: 400;
}

.hero-desc {
    max-width: 500px;
    font-size: 1.1rem;
    line-height: 1.6;
    border-left: 2px solid var(--accent);
    padding-left: 20px;
}

/* MARQUEE ANIMATION (The "Quirky" Scrolling text) */
.marquee-container {
    background: var(--text-color);
    color: var(--bg-color);
    padding: 1.5rem 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    transform: rotate(-2deg) scale(1.1); /* Slight tilt for quirkiness */
    margin-top: -50px;
}

.marquee-content {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    animation: scroll 20s linear infinite;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Responsive fixes */
@media (max-width: 768px) {
    nav { padding: 1.5rem; flex-direction: column; gap: 1rem; }
    .hero { padding: 0 1.5rem; height: auto; margin-top: 4rem; }
    h1 { font-size: 3rem; }
    .cursor { display: none; } /* Hide custom cursor on mobile */
    * { cursor: auto; }
}
