/* Retro Red Theme - Valley Radio Club */

:root {
    --vintage-red: #dc2626;
    --vintage-red-dark: #b91c1c;
    --vintage-red-light: #fca5a5;
    --vintage-gold: #f6bd50;
    --vintage-gold-light: #f9c975;
    --vintage-gold-dark: #e0aa3a;
    --vintage-brown: #92400e;
    --vintage-brown-light: #d97706;
    --vintage-cream: #fffff4;
    --vintage-beige: #fffff4;
    --vintage-gray: #6b7280;
    --vintage-dark: #374151;
    --vintage-black: #111827;
    --white: #ffffff;
    --text-primary: #111827;
    --text-secondary: #6b7280;
    --text-muted: #9ca3af;
    --border-color: #d1d5db;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --vintage-shadow: 0 4px 14px 0 rgba(246, 189, 80, 0.25);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Orbitron', monospace;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--white);
    position: relative;
    overflow-x: hidden;
    padding-left: 250px;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Scanlines Effect */
.scanlines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 0, 0, 0.03) 2px,
        rgba(0, 0, 0, 0.03) 4px
    );
    pointer-events: none;
    z-index: 1;
}

/* Vintage Overlay */
.vintage-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(220, 38, 38, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(246, 189, 80, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(224, 170, 58, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* Header */
.header {
    background: var(--vintage-cream);
    border-bottom: 4px solid var(--vintage-red);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--vintage-shadow);
    margin-left: -250px;
    padding-left: 250px;
}

.header-top {
    background: var(--vintage-red);
    padding: 0.5rem 0;
    overflow: hidden;
}

.vintage-banner {
    white-space: nowrap;
    animation: bannerScroll 20s linear infinite;
}

.banner-text {
    color: var(--white);
    font-family: 'Press Start 2P', monospace;
    font-size: 0.75rem;
    letter-spacing: 2px;
    display: inline-block;
    padding-right: 2rem;
}

@keyframes bannerScroll {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

.nav {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 0.25rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.nav-brand {
    display: flex;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.vintage-logo {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-img {
    max-width: 130px;
    max-height: 130px;
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.footer-logo {
    max-width: 75px;
    max-height: 75px;
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.logo-inner {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--vintage-red), var(--vintage-red-dark));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Press Start 2P', monospace;
    font-weight: 400;
    font-size: 0.8rem;
    color: var(--white);
    position: relative;
    z-index: 2;
    box-shadow: var(--vintage-shadow);
}

.logo-frame {
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border: 3px solid var(--vintage-gold);
    border-radius: 12px;
    background: var(--vintage-cream);
}

.logo-bolts {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.bolt {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--vintage-gold);
    border-radius: 50%;
    border: 2px solid var(--vintage-brown);
}

.bolt-1 { top: -4px; left: -4px; }
.bolt-2 { top: -4px; right: -4px; }
.bolt-3 { bottom: -4px; left: -4px; }
.bolt-4 { bottom: -4px; right: -4px; }

.brand-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.brand-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-primary);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    letter-spacing: 2px;
}

.callsign-display {
    display: flex;
    gap: 0.5rem;
    font-family: 'Press Start 2P', monospace;
    font-size: 0.5rem;
}

.callsign-label {
    color: var(--text-muted);
}

.callsign-value {
    color: var(--vintage-red);
    font-weight: 600;
}

.frequency-display {
    display: flex;
    gap: 0.5rem;
    font-family: 'Press Start 2P', monospace;
    font-size: 0.45rem;
}

.freq-label {
    color: var(--text-muted);
}

.freq-value {
    color: var(--vintage-gold);
    font-weight: 600;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
}

.nav-next-meeting {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.25rem;
}

.next-meeting-label {
    font-size: 0.7rem;
    color: var(--text-primary);
    font-family: 'Press Start 2P', monospace;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.next-meeting-date {
    font-size: 0.9rem;
    color: var(--vintage-red);
    font-family: Arial, sans-serif;
    font-weight: 700;
}

/* Mobile menu backdrop */
.mobile-menu-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 999;
}

.mobile-menu-backdrop.active {
    display: block;
}

/* Mobile menu toggle button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
}

.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background: var(--vintage-red);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-link:hover {
    color: var(--vintage-red);
}

.link-underline {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--vintage-red), var(--vintage-gold));
    transition: width 0.3s ease;
}

.nav-link:hover .link-underline {
    width: 100%;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    padding: 2rem 2rem;
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    width: 100%;
}

.vintage-pattern {
    position: absolute;
    top: 0;
    left: -50%;
    right: -50%;
    bottom: 0;
    width: 200%;
    background-image: 
        linear-gradient(45deg, transparent 40%, rgba(220, 38, 38, 0.03) 50%, transparent 60%),
        linear-gradient(-45deg, transparent 40%, rgba(246, 189, 80, 0.03) 50%, transparent 60%);
    background-size: 60px 60px;
}

.vintage-radio .radio-waves {
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 300px;
    z-index: -1;
}

.hero-background .radio-waves {
    display: none;
}

.wave {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 3px solid var(--vintage-red);
    border-radius: 50%;
    opacity: 0.3;
    animation: waveExpand 4s ease-in-out infinite;
}

.wave-1 {
    width: 100px;
    height: 100px;
    animation-delay: 0s;
}

.wave-2 {
    width: 200px;
    height: 200px;
    animation-delay: 1.3s;
}

.wave-3 {
    width: 300px;
    height: 300px;
    animation-delay: 2.6s;
}

@keyframes waveExpand {
    0% { transform: translate(-50%, -50%) scale(0); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(2); opacity: 0; }
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
}

.hero-text {
    text-align: left;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 0.9;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.title-line {
    display: block;
    background: linear-gradient(135deg, var(--vintage-red), var(--vintage-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.2);
    animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    0% { text-shadow: 4px 4px 8px rgba(220, 38, 38, 0.3); }
    100% { text-shadow: 4px 4px 8px rgba(246, 189, 80, 0.3); }
}

.hero-subtitle {
    display: none;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 0;
    line-height: 1.7;
}

.hero-description p {
    margin-bottom: 1rem;
}

.hero-description ul {
    list-style: none;
    padding-left: 0;
    margin: 1rem 0;
}

.hero-description li {
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    position: relative;
}

.hero-description li::before {
    content: '•';
    color: var(--vintage-gold);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.hero-stats {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.stat-panel {
    background: var(--white);
    border: 3px solid var(--vintage-red);
    border-radius: 8px;
    padding: 1.5rem;
    min-width: 150px;
    position: relative;
    box-shadow: var(--vintage-shadow);
}

.stat-panel::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg, var(--vintage-gold), var(--vintage-gold-dark));
    border-radius: 8px;
    z-index: -1;
}

.stat-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-family: 'Press Start 2P', monospace;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.vintage-indicator {
    width: 8px;
    height: 8px;
    background: var(--vintage-red);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--vintage-red);
    animation: indicatorBlink 2s ease-in-out infinite;
}

@keyframes indicatorBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--vintage-red);
    font-family: 'Press Start 2P', monospace;
}

.hero-actions {
    display: none;
}

.btn {
    position: relative;
    padding: 1rem 2rem;
    border-radius: 0;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
    border: 3px solid transparent;
    text-align: center;
    font-family: 'Orbitron', monospace;
    text-transform: uppercase;
    letter-spacing: 1px;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--vintage-red), var(--vintage-red-dark));
    color: var(--white);
    border-color: var(--vintage-red);
    box-shadow: var(--vintage-shadow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(220, 38, 38, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--vintage-red);
    border-color: var(--vintage-red);
}

.btn-secondary:hover {
    background: var(--vintage-gold);
    color: var(--vintage-black);
    border-color: var(--vintage-gold);
    box-shadow: var(--vintage-shadow);
}

.btn-outline {
    background: transparent;
    color: var(--vintage-red);
    border-color: var(--border-color);
}

.btn-outline:hover {
    background: var(--vintage-gold);
    color: var(--vintage-black);
    border-color: var(--vintage-gold);
}

.btn-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: glow 2s infinite;
}

@keyframes glow {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Vintage Radio Visual */
.hero-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    position: relative;
    padding-top: 8rem;
}

.hero-visual-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.vintage-radio {
    position: relative;
    width: 400px;
    height: 300px;
    background: linear-gradient(135deg, var(--vintage-dark), var(--vintage-black));
    border-radius: 1rem;
    border: 4px solid var(--vintage-gold);
    box-shadow: var(--vintage-shadow);
    overflow: visible;
}

.radio-body {
    width: 100%;
    height: 100%;
    background: var(--vintage-dark);
    border-radius: 0.5rem;
    padding: 2rem;
    position: relative;
}

.radio-face {
    width: 100%;
    height: 100%;
    background: var(--vintage-black);
    border-radius: 0.5rem;
    padding: 1.5rem;
    border: 2px solid var(--vintage-gray);
}

.frequency-display {
    background: var(--vintage-red);
    border-radius: 0.5rem;
    padding: 1rem;
    margin-bottom: 1.5rem;
    text-align: center;
    border: 2px solid var(--vintage-red-dark);
}

.display-screen {
    background: var(--vintage-black);
    border-radius: 0.25rem;
    padding: 0.5rem;
    font-family: 'Press Start 2P', monospace;
    color: var(--vintage-red);
    font-size: 1.2rem;
}

.freq-text {
    font-size: 1.5rem;
}

.freq-unit {
    font-size: 0.8rem;
    color: var(--vintage-gold);
}

.control-panel {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.knob-group {
    display: flex;
    justify-content: space-around;
    margin-bottom: 1rem;
}

.knob {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.knob-mark {
    width: 30px;
    height: 30px;
    background: var(--vintage-gold);
    border-radius: 50%;
    border: 3px solid var(--vintage-brown);
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.knob-mark::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 4px;
    height: 4px;
    background: var(--vintage-red);
    border-radius: 50%;
}

.knob:hover .knob-mark {
    transform: scale(1.1);
    box-shadow: 0 0 10px var(--vintage-gold);
}

.knob-label {
    font-size: 0.6rem;
    color: var(--vintage-gold);
    font-family: 'Press Start 2P', monospace;
    text-transform: uppercase;
}

.button-group {
    display: flex;
    justify-content: space-around;
}

.button {
    background: var(--vintage-red);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    font-family: 'Press Start 2P', monospace;
    font-size: 0.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid var(--vintage-red-dark);
}

.button:hover {
    background: var(--vintage-red-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(220, 38, 38, 0.3);
}

.antenna-stem {
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 60px;
    background: linear-gradient(to right, var(--vintage-gold-dark), var(--vintage-gold), var(--vintage-gold-dark));
    border-radius: 8px 8px 0 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.antenna-stem::after {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 20px;
    background: linear-gradient(to right, var(--vintage-gold-dark), var(--vintage-gold));
    border-radius: 4px 4px 0 0;
}

.antenna-connector {
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.connector {
    width: 20px;
    height: 20px;
    background: var(--vintage-gold);
    border-radius: 50%;
    border: 3px solid var(--vintage-brown);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.title-accent {
    display: block;
    font-size: 1.5rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.title-main {
    display: block;
    background: linear-gradient(135deg, var(--vintage-red), var(--vintage-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.2);
}

.title-underline {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--vintage-red), var(--vintage-gold));
    margin: 1rem auto 0;
    border-radius: 2px;
}

/* About Section */
.about {
    padding: 6rem 0;
    background: var(--white);
    position: relative;
}

/* News Feed */
.news-feed {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.news-item {
    display: flex;
    gap: 2rem;
    background: var(--white);
    border: 3px solid var(--vintage-red);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
}

.news-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--vintage-shadow);
}

.news-date {
    min-width: 80px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.news-day {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--vintage-red);
    font-family: 'Press Start 2P', monospace;
}

.news-month {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.news-content {
    flex: 1;
}

.news-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.news-excerpt {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1rem;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.card-icon {
    position: relative;
    width: 60px;
    height: 60px;
}

.icon-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--vintage-red), var(--vintage-gold));
    border-radius: 1rem;
    opacity: 0.2;
}

.icon-symbol {
    position: relative;
    z-index: 1;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-content p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.card-stats {
    display: flex;
    gap: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--vintage-red);
    font-family: 'Press Start 2P', monospace;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Press Start 2P', monospace;
}

/* Operations Section */
.operations {
    padding: 6rem 0;
    background: var(--vintage-cream);
}

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

.timeline-line {
    position: absolute;
    left: 50px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, var(--vintage-red), var(--vintage-gold));
    border-radius: 2px;
}

.event-item {
    position: relative;
    margin-bottom: 3rem;
    padding-left: 6rem;
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.event-item::before {
    content: '';
    position: absolute;
    left: 42px;
    top: 20px;
    width: 16px;
    height: 16px;
    background: var(--vintage-red);
    border-radius: 50%;
    border: 4px solid var(--white);
    box-shadow: var(--vintage-shadow);
}

.event-date {
    background: var(--vintage-red);
    color: var(--white);
    padding: 1.5rem;
    border-radius: 1rem;
    text-align: center;
    min-width: 100px;
    height: fit-content;
    box-shadow: var(--vintage-shadow);
    border: 3px solid var(--vintage-gold);
}

.event-date .month {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    font-family: 'Press Start 2P', monospace;
}

.event-date .day {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    font-family: 'Press Start 2P', monospace;
}

.event-content {
    background: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow);
    flex: 1;
    border: 3px solid var(--vintage-red);
    transition: all 0.3s ease;
}

.event-content:hover {
    transform: translateX(10px);
    box-shadow: var(--vintage-shadow);
}

.event-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.event-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.event-status {
    background: var(--vintage-gold);
    color: var(--vintage-black);
    padding: 0.5rem 1rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Press Start 2P', monospace;
}

.event-content p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.event-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    font-family: 'Press Start 2P', monospace;
    font-size: 0.75rem;
}

.detail-label {
    color: var(--text-muted);
}

.detail-value {
    color: var(--vintage-red);
    font-weight: 600;
}

.event-link {
    color: var(--vintage-red);
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    font-family: 'Press Start 2P', monospace;
    font-size: 0.75rem;
}

.event-link:hover {
    color: var(--vintage-gold);
}

/* Membership / Find Us Section */
.membership {
    padding: 6rem 0;
    background: var(--white);
}

.findus-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.findus-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.findus-card {
    background: var(--vintage-cream);
    border: 3px solid var(--vintage-red);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s ease;
}

.findus-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--vintage-shadow);
}

.findus-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.findus-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.findus-details .detail-row {
    display: flex;
    gap: 1rem;
    font-family: 'Press Start 2P', monospace;
    font-size: 0.75rem;
}

.findus-details .detail-label {
    color: var(--text-muted);
    font-weight: 600;
}

.findus-details .detail-value {
    color: var(--vintage-red);
    font-weight: 600;
}

/* Quick Info Sidebar */
.quick-info-sidebar {
    position: fixed;
    top: 85px;
    left: 0;
    width: 250px;
    z-index: 999;
    height: calc(100vh - 85px);
    border-right: 4px solid var(--vintage-red);
    background: var(--vintage-cream);
    box-shadow: var(--vintage-shadow);
    overflow-y: auto;
}

.sidebar-panel {
    padding: 1rem 1.5rem;
}

.sidebar-section-title {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--vintage-red);
    margin-bottom: 0.5rem;
    margin-top: 0.35rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: Arial, sans-serif;
}

.sidebar-section-title:first-child {
    margin-top: 0;
}

.net-calendar-list {
    max-height: 250px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    border: 2px solid var(--vintage-red);
    border-radius: 4px;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.5);
}

.calendar-item {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    padding: 0.3rem 0.3rem 0.3rem 0.8rem;
    border-bottom: 1px solid var(--border-color);
}

.calendar-item:last-child {
    border-bottom: none;
}

.calendar-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.5rem;
}

.calendar-row:first-child {
    align-items: center;
}

.calendar-date {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--vintage-red);
    font-family: Arial, sans-serif;
    white-space: nowrap;
}

.calendar-net-name {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-primary);
    font-family: Arial, sans-serif;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    max-width: 100%;
    margin-bottom: 0.2rem;
}

.calendar-datetime {
    font-size: 0.85rem;
    font-weight: bold;
    color: var(--text-primary);
    font-family: Arial, sans-serif;
    white-space: nowrap;
}

.calendar-time {
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-family: Arial, sans-serif;
    font-weight: bold;
    white-space: nowrap;
}

.calendar-freq {
    font-size: 0.7rem;
    color: var(--vintage-red);
    font-family: Arial, sans-serif;
    font-weight: bold;
    text-align: right;
    margin-left: auto;
}

.calendar-freq.multiline {
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
    margin-left: 0;
    text-align: left;
    margin-top: 0.2rem;
    max-width: 100%;
}

.sidebar-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.quick-info-row {
    display: flex;
    gap: 0.5rem;
    align-items: flex-start;
}

.info-label {
    font-size: 0.6rem;
    color: var(--text-muted);
    font-family: Arial, sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    min-width: 70px;
}

.info-value {
    font-size: 0.7rem;
    color: var(--text-primary);
    font-family: Arial, sans-serif;
    line-height: 1.3;
}

.quick-net {
    display: flex;
    flex-direction: column;
    gap: 0.05rem;
    padding-bottom: 0.2rem;
}

.net-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
}

.sidebar-divider {
    height: 2px;
    background: var(--vintage-red);
    margin: 0.5rem 0;
}

.net-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
}

.net-name {
    font-size: 0.85rem;
    color: var(--vintage-red);
    font-weight: 700;
    font-family: Arial, sans-serif;
    letter-spacing: 0.5px;
}

.net-freq {
    font-size: 0.75rem;
    color: var(--text-primary);
    font-family: Arial, sans-serif;
    font-weight: bold;
}

.net-time {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-family: Arial, sans-serif;
}

.quick-repeater {
    display: flex;
    flex-direction: column;
    gap: 0.05rem;
    padding-bottom: 0.2rem;
}

.repeater-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
}

.repeater-name {
    font-size: 0.85rem;
    color: var(--vintage-red);
    font-weight: 700;
    font-family: Arial, sans-serif;
}

.repeater-freq {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-family: Arial, sans-serif;
    font-weight: bold;
}

.repeater-details-line {
    font-size: 0.7rem;
    color: var(--text-secondary);
    font-family: Arial, sans-serif;
}

/* Footer */
.footer {
    background: var(--vintage-black);
    color: var(--white);
    padding: 4rem 0 2rem;
    border-top: 4px solid var(--vintage-red);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--vintage-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-brand .vintage-logo {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-brand .logo-inner {
    width: 40px;
    height: 40px;
    font-size: 0.8rem;
}

.footer-brand .brand-info h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-brand .brand-info p {
    color: var(--vintage-gold);
    font-size: 0.875rem;
    font-family: 'Press Start 2P', monospace;
}

.footer-description {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.contact-label {
    color: var(--text-muted);
    font-size: 0.875rem;
    font-family: 'Press Start 2P', monospace;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-value {
    color: var(--vintage-gold);
    font-family: 'Press Start 2P', monospace;
    font-size: 0.75rem;
}

.repeater-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.repeater-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    background: none;
    border: none;
}

.repeater-freq {
    color: var(--text-secondary);
    font-weight: bold;
    font-family: Arial, sans-serif;
    font-size: 0.85rem;
}

.repeater-details {
    color: var(--text-muted);
    font-size: 0.75rem;
    font-family: 'Press Start 2P', monospace;
}

.footer-bottom {
    border-top: 1px solid var(--vintage-gray);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.875rem;
    font-family: 'Press Start 2P', monospace;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header {
        margin-left: 0;
        padding-left: 0;
        border-left: none;
    }
    
    .nav {
        position: relative;
        flex-wrap: wrap;
    }
    
    .nav-next-meeting {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
        position: absolute;
        right: 2rem;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .nav-menu {
        display: none;
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 250px;
        background: var(--vintage-cream);
        flex-direction: column;
        padding: 4rem 2rem;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
        transition: right 0.3s ease;
        z-index: 1000;
        transform: none;
    }
    
    .nav-menu.active {
        display: flex;
        right: 0;
    }
    
    .logo-container {
        flex-wrap: wrap;
    }
    
    .brand-info {
        margin-top: 0.5rem;
        width: 100%;
    }
    
    .brand-title {
        font-size: 1rem;
        white-space: normal;
        word-wrap: break-word;
    }
    
    .hero {
        text-align: center;
        padding: 1rem;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .operations-grid,
    .membership-grid {
        grid-template-columns: 1fr;
    }
    
    .findus-layout {
        grid-template-columns: 1fr;
    }
    
    body {
        padding-left: 0;
    }
    
    .quick-info-sidebar {
        display: none;
    }
    
    .news-item {
        flex-direction: column;
        gap: 1rem;
    }
    
    .news-date {
        flex-direction: row;
        gap: 1rem;
        min-width: auto;
    }
    
    .news-day {
        font-size: 1.5rem;
    }
    
    .event-item {
        flex-direction: column;
        padding-left: 0;
    }
    
    .event-date {
        align-self: flex-start;
    }
    
    .timeline-line {
        display: none;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-brand {
        justify-content: center;
    }
}
