/* Self-hosted fonts */
@font-face {
  font-family: 'Antic';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/antic.woff2') format('woff2');
}

@font-face {
  font-family: 'Electrolize';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/electrolize.woff2') format('woff2');
}

@font-face {
  font-family: 'Courier Prime';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/courier-prime-regular.woff2') format('woff2');
}

@font-face {
  font-family: 'Courier Prime';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('fonts/courier-prime-bold.woff2') format('woff2');
}

:root {
  --color-bg: #0a0a0a;
  --color-text: #e8e8e8;
  --color-text-muted: #888;
  --color-accent: #ff7a1a;
  --color-accent-hover: #ff9040;
  --font-mono: 'Courier Prime', 'Courier New', Courier, monospace;
  --font-display: 'Electrolize', sans-serif;
  --font-body: 'Antic', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  font-size: 18px;
}

body {
  margin: 0;
  padding: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  line-height: 1.6;
}

main {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 1.5rem 4rem;
}

/* Header */
header {
  margin-bottom: 3rem;
}

.logo-mark {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.rock-on {
  width: 2rem;
  height: 2rem;
  fill: var(--color-accent);
}

.fa-icon {
  width: 1em;
  height: 1em;
  fill: var(--color-accent);
  vertical-align: -0.1em;
  margin-right: 0.3em;
}

.fa-icon-inline {
  width: 1em;
  height: 1em;
  fill: var(--color-accent);
  vertical-align: -0.1em;
}

.prompt,
.cursor {
  font-family: var(--font-mono);
  color: var(--color-accent);
  font-weight: 600;
}

h1 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 400;
  margin: 0 0 0.5rem;
  letter-spacing: -0.02em;
}

.tagline {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin: 0;
}

/* Hero / Animated Image Placeholder */
.hero {
  margin-bottom: 3rem;
}

.hero-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  background-color: #1a1a1a;
  background-size: cover;
  background-position: center;
  border: 1px solid #333;
  border-radius: 4px;
}

.hero-caption {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-top: 0.5rem;
  font-style: italic;
}

/* Sections */
section {
  margin-bottom: 3rem;
}

/* VeryGeeky Section */
.verygeeky-section {
  display: grid;
  grid-template-columns: 1fr minmax(200px, 280px);
  gap: 2rem;
  align-items: start;
}

.verygeeky-logo {
  text-align: center;
  font-family: var(--font-mono);
  color: var(--color-accent);
}

.verygeeky-logo .aka {
  font-size: 2.5rem;
  margin: 0;
  line-height: 1.2;
}

.verygeeky-logo .very {
  font-size: 2.5rem;
  margin: 0;
  line-height: 1.2;
}

.verygeeky-logo .very em {
  font-style: italic;
  font-weight: 300;
}

.verygeeky-logo .very strong {
  font-weight: 700;
}

.power-icon {
  width: 4rem;
  height: 4rem;
  fill: var(--color-accent);
  margin-top: 1rem;
}

.verygeeky-content p {
  font-size: 0.95rem;
}

.verygeeky-content p:first-child {
  font-size: 1.1rem;
  font-weight: 500;
}

@media (max-width: 600px) {
  .verygeeky-section {
    grid-template-columns: 1fr;
  }

  .verygeeky-logo {
    order: -1;
    margin-bottom: 1rem;
  }
}

/* Beer Section */
.beer-section {
  display: grid;
  grid-template-columns: minmax(200px, 300px) 1fr;
  gap: 2rem;
  align-items: start;
}

.beer-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid #333;
}

.beer-content h2 {
  margin-top: 0;
}

.beer-content p {
  font-size: 0.95rem;
}

.beer-content code {
  font-family: var(--font-mono);
  background: #1a1a1a;
  padding: 0.1em 0.3em;
  border-radius: 3px;
  font-size: 0.85em;
}

.beer-content blockquote {
  margin: 1.5rem 0 0;
  padding: 1rem 1.5rem;
  border-left: 3px solid var(--color-accent);
  background: #111;
  border-radius: 0 4px 4px 0;
  font-style: italic;
}

.beer-content blockquote p {
  margin: 0;
  font-size: 1rem;
}

.beer-content blockquote cite {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  font-style: normal;
}

@media (max-width: 600px) {
  .beer-section {
    grid-template-columns: 1fr;
  }

  .beer-image {
    max-width: 250px;
  }
}

/* Ham Radio Section */
.hamradio-section {
  display: grid;
  grid-template-columns: 1fr minmax(250px, 400px);
  gap: 2rem;
  align-items: start;
}

.hamradio-content h2 {
  margin-top: 0;
}

.hamradio-content p {
  font-size: 0.95rem;
}

.hamradio-image {
  margin: 0;
}

.hamradio-image img {
  width: 100%;
  border-radius: 4px;
  border: 1px solid #333;
}

.hamradio-image figcaption {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-top: 0.5rem;
  font-style: italic;
}

@media (max-width: 600px) {
  .hamradio-section {
    grid-template-columns: 1fr;
  }
}

/* Geocaching Section */
.geocaching-section {
  max-width: 700px;
}

.geocaching-content h2 {
  margin-top: 0;
}

.geocaching-content p {
  font-size: 0.95rem;
}

/* Laser Beams Section */
.laserbeams-section {
  max-width: 700px;
}

.laserbeams-content h2 {
  margin-top: 0;
}

.laserbeams-content p {
  font-size: 0.95rem;
}

h2 {
  font-family: var(--font-mono);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--color-accent);
  margin: 0 0 1rem;
}

h3 {
  font-family: var(--font-mono);
  font-size: 1rem;
  font-weight: 400;
  margin: 0 0 0.5rem;
  color: var(--color-text);
}

p {
  margin: 0 0 1rem;
}

p:last-child {
  margin-bottom: 0;
}

/* Interest Grid */
.interest-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (max-width: 600px) {
  .interest-grid {
    grid-template-columns: 1fr;
  }
}

.interest {
  padding: 1rem;
  background: #111;
  border-radius: 4px;
  border-left: 2px solid var(--color-accent);
}

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

/* Links */
a {
  color: var(--color-accent);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--color-accent-hover);
  text-decoration-thickness: 2px;
}

.venture-link {
  font-family: var(--font-mono);
  font-weight: 600;
}

/* Footer */
footer {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid #222;
}

footer p {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  font-family: var(--font-mono);
}

/* Blinking cursor between prompt and horns */
.cursor {
  animation: blink 1s step-end infinite;
}

@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}
