/* ============================================
   ROCK ON RECORD - Recording Rock History As It Happens
   Black. Red. White. Grey depth.
   ============================================ */

/* --- RESET & VARIABLES --- */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --primary: #111111;
    --secondary: #cc0000;
    --accent: #ffffff;
    --light: #e8e8e8;
    --dark: #000000;
    --grey-dark: #1a1a1a;
    --grey-mid: #2a2a2a;
    --grey: #3d3d3d;
    --grey-light: #666666;
    --grey-muted: #999999;
    --timeline-line: #cc0000;
    --card-bg: #161616;
    --card-border: #2e2e2e;
    --card-shadow: rgba(0, 0, 0, 0.6);
    --red-glow: rgba(204, 0, 0, 0.15);
}

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    line-height: 1.6;
    color: var(--light);
    background: var(--dark);
}

a { text-decoration: none; color: inherit; }

/* --- PATTERNS (Minimalist) --- */
.halftone-bg {
    background: transparent;
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
header {
    background: var(--primary);
    color: var(--light);
    border-bottom: 5px solid var(--secondary);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(204, 0, 0, 0.3);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    text-shadow: none;
    font-style: normal;
    white-space: nowrap;
}

.logo .logo-sub {
    display: block;
    font-size: 9px;
    letter-spacing: 4px;
    color: #999;
    font-style: normal;
    text-shadow: none;
    margin-top: -2px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

nav a {
    color: var(--light);
    font-weight: bold;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 1.5px;
    transition: all 0.3s;
    position: relative;
    padding: 5px 0;
}

nav a:hover, nav a.active {
    color: var(--accent);
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--secondary);
    transition: width 0.3s;
}

nav a:hover::after, nav a.active::after {
    width: 100%;
}

/* Mobile menu toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--accent);
    font-size: 28px;
    cursor: pointer;
}

/* ============================================
   HERO SECTIONS
   ============================================ */
.hero {
    background:
        linear-gradient(to bottom, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.9) 100%),
        radial-gradient(ellipse at 20% 50%, rgba(204,0,0,0.08) 0%, transparent 60%),
        linear-gradient(160deg, #000000 0%, #1a1a1a 40%, #0d0d0d 70%, #000000 100%);
    color: var(--light);
    padding: 100px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Concentric vinyl arc — top left corner, like the groove artwork */
.hero::before {
    content: '';
    position: absolute;
    top: -280px;
    left: -280px;
    width: 900px;
    height: 900px;
    border-radius: 50%;
    border: 2px solid rgba(204, 0, 0, 0.18);
    box-shadow:
        0 0 0 30px rgba(204,0,0,0.06),
        0 0 0 60px rgba(204,0,0,0.04),
        0 0 0 100px rgba(204,0,0,0.025),
        0 0 0 150px rgba(204,0,0,0.015);
    pointer-events: none;
}

/* Red line at bottom + crowd fade at bottom */
.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, rgba(0,0,0,1) 0%, transparent 100%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 52px;
    font-weight: 900;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 3px;
    line-height: 1.1;
}

.hero h1 .highlight {
    color: var(--secondary);
    text-shadow: none;
}

.hero .tagline {
    font-size: 18px;
    margin-bottom: 30px;
    font-style: italic;
    color: var(--light-grey);
    letter-spacing: 1px;
}

.hero .era-badge {
    display: inline-block;
    background: var(--secondary);
    color: var(--light);
    padding: 8px 20px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    border: none;
    margin-bottom: 25px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

/* Page heroes (smaller) */
.page-hero {
    padding: 50px 20px;
}

.page-hero h1 {
    font-size: 42px;
}

/* ============================================
   QUOTE BOXES
   ============================================ */
.speech-bubble {
    background: rgba(255, 255, 255, 0.04);
    color: var(--light);
    padding: 25px;
    border-radius: 4px;
    border-left: 4px solid var(--secondary);
    position: relative;
    margin: 25px auto;
    max-width: 550px;
    font-weight: 500;
    font-size: 15px;
    box-shadow: none;
    line-height: 1.6;
}

.speech-bubble::after {
    display: none;
}

.speech-bubble.right::after {
    display: none;
}

.speech-bubble .attribution {
    display: block;
    font-size: 12px;
    margin-top: 12px;
    color: var(--grey);
    font-style: italic;
}

/* ============================================
   TEXT ACCENTS (Modern)
   ============================================ */
.comic-effect {
    display: inline-block;
    font-weight: 700;
    font-size: 18px;
    color: var(--secondary);
    text-shadow: none;
    transform: none;
}

.comic-burst {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px; height: 70px;
    background: var(--accent);
    border: 2px solid var(--dark);
    border-radius: 50%;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    color: var(--dark);
    box-shadow: none;
    transform: none;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-block;
    padding: 14px 35px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: all 0.3s;
    border: 3px solid var(--dark);
    cursor: pointer;
}

.btn-primary {
    background: var(--secondary);
    color: var(--light);
    border-color: var(--secondary);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.4);
    background: #bb0000;
}

.btn-outline {
    background: transparent;
    color: var(--accent);
    border-color: var(--accent);
}

.btn-outline:hover {
    background: var(--accent);
    color: var(--dark);
}

.btn-group {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 25px;
}

/* Hero social strip */
.hero-socials {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.15);
}

.hero-social-link {
    color: rgba(255,255,255,0.65);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    transition: color 0.3s;
    text-decoration: none;
}

.hero-social-link:hover {
    color: var(--accent);
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
    padding: 70px 20px;
}

.section-dark {
    background: var(--grey-dark);
    color: var(--light);
    border-top: 1px solid var(--grey-mid);
    border-bottom: 1px solid var(--grey-mid);
}

.section-parchment {
    background: var(--primary);
    color: var(--light);
}

/* Alternating section for visual rhythm */
.section-alt {
    background: var(--grey-mid);
    color: var(--light);
    border-top: 1px solid var(--grey);
    border-bottom: 1px solid var(--grey);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    margin-bottom: 50px;
}

.section-title {
    font-size: 38px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-left: 8px solid var(--secondary);
    padding-left: 20px;
    line-height: 1.2;
}

.section-title .accent { color: var(--secondary); }
.section-dark .section-title { border-left-color: var(--secondary); }
.section-dark .section-title .accent { color: var(--secondary); }

.section-subtitle {
    font-size: 14px;
    color: #888;
    margin-top: 10px;
    padding-left: 28px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.section-dark .section-subtitle { color: #aaa; }

/* ============================================
   TIMELINE (History Theme - Core Feature)
   ============================================ */
.timeline {
    position: relative;
    padding: 40px 0;
    background: transparent;
    color: var(--light);
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0; bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, transparent, var(--secondary) 10%, var(--secondary) 90%, transparent);
    transform: translateX(-50%);
    box-shadow: 0 0 12px rgba(204, 0, 0, 0.4);
}

.timeline-era {
    text-align: center;
    position: relative;
    z-index: 2;
    margin: 40px 0 30px;
}

.timeline-era span {
    display: inline-block;
    background: var(--secondary);
    color: var(--light);
    padding: 10px 28px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    border: none;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
    padding-right: calc(50% + 40px);
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
    padding-left: calc(50% + 40px);
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 20px;
    width: 14px; height: 14px;
    background: var(--secondary);
    border: 2px solid #ffffff;
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 2;
    box-shadow: 0 0 8px rgba(204, 0, 0, 0.5);
}

.timeline-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-top: 3px solid var(--secondary);
    border-radius: 6px;
    overflow: hidden;
    transition: all 0.3s;
    box-shadow: 0 4px 20px var(--card-shadow);
    width: 100%;
}

.timeline-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px var(--card-shadow), 0 0 20px var(--red-glow);
    border-top-color: var(--secondary);
    border-color: var(--grey);
}

.timeline-card .card-thumb {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    background: #111;
    overflow: hidden;
}

.timeline-card .card-thumb img {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.timeline-card:hover .card-thumb img {
    transform: scale(1.05);
}

.timeline-card .play-overlay {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 60px; height: 60px;
    background: rgba(204, 0, 0, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--accent);
    transition: all 0.3s;
}

.timeline-card:hover .play-overlay {
    background: var(--secondary);
    transform: translate(-50%, -50%) scale(1.1);
}

.play-overlay::after {
    content: '';
    width: 0; height: 0;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    border-left: 20px solid var(--light);
    margin-left: 4px;
}

.timeline-card .card-info {
    padding: 18px;
    background: linear-gradient(135deg, var(--grey-dark) 0%, var(--card-bg) 100%);
}

.timeline-card .card-date {
    font-size: 11px;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: bold;
    margin-bottom: 6px;
}

.timeline-card .card-title {
    font-size: 14px;
    font-weight: bold;
    color: var(--light);
    line-height: 1.4;
    margin-bottom: 8px;
}

.timeline-card .card-duration {
    font-size: 11px;
    color: #888;
}

/* ============================================
   INTERVIEW CARDS GRID (Homepage)
   ============================================ */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--primary);
    color: var(--light);
    border: 3px solid var(--secondary);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s;
    box-shadow: 0 6px 0 var(--card-shadow);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 14px 0 var(--card-shadow);
    border-color: var(--accent);
}

.feature-card .card-thumb {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    background: #111;
    overflow: hidden;
}

.feature-card .card-thumb img {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
}

.feature-card .card-label {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--secondary);
    color: var(--light);
    padding: 4px 12px;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: bold;
    border: 2px solid var(--accent);
}

.feature-card .play-overlay {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 55px; height: 55px;
    background: rgba(204, 0, 0, 0.85);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--accent);
    opacity: 0;
    transition: all 0.3s;
}

.feature-card:hover .play-overlay { opacity: 1; }

.feature-card .play-overlay::after {
    content: '';
    width: 0; height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 16px solid var(--light);
    margin-left: 3px;
}

.feature-card .card-body {
    padding: 20px;
}

.feature-card .card-date {
    font-size: 11px;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: bold;
}

.feature-card h3 {
    font-size: 16px;
    margin: 8px 0;
    line-height: 1.4;
}

.feature-card .card-meta {
    font-size: 12px;
    color: #888;
}

/* ============================================
   TEAM SECTION
   ============================================ */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.team-member {
    text-align: center;
    border: 3px solid var(--secondary);
    padding: 40px 30px;
    border-radius: 8px;
    background: linear-gradient(135deg, #222 0%, var(--primary) 100%);
    position: relative;
}

.team-member .member-icon {
    width: 90px; height: 90px;
    background: var(--secondary);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    border: 4px solid var(--accent);
    box-shadow: 0 0 15px rgba(204, 0, 0, 0.3);
}

.team-member h3 {
    font-size: 26px;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 5px;
}

.team-member .role {
    color: var(--secondary);
    font-weight: bold;
    font-style: italic;
    font-size: 14px;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.team-member p {
    font-size: 14px;
    line-height: 1.8;
    color: #ccc;
}

/* ============================================
   SOCIAL SECTION
   ============================================ */
.socials-section {
    background: linear-gradient(135deg, var(--secondary) 0%, #8b0000 100%);
    color: var(--light);
    padding: 50px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.socials-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: transparent;
}

.socials-section .container { position: relative; z-index: 2; }

.socials-section h2 {
    font-size: 32px;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 10px;
    text-shadow: 3px 3px 0 rgba(0,0,0,0.3);
}

.socials-section p {
    font-size: 16px;
    margin-bottom: 25px;
    opacity: 0.9;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--dark);
    color: var(--light);
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid var(--accent);
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.4);
    background: var(--accent);
    color: var(--dark);
}

.social-link .icon {
    font-size: 20px;
}

/* ============================================
   CONTACT FORM
   ============================================ */
.contact-form {
    max-width: 650px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 22px;
}

.form-group label {
    display: block;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
    margin-bottom: 8px;
    color: var(--accent);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px;
    background: #222;
    border: 2px solid #444;
    border-radius: 4px;
    color: var(--light);
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 10px rgba(204, 0, 0, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
    background: var(--dark);
    color: #888;
    text-align: center;
    padding: 25px 20px;
    border-top: 4px solid var(--secondary);
    font-size: 12px;
}

footer .footer-brand {
    color: var(--accent);
    font-weight: bold;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
    .timeline::before { left: 20px; }
    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        flex-direction: row;
        padding-right: 0;
        padding-left: 55px;
    }
    .timeline-dot {
        left: 20px;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 12px;
    }
    nav ul { gap: 15px; justify-content: center; }
    .hero h1 { font-size: 32px; }
    .page-hero h1 { font-size: 28px; }
    .section-title { font-size: 26px; }
    .section { padding: 50px 15px; }
    .card-grid { grid-template-columns: 1fr; }
}
