:root {
    /* Exact colors from Aino Agency */
    --bg-color: #f5f5f0;
    --text-color: #181818;
    
    --font-sans: 'Inter', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-sans);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

::selection {
    background-color: var(--text-color);
    color: var(--bg-color);
}

.skip-link {
    position: fixed;
    top: 1rem;
    left: 1rem;
    transform: translateY(-200%);
    z-index: 200;
    background: #000000;
    color: #F527C8;
    font-family: var(--font-mono);
    padding: 0.75rem 1rem;
    text-decoration: none;
    text-transform: uppercase;
}

.skip-link:focus {
    transform: translateY(0);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* NAVIGATION */
.site-nav {
    position: sticky;
    top: 0; left: 0;
    width: 100%;
    padding: 2rem 3rem;
    display: flex;
    justify-content: space-between;
    font-family: var(--font-mono);
    font-size: 1.00rem;
    text-transform: uppercase;
    z-index: 100;
    background-color: #000000;
    color: #F527C8;
}

.site-nav a {
    color: inherit;
    text-decoration: none;
    margin-left: 2rem;
}

/* HERO */
.hero {
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 3rem;
    position: relative;
}

.ascii-container {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-mono);
    font-size: 1.2vw;
    line-height: 1;
    color: rgba(24, 24, 24, 0.1); /* Faded ascii background */
    z-index: -1;
    pointer-events: none;
    white-space: pre;
    text-align: center;
}

.hero-text {
    z-index: 1;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    z-index: 1;
    width: 100%;
}

.profile-img {
    width: 350px;
    height: 350px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 2rem;
    /* filter: grayscale(100%) contrast(1.2); Optional: Fits the brutalist aesthetic */
}

.hero-bio {
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 600px;
    font-family: var(--font-sans);
}

.seo-bio {
    margin-top: 1rem;
}

.about-heading {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    font-family: var(--font-sans);
    text-transform: uppercase;
}

.headline {
    font-size: clamp(2rem, 6vw, 6rem); /* Reduced from 10rem to 6rem max */
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 0.9;
    text-transform: uppercase;
    margin: 0;
}

.headline span {
    display: block;
    pointer-events: none;
}

.sub-headline {
    font-family: var(--font-mono);
    font-size: 1rem;
    margin-top: 2rem;
    line-height: 1.5;
    max-width: 400px;
}

/* WORK SECTION */
.work-section {
    padding: 10vh 0;
}

.marquee {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    border-top: 1px solid var(--text-color);
    border-bottom: 1px solid var(--text-color);
    padding: 1rem 0;
    margin-bottom: 5rem;
    display: flex;
}

.marquee-inner {
    display: flex;
    flex-shrink: 0;
    animation: marquee 15s linear infinite;
    font-family: var(--font-mono);
    font-size: 1.5rem;
    text-transform: uppercase;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.project-list {
    padding: 0 3rem;
}

.project-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(24, 24, 24, 0.2);
    padding: 3rem 0;
    cursor: pointer;
    transition: padding 0.3s ease;
}

.project-row:hover {
    padding: 4rem 0; /* Aino-style flex expansion */
}

/* Music-specific centered card */
.music-row {
    justify-content: center;
    border-bottom: none;
}

.music-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    max-width: 780px;
    padding: 2rem 1rem;
}

.music-thumb {
    display: block;
    width: 360px;
    aspect-ratio: 16/9;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0,0,0,0.25);
    text-decoration: none;
}

.thumb-inner {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.thumb-inner svg { display: block; }

/* Contact block styles */
.contact-heading {
    font-size: 2rem;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    font-family: var(--font-sans);
    text-transform: uppercase;
    color: var(--text-color);
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-top: 0.5rem;
}

.contact-email, .contact-link {
    color: var(--text-color);
    text-decoration: none;
    font-family: var(--font-mono);
    font-size: 1rem;
    border-bottom: 1px dashed rgba(24,24,24,0.12);
    padding-bottom: 2px;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
}

.contact-email:hover, .contact-link:hover {
    color: #F527C8;
}

.contact-text { line-height: 1; }

.icon { width: 1.1rem; height: 1.1rem; display: inline-block; vertical-align: middle; fill: none; stroke: currentColor; }

.project-info {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
}

.project-number {
    font-family: var(--font-mono);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.pub-title {
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    background-color: #000000;
    color: #F527C8;
    padding: 0.5rem 1rem;
    display: inline-block;
    margin-bottom: 1rem;
    letter-spacing: 0.02em;
}

.project-ascii {
    font-family: var(--font-mono);
    font-size: 10px;
    line-height: 1.1;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s ease;
}

.project-row:hover .project-ascii {
    opacity: 1;
    transform: translateX(0);
}

/* FOOTER */
.footer {
    padding: 5rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-top: 1px solid rgba(24, 24, 24, 0.2);
}

.footer-name {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    text-transform: uppercase;
}

.footer-details {
    margin-top: 1rem;
    font-family: var(--font-mono);
    font-size: 0.95rem;
    text-transform: uppercase;
    max-width: 760px;
    line-height: 1.6;
}

.footer-bottom {
    display: flex;
    gap: 3rem;
    margin-top: 5rem;
    font-family: var(--font-mono);
    font-size: 0.9rem;
    text-transform: uppercase;
}

.footer-bottom a {
    color: var(--text-color);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
}

.footer-bottom a:hover {
    border-bottom: 1px solid var(--text-color);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .site-nav { padding: 1.5rem; background-color: #000000; color: #F527C8; }
    .hero { padding: 0 1.5rem; }
    .hero-grid { grid-template-columns: 1fr; gap: 3rem; margin-top: 3rem; }
    .profile-img { width: 260px; height: 260px; }
    .project-list { padding: 0 1.5rem; }
    .project-row { flex-direction: column; align-items: flex-start; gap: 2rem; }
    .project-ascii { display: none; } /* Hide ascii on mobile */
    .footer-bottom { flex-direction: column; gap: 1rem; }
}

.pub-citation {
    font-size: 1rem;
    line-height: 1.6;
    margin-top: 1rem;
    max-width: 800px;
    font-family: var(--font-sans);
    color: rgba(24, 24, 24, 0.8);
}
.pub-citation strong {
    background-color: #000000;
    color: #F527C8;
    font-weight: 700;
    padding: 0.1rem 0.3rem;
}
.pub-links {
    margin-top: 1.5rem;
    display: flex;
    gap: 1rem;
}
.pub-button {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
    border: 1px solid var(--text-color);
    color: var(--text-color);
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.pub-button:hover {
    background-color: var(--text-color);
    color: var(--bg-color);
}

.pub-button svg {
    width: 20px;
    height: 20px;
    transition: fill 0.2s ease;
}

.spotify-btn {
    border-color: #1DB954;
    color: #1DB954;
}

.spotify-btn:hover {
    background-color: #1DB954;
    border-color: #1DB954;
    color: white;
}

.spotify-btn svg {
    fill: #1DB954;
}

.spotify-btn:hover svg {
    fill: white;
}

.youtube-btn {
    border-color: #FF0000;
    color: #FF0000;
}

.youtube-btn:hover {
    background-color: #FF0000;
    border-color: #FF0000;
    color: white;
}

.youtube-btn svg {
    fill: #FF0000;
}

.youtube-btn:hover svg {
    fill: white;
}
