/* MAAP Real Talk Show - Styles
   Typography: Bebas Neue (display) + Source Sans 3 (body)
   Palette: Dark theme with red/gold accents
*/

:root {
    /* Colors */
    --color-bg: #0a0a0a;
    --color-bg-elevated: #141414;
    --color-bg-card: #1a1a1a;
    --color-text: #f5f5f5;
    --color-text-muted: #a0a0a0;
    --color-primary: #c41e3a;
    --color-primary-dark: #9a1830;
    --color-accent: #d4af37;
    --color-border: #2a2a2a;

    /* Typography - with system fallbacks for privacy modes */
    --font-display: 'Bebas Neue', Impact, 'Arial Black', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Source Sans 3', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;

    /* Layout */
    --max-width: 1200px;
    --header-height: 80px;

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-bg);
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

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

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: 1.25rem; }

p {
    font-weight: 400;
}

/* Container */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-border);
    z-index: 1000;
}

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

.logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
    gap: 0.35rem;
    align-items: flex-start;
}

.logo-maap {
    display: block;
    width: 78px;
    height: 78px;
    background: url('/assets/logo.jpg') center/contain no-repeat;
    text-indent: -9999px;
    overflow: hidden;
    white-space: nowrap;
}

.logo-tagline {
    font-family: var(--font-body);
    font-size: 0.68rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.nav-links {
    display: flex;
    gap: var(--space-lg);
}

.nav-links a {
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
    transition: color var(--transition-fast);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--color-text);
}

.nav-social {
    display: flex;
    gap: var(--space-sm);
}

.nav-social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    transition: color var(--transition-fast);
}

.nav-social a:hover {
    color: var(--color-primary);
}

.nav-social svg {
    width: 18px;
    height: 18px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--color-text);
    transition: var(--transition-fast);
}

/* Hero */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: calc(var(--header-height) + var(--space-xl)) var(--space-md) var(--space-xl);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(10, 10, 10, 0.86) 0%, rgba(26, 10, 16, 0.74) 50%, rgba(10, 10, 10, 0.9) 100%),
        url('/assets/hero.jpg') center/cover no-repeat;
    z-index: -1;
}

.hero-background::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 30%, rgba(196, 30, 58, 0.15) 0%, transparent 60%);
}

.hero-content {
    max-width: var(--max-width);
    margin: 0 auto;
    width: 100%;
    padding: 0 var(--space-md);
}

.hero-eyebrow {
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-accent);
    margin-bottom: var(--space-md);
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    margin-bottom: var(--space-md);
    background: linear-gradient(135deg, var(--color-text) 0%, var(--color-text-muted) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text {
    font-size: 1.25rem;
    color: var(--color-text-muted);
    max-width: 600px;
    margin-bottom: var(--space-xl);
}

.hero-cta {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: var(--space-2xl);
    margin-top: var(--space-3xl);
    max-width: var(--max-width);
    margin-left: auto;
    margin-right: auto;
    padding: 0 var(--space-md);
    width: 100%;
}

.stat {
    text-align: left;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--color-primary);
    display: block;
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.875rem 1.75rem;
    border: none;
    border-radius: 0;
    cursor: pointer;
    transition: all var(--transition-fast);
}

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

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

.btn-outline {
    background: transparent;
    color: var(--color-text);
    border: 1px solid var(--color-border);
}

.btn-outline:hover {
    border-color: var(--color-text);
    background: rgba(255, 255, 255, 0.05);
}

.btn-sm {
    padding: 0.625rem 1.25rem;
    font-size: 0.75rem;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-full {
    width: 100%;
}

/* Sections */
section {
    padding: var(--space-3xl) 0;
}

.section-title {
    text-align: center;
    margin-bottom: var(--space-xl);
    color: var(--color-text);
}

.section-subtitle {
    text-align: center;
    color: var(--color-text-muted);
    margin-top: calc(var(--space-md) * -1);
    margin-bottom: var(--space-xl);
}

.section-cta {
    text-align: center;
    margin-top: var(--space-xl);
}

/* Page Hero */
.page-hero {
    padding: calc(var(--header-height) + var(--space-3xl)) 0 var(--space-2xl);
    background: linear-gradient(135deg, var(--color-bg) 0%, #1a0a10 100%);
    text-align: center;
}

.page-hero h1 {
    margin-bottom: var(--space-md);
}

.page-hero-text {
    font-size: 1.25rem;
    color: var(--color-text-muted);
}

/* Featured Section */
.featured-section {
    background: var(--color-bg-elevated);
}

.featured-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.featured-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    overflow: hidden;
    transition: border-color var(--transition-base);
}

.featured-card:hover {
    border-color: var(--color-primary);
}

.featured-main {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.featured-image {
    aspect-ratio: 16/9;
    background: var(--color-bg);
}

.featured-main .featured-image {
    aspect-ratio: auto;
}

.featured-main .image-placeholder {
    background: url('/assets/featured-1.jpg') center/cover no-repeat;
}

.featured-grid .featured-card:nth-child(2) .image-placeholder {
    background: url('/assets/featured-2.jpg') center/cover no-repeat;
}

.featured-grid .featured-card:nth-child(3) .image-placeholder {
    background: url('/assets/featured-3.jpg') center/cover no-repeat;
}

.featured-content {
    padding: var(--space-lg);
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.featured-tag {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-primary);
}

.featured-content h3 {
    font-size: 1.5rem;
}

.featured-content p {
    color: var(--color-text-muted);
    font-size: 0.9375rem;
}

/* Image Placeholders */
.image-placeholder {
    width: 100%;
    height: 100%;
    min-height: 200px;
    background: linear-gradient(135deg, var(--color-bg-card) 0%, var(--color-bg-elevated) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.image-placeholder span {
    background: rgba(10, 10, 10, 0.66);
    padding: 0.3rem 0.5rem;
    border-radius: 4px;
}

.image-placeholder.large {
    min-height: 400px;
}

/* About Preview */
.about-preview {
    background: var(--color-bg);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.about-image .image-placeholder {
    aspect-ratio: 4/5;
    background: url('/assets/george-profile.jpg') center/cover no-repeat;
}

.about-content h2 {
    margin-bottom: var(--space-sm);
}

.about-lead {
    font-size: 1.25rem;
    color: var(--color-accent);
    margin-bottom: var(--space-md);
}

.about-content > p {
    color: var(--color-text-muted);
    margin-bottom: var(--space-md);
}

.about-credentials {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin: var(--space-lg) 0;
    padding: var(--space-lg) 0;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.credential-value {
    font-family: var(--font-display);
    font-size: 1.25rem;
    display: block;
}

.credential-label {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

/* Platforms Section */
.platforms-section {
    background: var(--color-bg-elevated);
}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
}

.platform-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-lg);
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    transition: all var(--transition-base);
}

.platform-card:hover {
    border-color: var(--color-primary);
    transform: translateY(-4px);
}

.platform-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.platform-icon svg {
    width: 32px;
    height: 32px;
}

.platform-icon.rumble { color: #85c742; }
.platform-icon.bitchute { color: #ef4136; }
.platform-icon.twitter { color: var(--color-text); }
.platform-icon.instagram { color: #e4405f; }
.platform-icon.imdb { color: #f5c518; }

.platform-name {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, #1a0a10 100%);
    text-align: center;
}

.cta-content h2 {
    margin-bottom: var(--space-md);
}

.cta-content p {
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto var(--space-lg);
}

/* Bio Section */
.bio-section {
    background: var(--color-bg);
}

.bio-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--space-2xl);
    align-items: start;
}

.bio-image .image-placeholder {
    aspect-ratio: 3/4;
}

.bio-content h2 {
    margin-bottom: var(--space-sm);
}

.bio-lead {
    font-size: 1.25rem;
    color: var(--color-accent);
    margin-bottom: var(--space-lg);
}

.bio-content p {
    color: var(--color-text-muted);
    margin-bottom: var(--space-md);
}

/* Timeline */
.timeline-section {
    background: var(--color-bg-elevated);
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 100px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--color-border);
}

.timeline-item {
    display: flex;
    gap: var(--space-lg);
    padding-bottom: var(--space-xl);
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 96px;
    top: 8px;
    width: 10px;
    height: 10px;
    background: var(--color-primary);
    border-radius: 50%;
}

.timeline-date {
    width: 80px;
    flex-shrink: 0;
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--color-accent);
    text-align: right;
}

.timeline-content {
    padding-left: var(--space-lg);
}

.timeline-content h3 {
    margin-bottom: var(--space-xs);
    font-size: 1.25rem;
}

.timeline-content p {
    color: var(--color-text-muted);
    font-size: 0.9375rem;
}

/* Skills Section */
.skills-section {
    background: var(--color-bg);
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
}

.skill-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    padding: var(--space-lg);
}

.skill-card h3 {
    font-size: 1.25rem;
    margin-bottom: var(--space-md);
    color: var(--color-primary);
}

.skill-card ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.skill-card li {
    color: var(--color-text-muted);
    font-size: 0.9375rem;
}

/* Filmography */
.filmography-section {
    background: var(--color-bg-elevated);
}

.film-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

.film-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    overflow: hidden;
}

.film-image .image-placeholder {
    aspect-ratio: 2/3;
    min-height: 0;
}

.film-grid .film-card:nth-child(1) .image-placeholder {
    background: url('/assets/film-1.jpg') center/cover no-repeat;
}

.film-grid .film-card:nth-child(2) .image-placeholder {
    background: url('/assets/film-2.jpg') center/cover no-repeat;
}

.film-grid .film-card:nth-child(3) .image-placeholder {
    background: url('/assets/film-3.jpg') center/cover no-repeat;
}

.film-content {
    padding: var(--space-lg);
}

.film-content h3 {
    font-size: 1.25rem;
    margin-bottom: var(--space-xs);
}

.film-year {
    font-family: var(--font-display);
    color: var(--color-accent);
    margin-bottom: var(--space-xs);
}

.film-role {
    font-size: 0.875rem;
    color: var(--color-primary);
    margin-bottom: var(--space-sm);
}

.film-content > p:last-of-type {
    color: var(--color-text-muted);
    font-size: 0.875rem;
    margin-bottom: var(--space-md);
}

/* Episodes Section */
.episodes-section {
    background: var(--color-bg);
}

.episodes-filter {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: 1px solid var(--color-border);
    color: var(--color-text-muted);
    padding: 0.625rem 1.25rem;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.filter-btn:hover,
.filter-btn.active {
    border-color: var(--color-primary);
    color: var(--color-text);
    background: rgba(196, 30, 58, 0.1);
}

.episodes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: var(--space-md);
}

.episode-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    overflow: hidden;
    transition: border-color var(--transition-base);
}

.episode-card:hover {
    border-color: var(--color-primary);
}

.episode-image {
    position: relative;
    aspect-ratio: 16/9;
    background: var(--color-bg);
}

.episodes-grid .episode-card:nth-child(1) .image-placeholder,
.episodes-grid .episode-card:nth-child(4) .image-placeholder,
.episodes-grid .episode-card:nth-child(7) .image-placeholder {
    background: url('/assets/featured-1.jpg') center/cover no-repeat;
}

.episodes-grid .episode-card:nth-child(2) .image-placeholder,
.episodes-grid .episode-card:nth-child(5) .image-placeholder {
    background: url('/assets/featured-2.jpg') center/cover no-repeat;
}

.episodes-grid .episode-card:nth-child(3) .image-placeholder,
.episodes-grid .episode-card:nth-child(6) .image-placeholder {
    background: url('/assets/featured-3.jpg') center/cover no-repeat;
}

.episode-duration {
    position: absolute;
    bottom: var(--space-sm);
    right: var(--space-sm);
    background: rgba(0, 0, 0, 0.8);
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
}

.episode-content {
    padding: var(--space-md);
}

.episode-tag {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-primary);
    display: block;
    margin-bottom: var(--space-xs);
}

.episode-content h3 {
    font-size: 1.25rem;
    margin-bottom: var(--space-xs);
}

.episode-date {
    font-size: 0.875rem;
    color: var(--color-accent);
    margin-bottom: var(--space-sm);
}

.episode-content > p:last-of-type {
    color: var(--color-text-muted);
    font-size: 0.875rem;
    margin-bottom: var(--space-md);
}

.episodes-more {
    text-align: center;
    margin-top: var(--space-xl);
    padding-top: var(--space-xl);
    border-top: 1px solid var(--color-border);
}

.episodes-more p {
    color: var(--color-text-muted);
    margin-bottom: var(--space-md);
}

.platform-links {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    flex-wrap: wrap;
}

/* Watch Page */
.watch-platforms {
    background: var(--color-bg);
}

.platform-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
    margin-bottom: var(--space-3xl);
}

.platform-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.375rem 0.75rem;
    margin-bottom: var(--space-md);
}

.platform-badge.rumble {
    background: rgba(133, 199, 66, 0.2);
    color: #85c742;
}

.platform-feature-content h2 {
    margin-bottom: var(--space-md);
}

.platform-feature-content p {
    color: var(--color-text-muted);
    margin-bottom: var(--space-lg);
}

.platform-feature-embed {
    aspect-ratio: 16/9;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
}

.embed-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
}

.embed-placeholder span {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-xs);
}

.embed-placeholder p {
    font-size: 1rem;
    color: var(--color-text);
}

.platform-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
    margin-bottom: var(--space-3xl);
}

.platform-card-large {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    padding: var(--space-xl);
    text-align: center;
}

.platform-card-large .platform-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--space-md);
}

.platform-card-large .platform-icon svg {
    width: 48px;
    height: 48px;
}

.platform-card-large h3 {
    margin-bottom: var(--space-sm);
}

.platform-card-large p {
    color: var(--color-text-muted);
    margin-bottom: var(--space-lg);
    font-size: 0.9375rem;
}

.social-follow {
    text-align: center;
    padding-top: var(--space-2xl);
    border-top: 1px solid var(--color-border);
}

.social-follow h2 {
    margin-bottom: var(--space-sm);
}

.social-follow > p {
    color: var(--color-text-muted);
    margin-bottom: var(--space-xl);
}

.social-grid {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
}

.social-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-lg) var(--space-xl);
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    transition: all var(--transition-base);
}

.social-card:hover {
    border-color: var(--color-primary);
}

.social-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icon svg {
    width: 32px;
    height: 32px;
}

.social-card span:first-of-type {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.social-handle {
    color: var(--color-text-muted);
    font-size: 0.875rem;
}

/* Contact Section */
.contact-section {
    background: var(--color-bg);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--space-2xl);
}

.contact-info h2 {
    margin-bottom: var(--space-md);
}

.contact-info > p {
    color: var(--color-text-muted);
    margin-bottom: var(--space-xl);
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.contact-method h3 {
    font-size: 1rem;
    margin-bottom: var(--space-xs);
    color: var(--color-accent);
}

.contact-method a,
.contact-method p {
    color: var(--color-text);
    font-size: 1.125rem;
}

.contact-method a:hover {
    color: var(--color-primary);
}

.contact-social h3 {
    font-size: 1rem;
    margin-bottom: var(--space-sm);
    color: var(--color-accent);
}

.social-links-inline {
    display: flex;
    gap: var(--space-md);
}

.social-links-inline a {
    color: var(--color-text-muted);
    font-size: 0.9375rem;
    transition: color var(--transition-fast);
}

.social-links-inline a:hover {
    color: var(--color-text);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    padding: var(--space-xl);
}

.contact-form h2 {
    margin-bottom: var(--space-lg);
}

.form-group {
    margin-bottom: var(--space-md);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-muted);
    margin-bottom: var(--space-xs);
}

input,
select,
textarea {
    width: 100%;
    padding: 0.875rem;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color var(--transition-fast);
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--color-primary);
}

select {
    cursor: pointer;
}

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

/* Guest Info */
.guest-info {
    background: var(--color-bg-elevated);
}

.guest-info-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.guest-info-content h2 {
    margin-bottom: var(--space-md);
}

.guest-info-content > p {
    color: var(--color-text-muted);
    margin-bottom: var(--space-xl);
}

.guest-requirements {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

.requirement {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    padding: var(--space-lg);
}

.requirement h3 {
    font-size: 1.125rem;
    margin-bottom: var(--space-sm);
    color: var(--color-accent);
}

.requirement p {
    color: var(--color-text-muted);
    font-size: 0.9375rem;
}

/* Footer */
.site-footer {
    background: var(--color-bg);
    border-top: 1px solid var(--color-border);
    padding: var(--space-2xl) 0 var(--space-lg);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.footer-brand .logo-maap {
    width: 112px;
    height: 112px;
}

.footer-brand .logo-tagline {
    display: block;
    margin-top: 0.4rem;
}

.footer-brand p {
    color: var(--color-text-muted);
    font-size: 0.9375rem;
    margin-top: var(--space-sm);
}

.footer-links h4,
.footer-contact h4,
.footer-social h4 {
    font-size: 1rem;
    margin-bottom: var(--space-md);
    color: var(--color-accent);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-links a {
    color: var(--color-text-muted);
    font-size: 0.9375rem;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--color-text);
}

.footer-contact p,
.footer-contact a {
    color: var(--color-text-muted);
    font-size: 0.9375rem;
}

.footer-contact a:hover {
    color: var(--color-text);
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.social-links a {
    color: var(--color-text-muted);
    font-size: 0.9375rem;
    transition: color var(--transition-fast);
}

.social-links a:hover {
    color: var(--color-text);
}

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

.footer-bottom p {
    color: var(--color-text-muted);
    font-size: 0.875rem;
}

.footer-imdb a {
    color: var(--color-accent);
}

.footer-imdb a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 1024px) {
    .featured-main {
        grid-template-columns: 1fr;
    }

    .about-grid,
    .bio-grid,
    .platform-feature,
    .contact-grid {
        grid-template-columns: 1fr;
    }

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

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

    .guest-requirements {
        grid-template-columns: 1fr;
    }
}

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

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-links.active {
        display: flex;
        position: absolute;
        top: var(--header-height);
        left: 0;
        right: 0;
        flex-direction: column;
        background: var(--color-bg);
        padding: var(--space-lg);
        border-bottom: 1px solid var(--color-border);
    }

    .hero-stats {
        flex-direction: column;
        gap: var(--space-lg);
    }

    .featured-grid {
        grid-template-columns: 1fr;
    }

    .skills-grid,
    .platforms-grid,
    .platform-grid {
        grid-template-columns: 1fr;
    }

    .film-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: var(--space-sm);
        text-align: center;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item::before {
        left: 16px;
    }

    .timeline-date {
        width: auto;
        text-align: left;
        margin-left: 50px;
    }

    .timeline-item {
        flex-direction: column;
        padding-left: 50px;
    }

    .timeline-content {
        padding-left: 0;
    }

    .social-grid {
        flex-direction: column;
        align-items: center;
    }
}
