/* fire.css */

body {
  margin: 0;
  font-family: 'Georgia', serif;
  background-color: #111;
  color: #eee;
  line-height: 1.6;
}

.banner {
  position: relative;
  height: 100vh;
  background-image: url('/assets/fire-banner.png');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.overlay-text {
  background: rgba(0, 0, 0, 0.55);
  color: #f2f2f2;
  padding: 2rem;
  text-align: center;
  width: 100%;
}

.overlay-text h1 {
  font-size: 3rem;
  margin: 0;
  color: #ffddb3;
}

.overlay-text p {
  font-size: 1.2rem;
  color: #f8d4aa;
  margin-top: 0.5rem;
}

main.content {
  padding: 3rem 1.5rem;
  max-width: 800px;
  margin: auto;
  background-color: #1a1a1a;
  box-shadow: 0 0 20px rgba(255, 140, 50, 0.1);
}

h2 {
  color: #ffa766;
  font-weight: normal;
  margin-top: 2rem;
}

p {
  margin-bottom: 1.5rem;
  color: #ddd;
}
