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

body {
  font-family: "Lato Open Sans", Helvetica, Arial, sans-serif;
  font-weight: 100;
  margin-bottom: 1.7em;     /* Adds space between paragraphs */
  line-height: 1.5;         /* Increases line spacing for readability */ 

  background-color: #fff;
  color: #fff;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #ddd; /* 0% transparent white */
  padding: 6px 40px;
  z-index: 1000;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 14px;
}

.navbar li a {
  text-decoration: none;
  color: #000; /* White text on black background */
  font-weight: 200;
  font-size: 13px;
  transition: color 0.3s;
}

/* Optional: make nav text visible on hover */
.navbar li a:hover {
  color: #ccc;
}

/* Fire Section */
.fire {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
  margin-top: 30px; /* space for fixed header */
}
/* Image */
.fire::before {
  content: "";
  display: block;
  width: 100%;
  padding-top: calc(1120/ 1920 * 100%); /* Maintain aspect ratio */
  background-image: url('images/Fire_Classes_1920px.jpg');
  background-size: 100% auto; /* Scales to screen width */
  background-repeat: no-repeat;
background-size: cover;
  background-position: top center;
}
/* Text overlay */
.fire-overlay {
  position: absolute;
  top: 50%;
  left: 77%;
  transform: translate(-50%, -50%);
  text-align: left;
  z-index: 10;
  background-color: rgba(0, 0, 0, 0.18);
  padding: 14px;
  border-radius: 10px;
}

.fire-overlay h1 {
  font-weight: 100;
  font-size: 17px;
  margin-bottom: 1px;
  color: #fff;
}
.fire-overlay p {
  font-size: 17px;
  margin-bottom: 6px;
}
.content {
  max-width: 1100px;  /* optional: prevent super wide text */
  padding: 15px;      /* space from edges */
  color: #000;


}
.fire-button {
  display: inline-block;
  padding: 5px 5px;
  background-color: none;
  color: #fff;
  font-weight: light;
  text-decoration: none;
  border-radius: 2px;
  transition: background-color 0.3s ease;
}

.fire-button:hover {
  background-color: #666;
}

/* Mobile: move text under hero with proper spacing */
/* Mobile: force all Fire text to black */
@media (max-width: 768px) {

  body {
    color: #000;
  }

  .fire {
    display: flex;
    flex-direction: column;
  }

  .fire::before {
    padding-top: 70%;
  }

  .fire-overlay {
    position: static;
    transform: none;
    margin: 16px auto 0;
    background: none;
    padding: 0;
    max-width: 92%;
  }

  /* FORCE all text + links to black */
  .fire-overlay *,
  .fire-overlay a,
  .fire-overlay a:visited,
  .fire-overlay a:hover {
    color: #000 !important;
  }
   .fire-button {
    background-color: #B08968;  /* brown background */
    color: #fff !important;      /* white text */
    padding: 12px 0;             /* vertical padding */
    border-radius: 6px;
    display: block;              /* make it a block element */
    width: 100%;                 /* full width of container */
    max-width: 100%;             /* ensure it never shrinks */
    margin: 0;                   /* remove side margins */
    text-align: center;          /* keep text centered */
  }


}



/* Footer */
.site-footer {
  background-color: #fff;
  color: #999; /* 60% black */
  text-align: center;
  padding: 10px;
  font-size: 11px;
  line-height: 1.5;
}
