:root {
    --bg-dark: #1a1a1b;
    --bg-card: #272729;
    --text-main: #e0e0e0;
    --text-dim: #a0a0a0;
    --monkey-gold: #a67c00; /* From monkey crown */
    --bell-amber: #e7b467;  /* From bell icon */
    --white: #ffffff;
    --separator: #555;
}

@font-face {
    font-family: 'Poornut';
    src: url('./fonts/Poornut.woff2') format('woff2'),
        url('./fonts/Poornut.woff') format('woff'),
        url('./fonts/Poornut.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}



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

html,body {
    height: 100%;
    margin: 0;
}

body {
    display: flex;
    flex-direction: column;
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    scroll-behavior: smooth;
}

header {
    flex: 1 0 auto;
    display: flex;
    justify-content: center;
    width: 100%;
}

header#hub {
    align-items: center;
}

header#hub .container {
    width: 100%;
}

.highlight {
    color: var(--bell-amber);
}

.text-dim {
    color: var(--text-dim);
}


.hero-logo img {
    width: 380px;
    padding-bottom: 20px;
}

.hero-logo h1 {
    font-family: 'Poornut';
    font-size: 4.0rem;
    letter-spacing: 3px;
    color: var(--white);
    transform: scaleY(1.15);
}

h1, h2, h3 {
    font-family: 'Outfit', sans-serif;
    color: var(--white);
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.spiral-icon {
    line-height: 0.5;
    font-size: 2.5rem;
    color: var(--monkey-gold);
    display: inline-block;
    /*margin-bottom: 15px;*/
    font-family: 'Outfit', sans-serif;
    /* Optional: a subtle rotation to hint at the dizziness */
    transform: rotate(-15deg);
}

/* HERO SECTION */
.hero-section { padding: 80px 0; }
.main-logo { width: 150px; margin-bottom: 20px; }
.center-text { text-align: center; }

h1 { font-size: 3rem; margin-bottom: 10px; }
.subtitle { font-size: 1.2rem; max-width: 600px; margin: 0 auto 40px; }

/* PROJECT GRID */
.project-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.project-card:only-child {
    grid-column: 1 / -1;
    max-width: 470px;
    margin: 0 auto;
    width: 100%;
}

.project-card {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 15px;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s, border 0.3s;
    border: 1px solid transparent;
}

.project-card:hover {
    transform: translateY(-5px);
    border-color: var(--monkey-gold);
}

.project-card img { width: 60px; margin-bottom: 10px; }

.btn-text {
    display: inline-block;
    margin-top: 20px;
    color: var(--bell-amber);
    font-weight: bold;
}

.placeholder { opacity: 0.6; cursor: default; }
.tag {
    background: #444;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.7rem;
    text-transform: uppercase;
}

/* FOOTER */
footer {
    padding: 20px 0;
    background: #111;
    margin-top: 20px;
    font-size: 0.8rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
}

.footer-links a {
    margin-left: 20px;
    text-decoration: none;
    color: inherit;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    h1 { font-size: 2.2rem; }
    .project-grid { grid-template-columns: 1fr; }
}
