/* ABOUTME: Styles for ourfire.cc - cryptic, minimalist aesthetic */
/* ABOUTME: Defines layout for point cloud animation and poem text */

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

body {
  background: #000;
  color: #fff;
  font-family: 'Courier New', monospace;
  overflow-x: hidden;
  overflow-y: auto;
  width: 100vw;
  min-height: 100vh;
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 100vh;
  position: relative;
}

#canvas-container {
  width: 100%;
  height: 70vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

#canvas-container canvas {
  display: block;
  max-width: 100%;
  max-height: 100%;
}

.poem {
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-align: center;
  margin-top: 2rem;
  padding: 0 2rem;
  text-transform: lowercase;
  opacity: 0.9;
}

footer {
  position: fixed;
  bottom: 2rem;
  width: 100%;
  text-align: center;
}

footer a {
  color: #fff;
  text-decoration: none;
  font-size: 0.875rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

footer a:hover {
  opacity: 0.3;
}

/* Poem section */
.poem-section {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
}

.poem-container {
  padding: 2rem;
}

.poem-text {
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-align: center;
  text-transform: lowercase;
  opacity: 0.9;
  line-height: 2;
}

/* Responsive */
@media (max-width: 768px) {
  .poem {
    font-size: 1rem;
    letter-spacing: 0.1em;
  }

  .poem-text {
    font-size: 1rem;
    letter-spacing: 0.1em;
  }

  #canvas-container {
    height: 60vh;
  }
}

