/* Global Styles */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&family=Inter:wght@300;400;600&family=Outfit:wght@700;900&display=swap');

:root {
    --bg-color: #0a0a0a;
    --text-color: #f0f0f0;
    --accent-color: #d4af37;
    --accent-hover: #f9d668;
    --card-bg: #111;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
}

h1,
h2,
h3 {
    font-family: 'Outfit', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-color);
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.text-gold {
    color: var(--accent-color);
}

.text-center {
    text-align: center;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 1s ease-out forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 2rem;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0.9), transparent);
}

.logo {
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    font-size: 1.5rem;
    letter-spacing: 4px;
}

.nav-links a {
    margin-left: 2rem;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/hero.jpg');
    background-size: cover;
    background-position: center;
    filter: brightness(0.6);
    z-index: -1;
}

.hero-content {
    text-align: center;
    z-index: 1;
}

.h1-large {
    font-size: 5rem;
    line-height: 1;
    margin-bottom: 1rem;
    color: var(--text-color);
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.2rem;
    letter-spacing: 4px;
    color: var(--accent-color);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

/* Latest Releases */
.releases {
    padding: 8rem 0;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 4rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
}

.album-showcase {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 6rem;
}

.album-art {
    flex: 1;
    max-width: 500px;
}

.album-art img {
    width: 100%;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.album-info {
    flex: 1;
    text-align: left;
}

.album-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #fff;
}

.album-desc {
    color: #888;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.singles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.single-item {
    text-align: center;
}

.single-img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    margin-bottom: 1.5rem;
    transition: transform 0.4s ease, filter 0.4s ease;
    filter: grayscale(0.5);
}

.single-item:hover .single-img {
    transform: scale(1.02);
    filter: grayscale(0);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.single-title {
    font-size: 1.5rem;
}

/* Streaming Links */
.streaming-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.stream-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
    transition: transform 0.3s ease, filter 0.3s ease;
    opacity: 0.8;
}

.streaming-links a:hover .stream-icon {
    transform: scale(1.2);
    opacity: 1;
    filter: drop-shadow(0 0 5px var(--accent-color));
}

/* Merch Page */
.merch-header {
    height: 50vh;
    background: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4rem;
}

.merch-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 4rem;
    padding-bottom: 6rem;
}

.product-card {
    background: var(--card-bg);
    padding: 2px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
}

.product-image {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    background: #222;
}

.product-info {
    padding: 1.5rem;
    text-align: center;
}

.product-title {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.sold-out {
    color: #666;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 1rem;
    border: 1px solid #333;
    display: inline-block;
    padding: 0.5rem 1rem;
}

/* Footer */
footer {
    padding: 4rem 2rem;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: #555;
    font-size: 0.9rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.footer-socials {
    display: flex;
    gap: 1.5rem;
}

.social-icon {
    width: 65px;
    height: 65px;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.social-icon:hover {
    opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .h1-large {
        font-size: 3rem;
    }

    .album-showcase {
        flex-direction: column;
        gap: 2rem;
    }

    .album-info {
        text-align: center;
    }
}