/* ============================================
   HARDKORE HITZ - Premium Music Label Website
   Est. 2004 - New York City
   ============================================ */

/* CSS Variables */
:root {
    --black: #000000;
    --white: #ffffff;
    --grey: #1a1a1a;
    --grey-light: #2a2a2a;
    --grey-text: #888888;
    --navy: #0a1628;
    --navy-light: #152238;
    --red: #8b0000;
    --red-bright: #a51c1c;

    --font-display: 'Bebas Neue', sans-serif;
    --font-body: 'Inter', sans-serif;

    --container-width: 1400px;
    --section-padding: 120px;
    --transition: all 0.3s ease;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--black);
    color: var(--white);
    line-height: 1.6;
    font-weight: 300;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--grey-text);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 0.95;
    letter-spacing: 0.02em;
}

/* Utility Classes */
.section-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 40px;
}

.section-tag {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--grey-text);
    margin-bottom: 24px;
}

.section-title {
    font-size: clamp(48px, 8vw, 120px);
    margin-bottom: 40px;
    color: var(--white);
}

.section-body {
    font-size: 16px;
    font-weight: 300;
    color: var(--grey-text);
    max-width: 600px;
    margin-bottom: 24px;
    line-height: 1.8;
}

/* Buttons */
.btn {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 18px;
    letter-spacing: 0.1em;
    padding: 18px 48px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background-color: var(--white);
    color: var(--black);
}

.btn-primary:hover {
    background-color: var(--red);
    color: var(--white);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 1px solid var(--grey-light);
}

.btn-secondary:hover {
    background-color: var(--grey-light);
    color: var(--white);
}

.btn-large {
    padding: 24px 64px;
    font-size: 24px;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 32px 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.9) 0%, transparent 100%);
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-family: var(--font-display);
    font-size: 32px;
    letter-spacing: 0.1em;
    color: var(--white);
}

.nav-logo:hover {
    color: var(--white);
}

.nav-links {
    display: flex;
    gap: 48px;
}

.nav-links a {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--grey-text);
}

.nav-links a:hover {
    color: var(--white);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    background: var(--black);
    background-image:
        radial-gradient(ellipse at 20% 80%, rgba(139, 0, 0, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(10, 22, 40, 0.3) 0%, transparent 50%);
    padding: 0 40px;
}

.hero-content {
    max-width: 1200px;
}

.hero-tagline {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.3em;
    color: var(--grey-text);
    margin-bottom: 32px;
}

.hero-title {
    font-size: clamp(80px, 15vw, 200px);
    line-height: 0.9;
    margin-bottom: 32px;
    background: linear-gradient(180deg, var(--white) 0%, var(--grey-text) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 20px;
    font-weight: 300;
    color: var(--grey-text);
    margin-bottom: 48px;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 48px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.hero-scroll span {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--grey-text);
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--grey-text), transparent);
}

/* Stats Section */
.stats {
    background-color: var(--navy);
    padding: 80px 0;
}

.stats-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 64px;
    display: block;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--grey-text);
}

/* Legacy Section */
.legacy {
    padding: var(--section-padding) 0;
    background-color: var(--black);
}

.legacy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.legacy-content {
    max-width: 600px;
}

.legacy-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    width: 100%;
    max-width: 500px;
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--grey) 0%, var(--grey-light) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: var(--font-display);
}

.image-placeholder span:first-child {
    font-size: 180px;
    line-height: 0.8;
    color: var(--white);
}

.image-placeholder-text {
    font-size: 48px;
    color: var(--grey-text);
    letter-spacing: 0.3em;
}

.image-placeholder-alt {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
}

/* Quote Section */
.quote-section {
    padding: var(--section-padding) 0;
    background-color: var(--grey);
    text-align: center;
}

.quote {
    font-family: var(--font-display);
    font-size: clamp(36px, 6vw, 80px);
    color: var(--white);
    margin-bottom: 32px;
}

.quote-attribution {
    font-size: 13px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--grey-text);
}

/* Services Section */
.services {
    padding: var(--section-padding) 0;
    background-color: var(--black);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    margin-top: 80px;
}

.service-card {
    padding: 48px;
    background-color: var(--grey);
    transition: var(--transition);
}

.service-card:hover {
    background-color: var(--grey-light);
}

.service-number {
    font-family: var(--font-display);
    font-size: 48px;
    color: var(--red);
    display: block;
    margin-bottom: 24px;
}

.service-title {
    font-size: 32px;
    margin-bottom: 16px;
}

.service-desc {
    font-size: 15px;
    font-weight: 300;
    color: var(--grey-text);
    line-height: 1.8;
}

/* Roster Section */
.roster {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, var(--black) 0%, var(--navy) 50%, var(--black) 100%);
    text-align: center;
}

.roster-intro {
    font-size: 18px;
    font-weight: 300;
    color: var(--grey-text);
    max-width: 600px;
    margin: 0 auto 80px;
}

.roster-marquee {
    overflow: hidden;
    margin-bottom: 80px;
    padding: 40px 0;
    background-color: var(--grey);
}

.marquee-content {
    display: flex;
    gap: 48px;
    animation: marquee 20s linear infinite;
    white-space: nowrap;
}

.marquee-content span {
    font-family: var(--font-display);
    font-size: 48px;
    color: var(--white);
}

.marquee-dot {
    width: 12px;
    height: 12px;
    background-color: var(--red);
    border-radius: 50%;
    flex-shrink: 0;
    align-self: center;
}

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.roster-cta {
    margin-top: 48px;
}

/* Network Section */
.network {
    padding: var(--section-padding) 0;
    background-color: var(--black);
}

.network-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.network-content {
    max-width: 600px;
}

.network-list {
    margin-top: 40px;
}

.network-list li {
    font-size: 15px;
    font-weight: 400;
    color: var(--white);
    padding: 16px 0;
    border-bottom: 1px solid var(--grey-light);
    display: flex;
    align-items: center;
    gap: 16px;
}

.network-list li::before {
    content: '';
    width: 8px;
    height: 8px;
    background-color: var(--red);
    flex-shrink: 0;
}

.network-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* CTA Section */
.cta-section {
    padding: 160px 0;
    background: linear-gradient(135deg, var(--red) 0%, #5a0000 100%);
    text-align: center;
}

.cta-title {
    font-size: clamp(48px, 8vw, 100px);
    margin-bottom: 32px;
}

.cta-text {
    font-size: 18px;
    font-weight: 300;
    color: rgba(255,255,255,0.8);
    max-width: 600px;
    margin: 0 auto 48px;
}

.cta-section .btn-primary {
    background-color: var(--white);
    color: var(--black);
}

.cta-section .btn-primary:hover {
    background-color: var(--black);
    color: var(--white);
}

/* Connect Section */
.connect {
    padding: var(--section-padding) 0;
    background-color: var(--grey);
}

.connect-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.connect-details {
    margin-top: 48px;
}

.connect-item {
    margin-bottom: 32px;
}

.connect-label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--grey-text);
    margin-bottom: 8px;
}

.connect-item a,
.connect-item span {
    font-size: 18px;
    font-weight: 300;
    color: var(--white);
}

.connect-item a:hover {
    color: var(--red-bright);
}

.connect-form-container {
    display: flex;
    align-items: center;
}

.connect-form {
    width: 100%;
}

.connect-form input,
.connect-form select,
.connect-form textarea {
    width: 100%;
    padding: 20px 24px;
    margin-bottom: 16px;
    background-color: var(--grey-light);
    border: none;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 300;
    transition: var(--transition);
}

.connect-form input::placeholder,
.connect-form textarea::placeholder {
    color: var(--grey-text);
}

.connect-form input:focus,
.connect-form select:focus,
.connect-form textarea:focus {
    outline: none;
    background-color: var(--navy);
}

.connect-form select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23888888' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
}

.connect-form select option {
    background-color: var(--grey);
    color: var(--white);
}

.connect-form textarea {
    resize: vertical;
    min-height: 120px;
}

.connect-form .btn {
    width: 100%;
    margin-top: 8px;
}

/* Footer */
.footer {
    padding: 80px 0 48px;
    background-color: var(--black);
}

.footer-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 40px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--grey-light);
    margin-bottom: 48px;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 48px;
    letter-spacing: 0.1em;
}

.footer-tagline {
    font-size: 14px;
    font-weight: 300;
    color: var(--grey-text);
    margin-top: 8px;
}

.footer-social {
    display: flex;
    gap: 32px;
}

.footer-social a {
    font-family: var(--font-display);
    font-size: 18px;
    color: var(--grey-text);
}

.footer-social a:hover {
    color: var(--white);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-legal {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.1em;
    color: var(--grey-text);
}

.footer-copyright {
    font-size: 12px;
    font-weight: 300;
    color: var(--grey-text);
}

/* Responsive */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .legacy-grid,
    .network-grid,
    .connect-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .legacy-image,
    .network-image {
        order: -1;
    }

    .image-placeholder {
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        padding: 16px 40px;
    }

    .btn-large {
        padding: 20px 48px;
        font-size: 20px;
    }

    .stats-container {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .stat-number {
        font-size: 48px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .service-card {
        padding: 32px;
    }

    .marquee-content span {
        font-size: 32px;
    }

    .footer-top {
        flex-direction: column;
        gap: 32px;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .section-container {
        padding: 0 24px;
    }

    .nav-container {
        padding: 0 24px;
    }

    .stats-container {
        grid-template-columns: 1fr;
    }

    .image-placeholder span:first-child {
        font-size: 120px;
    }

    .image-placeholder-text {
        font-size: 32px;
    }
}

/* Selection */
::selection {
    background-color: var(--red);
    color: var(--white);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--black);
}

::-webkit-scrollbar-thumb {
    background: var(--grey-light);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--grey-text);
}
