/* --- CSS Reset & Global Variables --- */
:root {
    --bg-dark: #0a0a0c; /* Deep black/navy foundation */
    --text-white: #ffffff;
    --text-gray: #a0aab5;
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: var(--font-body);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* --- Container --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

/* --- Minimal Navigation --- */
nav {
    padding: 3rem 0;
    display: flex;
    justify-content: flex-end; /* Clean, right-aligned nav */
}

.nav-links {
    display: flex;
    gap: 3rem;
    list-style: none;
}

.nav-links a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.nav-links a.active, 
.nav-links a:hover {
    color: var(--text-white);
}

/* --- Hero Section (Page 1) --- */
.hero {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-bottom: 15vh; /* slightly above vertical center */
}

/* Big Bold Text */
.greeting {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 2rem;
}

.role {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    color: var(--text-gray);
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 3rem;
    max-width: 800px;
}

.footer-statement {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--text-white);
    display: flex;
    align-items: center;
}

.divider {
    color: var(--text-gray);
    margin: 0 1rem;
    font-weight: 300;
}

/* --- Subtle Intro Animation --- */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUpAnim 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }

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

/* --- Mobile Adjustments --- */
@media (max-width: 768px) {
    .nav-links { gap: 1.5rem; justify-content: center; width: 100%; }
    nav { justify-content: center; }
    .footer-statement { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
    .divider { display: none; }
}
