/* StreetwearPup - Modern Streetwear Design (No Images) */

:root {
    --primary-bg: #0a0a0a;
    --secondary-bg: #1a1a1a;
    --accent-color: #f0f0f0;
    --text-color: #e0e0e0;
    --dim-text: #888888;
    --highlight: #ff3e3e; /* Streetwear red accent */
    --border-color: #333333;
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-mono: 'JetBrains Mono', 'Courier New', monospace;
}

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

body {
    background-color: var(--primary-bg);
    color: var(--text-color);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4 {
    text-transform: uppercase;
    letter-spacing: -0.02em;
    font-weight: 900;
    color: var(--accent-color);
}

a {
    color: var(--highlight);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    text-decoration: underline;
    opacity: 0.8;
}

/* Layout */
.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header & Nav */
header {
    padding: 2rem 0;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: -1px;
    border: 2px solid var(--accent-color);
    padding: 0.2rem 0.8rem;
}

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

.nav-links a {
    color: var(--dim-text);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
}

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

/* Hero Section */
.hero {
    padding: 6rem 0;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.hero h1 {
    font-size: 4rem;
    line-height: 1;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.2rem;
    color: var(--dim-text);
    max-width: 600px;
    margin: 0 auto;
}

/* Article Styling */
.main-content {
    padding: 4rem 0;
}

article {
    max-width: 800px;
    margin: 0 auto;
}

article h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

article p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--text-color);
}

article h2 {
    margin: 3rem 0 1.5rem;
    font-size: 1.8rem;
}

article strong {
    color: var(--accent-color);
}

/* Footer */
footer {
    padding: 4rem 0;
    background: var(--secondary-bg);
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-links a {
    color: var(--dim-text);
    font-size: 0.8rem;
}

.copyright {
    color: var(--dim-text);
    font-size: 0.8rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    .nav-links {
        display: none; /* In a real site we'd add a burger menu, but keeping it simple for now */
    }
    .container {
        padding: 0 1.5rem;
    }
}

/* Utility: Streetwear Accents */
.tag {
    display: inline-block;
    background: var(--highlight);
    color: white;
    padding: 0.2rem 0.5rem;
    font-size: 0.7rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-divider {
    height: 1px;
    background: var(--border-color);
    margin: 4rem 0;
}
