/* Ghost Snappeh Global Styles */
:root {
    --charcoal: #121212;
    --matte-black: #080808;
    --ghost-white: #F8F8FF;
    --max-width: 1200px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--matte-black);
    color: var(--ghost-white);
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Georgia', 'Times New Roman', serif;
    margin-bottom: 0.5em;
}

.container {
    width: 90%;
    max-width: var(--max-width);
    margin: 0 auto;
}

/* Navigation */
.site-header {
    background-color: var(--charcoal);
    padding: 1rem 0;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 1rem;
}

.nav-links a {
    color: var(--ghost-white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--charcoal);
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
    color: var(--ghost-white);
}

/* Hero */
.hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 4rem 1rem;
    background: url('/assets/img/hero-placeholder.jpg') center/cover no-repeat;
}

.hero h1 {
    font-size: 3rem;
}

.hero p {
    max-width: 600px;
    margin-top: 1rem;
}

/* Latest Release */
.latest-release {
    background-color: var(--charcoal);
    padding: 2rem 1rem;
    margin-top: 2rem;
    text-align: center;
}

/* Music Grid */
.music-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

/* Fade-in animation */
.fade-in {
    animation: fadeIn 0.8s ease-in both;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Footer */
.site-footer {
    background-color: var(--charcoal);
    padding: 1rem 0;
    text-align: center;
    font-size: 0.875rem;
}
