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

/* CSS Variables */
:root {
    --black: #000000;
    --black-soft: #0a0a0a;
    --white: #ffffff;
    --white-dim: rgba(255, 255, 255, 0.7);

    /* Wine Reds */
    --wine: #4a0020;
    --wine-mid: #6b1535;
    --wine-bright: #8b1a3a;
    --wine-glow: #a82050;

    /* Navy Blues */
    --navy-deep: #06101f;
    --navy: #0a1628;
    --navy-mid: #0f1f3a;
    --navy-light: #162844;

    /* Greys */
    --grey-dark: #111111;
    --grey: #1a1a1a;
    --grey-mid: #2a2a2a;
    --grey-text: #888888;

    --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(--wine-bright);
    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(--wine-bright);
    color: var(--white);
}

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

.btn-secondary:hover {
    background-color: var(--wine);
    border-color: var(--wine);
    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: rgba(10, 22, 40, 0.95);
}

.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(--wine-bright);
}

/* ============================================
   HERO — Navy blue
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    background: var(--navy);
    padding: 0 40px;
}

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

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

.hero-title {
    font-size: clamp(80px, 15vw, 200px);
    line-height: 0.9;
    margin-bottom: 32px;
    color: var(--white);
}

.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: var(--wine-bright);
}

/* ============================================
   LEGACY — Deep navy background
   ============================================ */
.legacy {
    padding: var(--section-padding) 0;
    background: var(--navy-deep);
    border-top: 1px solid rgba(107, 21, 53, 0.2);
}

.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: var(--wine);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: var(--font-display);
    border: 1px solid rgba(139, 26, 58, 0.3);
}

.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: var(--navy-mid);
    border: 1px solid rgba(22, 40, 68, 0.5);
}

/* ============================================
   QUOTE — Wine red background, bold statement
   ============================================ */
.quote-section {
    padding: var(--section-padding) 0;
    background: var(--wine);
    text-align: center;
    border-top: 1px solid rgba(168, 32, 80, 0.3);
    border-bottom: 1px solid rgba(168, 32, 80, 0.3);
}

.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: rgba(255, 255, 255, 0.5);
}

/* ============================================
   SERVICES — Black with wine-accented cards
   ============================================ */
.services {
    padding: var(--section-padding) 0;
    background: var(--black);
}

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

.service-card {
    padding: 48px;
    background-color: var(--grey-dark);
    transition: var(--transition);
    border-left: 3px solid transparent;
}

.service-card:hover {
    background-color: var(--grey);
    border-left-color: var(--wine-bright);
}

.service-number {
    font-family: var(--font-display);
    font-size: 48px;
    color: var(--wine-bright);
    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 — Navy gradient, genre marquee
   ============================================ */
.roster {
    padding: var(--section-padding) 0;
    background: var(--navy);
    text-align: center;
    border-top: 1px solid rgba(22, 40, 68, 0.5);
}

.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: rgba(74, 0, 32, 0.2);
    border-top: 1px solid rgba(139, 26, 58, 0.2);
    border-bottom: 1px solid rgba(139, 26, 58, 0.2);
}

.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(--wine-bright);
    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 — Dark wine/black atmosphere
   ============================================ */
.network {
    padding: var(--section-padding) 0;
    background: var(--black-soft);
}

.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-mid);
    display: flex;
    align-items: center;
    gap: 16px;
}

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

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

/* ============================================
   CTA — Bold wine-to-dark gradient
   ============================================ */
.cta-section {
    padding: 160px 0;
    background: var(--wine-mid);
    text-align: center;
    border-top: 1px solid rgba(168, 32, 80, 0.3);
}

.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 — Deep navy, card-based layout
   ============================================ */
.connect {
    padding: var(--section-padding) 0;
    background: var(--navy-deep);
    border-top: 1px solid rgba(22, 40, 68, 0.5);
}

.connect-layout {
    max-width: 640px;
}

.connect-intro {
    font-size: 18px;
    font-weight: 300;
    color: var(--grey-text);
    line-height: 1.8;
    margin-bottom: 40px;
}

.connect-email {
    display: inline-block;
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 42px);
    color: var(--wine-bright);
    margin-bottom: 48px;
    border-bottom: 2px solid transparent;
    transition: var(--transition);
}

.connect-email:hover {
    color: var(--wine-glow);
    border-bottom-color: var(--wine-glow);
}

.connect-reasons {
    list-style: none;
    margin-bottom: 48px;
}

.connect-reasons li {
    font-size: 15px;
    font-weight: 300;
    color: var(--grey-text);
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    line-height: 1.7;
}

.connect-reasons li:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.connect-reasons li strong {
    color: var(--white);
    font-weight: 500;
}

.connect-location {
    font-size: 14px;
    font-weight: 300;
    color: var(--grey-text);
    letter-spacing: 0.1em;
}

/* ============================================
   FOOTER — Black, clean
   ============================================ */
.footer {
    padding: 80px 0 48px;
    background-color: var(--black);
    border-top: 1px solid var(--grey);
}

.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-mid);
    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(--wine-bright);
}

.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;
    }

    .legacy-grid,
    .network-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;
    }

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

    .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;
    }

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

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

}

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

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

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

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

::-webkit-scrollbar-thumb:hover {
    background: var(--wine-mid);
}
