/* John VanDenBerg - The Worker | Static Site Styles */

:root {
  --primary: #1a1a2e;
  --secondary: #16213e;
  --accent: #e94560;
  --text: #eee;
  --text-muted: #aaa;
  --bg: #0f0f1a;
  --card-bg: #1a1a2e;
  --border: #333;
  --link: #4da6ff;
  --link-hover: #7fc1ff;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-size: 17px;
}

/* Layout */
.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
header {
  background: var(--primary);
  border-bottom: 3px solid var(--accent);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.site-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
}

.site-title:hover {
  color: var(--accent);
}

nav {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}

nav a {
  color: var(--text-muted);
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 4px;
  font-size: 0.9rem;
  transition: all 0.2s;
}

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

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  padding: 60px 0;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: var(--text);
}

.hero .subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto;
}

/* Main Content */
main {
  padding: 40px 0;
}

section {
  margin-bottom: 50px;
}

h1, h2, h3, h4 {
  color: var(--text);
  margin-bottom: 15px;
}

h2 {
  font-size: 1.8rem;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 10px;
}

h3 {
  font-size: 1.3rem;
  color: var(--accent);
}

p {
  margin-bottom: 15px;
}

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

a:hover {
  color: var(--link-hover);
  text-decoration: underline;
}

/* Cards */
.card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
}

.card h3 {
  margin-top: 0;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

/* Timeline */
.timeline {
  position: relative;
  padding-left: 30px;
}

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

.timeline-item {
  position: relative;
  margin-bottom: 30px;
  padding-left: 20px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -26px;
  top: 5px;
  width: 12px;
  height: 12px;
  background: var(--accent);
  border-radius: 50%;
  border: 2px solid var(--bg);
}

.timeline-date {
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 5px;
}

.timeline-content {
  background: var(--card-bg);
  padding: 15px 20px;
  border-radius: 6px;
  border-left: 3px solid var(--accent);
}

/* Blockquotes */
blockquote {
  background: var(--card-bg);
  border-left: 4px solid var(--accent);
  padding: 20px 25px;
  margin: 20px 0;
  font-style: italic;
  color: var(--text-muted);
}

blockquote cite {
  display: block;
  margin-top: 10px;
  font-size: 0.9rem;
  color: var(--accent);
  font-style: normal;
}

/* Lists */
ul, ol {
  margin: 15px 0 15px 25px;
}

li {
  margin-bottom: 8px;
}

/* Alert/Callout Boxes */
.alert {
  padding: 20px;
  border-radius: 6px;
  margin: 20px 0;
}

.alert-warning {
  background: rgba(233, 69, 96, 0.15);
  border: 1px solid var(--accent);
}

.alert-info {
  background: rgba(77, 166, 255, 0.15);
  border: 1px solid var(--link);
}

/* FBI Contact Box */
.fbi-contact {
  background: linear-gradient(135deg, #1a1a2e 0%, #0d1b2a 100%);
  border: 2px solid var(--accent);
  border-radius: 8px;
  padding: 30px;
  text-align: center;
  margin: 30px 0;
}

.fbi-contact h3 {
  color: var(--text);
  margin-bottom: 15px;
}

.fbi-contact .phone {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  margin: 15px 0;
}

.fbi-contact a.btn {
  display: inline-block;
  background: var(--accent);
  color: white;
  padding: 12px 25px;
  border-radius: 5px;
  font-weight: 600;
  margin: 10px 5px;
  text-decoration: none;
}

.fbi-contact a.btn:hover {
  background: #ff6b81;
}

/* Tables */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}

th, td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

th {
  background: var(--secondary);
  color: var(--accent);
}

tr:hover {
  background: var(--card-bg);
}

/* Footer */
footer {
  background: var(--primary);
  border-top: 1px solid var(--border);
  padding: 30px 0;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}

footer a {
  color: var(--link);
}

/* Responsive */
@media (max-width: 768px) {
  header .container {
    flex-direction: column;
    text-align: center;
  }
  
  .hero h1 {
    font-size: 1.8rem;
  }
  
  nav {
    justify-content: center;
  }
  
  .timeline {
    padding-left: 20px;
  }
}

/* Print Styles */
@media print {
  header, footer, nav {
    display: none;
  }
  
  body {
    background: white;
    color: black;
  }
  
  .card, .timeline-content, blockquote {
    border: 1px solid #ccc;
    background: #f9f9f9;
  }
}
