/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-dark: #0a0a0a;
    --secondary-dark: #1a1a1a;
    --accent-rust: #8b4513;
    --accent-copper: #b87333;
    --accent-bronze: #cd7f32;
    --text-light: #e0e0e0;
    --text-dim: #888;
    --oil-dark: #1a0f0a;
    --oil-medium: #2d1810;
    --oil-light: #4a2519;
}

body {
    font-family: 'Oswald', sans-serif;
    background: var(--primary-dark);
    color: var(--text-light);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Animated Background Gears */
.gear-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    opacity: 0.1;
}

.gear {
    position: absolute;
    border: 3px solid var(--accent-copper);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

.gear::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60%;
    height: 60%;
    border: 2px solid var(--accent-copper);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.gear::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20%;
    height: 20%;
    background: var(--accent-copper);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.gear-1 {
    top: 10%;
    left: 10%;
    width: 120px;
    height: 120px;
    animation-duration: 15s;
}

.gear-2 {
    top: 20%;
    right: 15%;
    width: 80px;
    height: 80px;
    animation-duration: 25s;
    animation-direction: reverse;
}

.gear-3 {
    bottom: 30%;
    left: 20%;
    width: 150px;
    height: 150px;
    animation-duration: 30s;
}

.gear-4 {
    bottom: 10%;
    right: 10%;
    width: 100px;
    height: 100px;
    animation-duration: 20s;
    animation-direction: reverse;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(180deg, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0.8) 100%);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--accent-rust);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-text {
    font-family: 'Cinzel', serif;
    font-weight: 900;
    font-size: 1.5rem;
    color: var(--accent-copper);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    letter-spacing: 2px;
}

.logo-sub {
    font-family: 'Cinzel', serif;
    font-size: 0.8rem;
    color: var(--text-dim);
    letter-spacing: 4px;
    margin-top: -2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 400;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-copper);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--accent-copper);
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--accent-copper);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: radial-gradient(ellipse at center, var(--oil-medium) 0%, var(--primary-dark) 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 10px,
            rgba(184, 115, 51, 0.03) 10px,
            rgba(184, 115, 51, 0.03) 20px
        );
    pointer-events: none;
}

.hero-content {
    text-align: center;
    z-index: 2;
    padding: 2rem;
}

.hero-title {
    margin-bottom: 2rem;
}

.main-title {
    font-family: 'Cinzel', serif;
    font-weight: 900;
    font-size: clamp(3rem, 8vw, 6rem);
    color: var(--accent-copper);
    text-shadow: 
        3px 3px 6px rgba(0,0,0,0.8),
        0 0 20px rgba(184, 115, 51, 0.3);
    letter-spacing: 4px;
    margin-bottom: 0.5rem;
    animation: flicker 3s infinite alternate;
}

.subtitle {
    font-family: 'Cinzel', serif;
    font-weight: 600;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    color: var(--text-dim);
    letter-spacing: 6px;
    margin-bottom: 1rem;
}

.occult-symbol {
    font-size: 3rem;
    color: var(--accent-bronze);
    opacity: 0.7;
    animation: pulse 2s infinite;
}

@keyframes flicker {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.1); opacity: 1; }
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-dim);
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    border: 2px solid var(--accent-copper);
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--accent-copper);
    transition: left 0.3s ease;
    z-index: -1;
}

.btn-primary {
    background: var(--accent-copper);
    color: var(--primary-dark);
}

.btn-secondary {
    background: transparent;
    color: var(--accent-copper);
}

.btn:hover::before {
    left: 0;
}

.btn-secondary:hover {
    color: var(--primary-dark);
}

.oil-drip {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(0deg, var(--oil-dark) 0%, transparent 100%);
    opacity: 0.3;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

/* Section Styles */
.section-title {
    font-family: 'Cinzel', serif;
    font-weight: 900;
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--accent-copper);
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: 2px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: var(--accent-copper);
}

/* Artists Section */
.artists {
    background: linear-gradient(180deg, var(--primary-dark) 0%, var(--oil-dark) 100%);
}

.artists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.artist-card {
    background: linear-gradient(135deg, var(--secondary-dark) 0%, var(--oil-medium) 100%);
    border: 1px solid var(--accent-rust);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.artist-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(184, 115, 51, 0.1) 0%, transparent 70%);
    animation: rotate 10s linear infinite;
}

.artist-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-copper);
    box-shadow: 0 10px 30px rgba(184, 115, 51, 0.2);
}

.artist-image {
    width: 150px;
    height: 150px;
    margin: 0 auto 1.5rem;
    border: 3px solid var(--accent-copper);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--oil-dark);
    position: relative;
    z-index: 1;
}

.placeholder-image {
    font-size: 4rem;
}

.artist-card h3 {
    font-family: 'Cinzel', serif;
    font-weight: 600;
    font-size: 1.5rem;
    color: var(--accent-copper);
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.artist-genre {
    color: var(--text-dim);
    font-style: italic;
    position: relative;
    z-index: 1;
}

/* Releases Section */
.releases {
    background: var(--primary-dark);
}

.releases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.release-card {
    background: var(--secondary-dark);
    border: 1px solid var(--accent-rust);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.release-card:hover {
    transform: scale(1.05);
    border-color: var(--accent-copper);
    box-shadow: 0 10px 30px rgba(184, 115, 51, 0.3);
}

.release-cover {
    height: 200px;
    background: linear-gradient(135deg, var(--oil-dark) 0%, var(--oil-medium) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 2px solid var(--accent-rust);
}

.cover-placeholder {
    font-size: 4rem;
    opacity: 0.7;
}

.release-info {
    padding: 1.5rem;
}

.release-info h3 {
    font-family: 'Cinzel', serif;
    font-weight: 600;
    color: var(--accent-copper);
    margin-bottom: 0.5rem;
}

.release-artist {
    color: var(--text-light);
    margin-bottom: 0.25rem;
}

.release-catalog {
    color: var(--text-dim);
    font-size: 0.9rem;
    font-family: monospace;
}

/* Contact Section */
.contact {
    background: linear-gradient(180deg, var(--primary-dark) 0%, var(--oil-dark) 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info h3 {
    font-family: 'Cinzel', serif;
    font-weight: 600;
    color: var(--accent-copper);
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.contact-icon {
    font-size: 1.5rem;
    color: var(--accent-copper);
}

.contact-form {
    background: rgba(26, 26, 26, 0.8);
    padding: 2rem;
    border: 1px solid var(--accent-rust);
}

.contact-form h3 {
    font-family: 'Cinzel', serif;
    font-weight: 600;
    color: var(--accent-copper);
    margin-bottom: 2rem;
    text-align: center;
    font-size: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: var(--oil-dark);
    border: 1px solid var(--accent-rust);
    color: var(--text-light);
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-copper);
    box-shadow: 0 0 10px rgba(184, 115, 51, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-dim);
}

/* Footer */
.footer {
    background: var(--oil-dark);
    border-top: 2px solid var(--accent-rust);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--text-dim);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-copper);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    font-size: 1.5rem;
    color: var(--text-dim);
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: var(--accent-copper);
    transform: scale(1.2);
}

.footer-bottom {
    text-align: center;
    padding: 1rem 0;
    border-top: 1px solid var(--accent-rust);
    color: var(--text-dim);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--secondary-dark);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        border-top: 1px solid var(--accent-rust);
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }

    .gear {
        opacity: 0.05;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 2rem 1rem;
    }

    .nav-container {
        padding: 1rem;
    }

    .main-title {
        font-size: 2.5rem;
    }

    .subtitle {
        font-size: 1.5rem;
    }

    .artists-grid,
    .releases-grid {
        grid-template-columns: 1fr;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--primary-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-copper);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-bronze);
}
