/* GENERAL RESET */
* {
  margin: 0;
  padding: 0;
 width: 100%;
  box-sizing: border-box;
}

/* make image fill the viewport */
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

/* PAGE BACKGROUND */
body {
  background-color: #b40000; /* deep red like your reference */
  color: white;
  font-family: 'Staatliches', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

/* MAIN FRAME */
.frame {
  background-color: #b40000;
  width: 90%;
  max-width: 1100px;
  border: 1px solid #000;
  padding: 20px;
  position: relative;
}

/* TOP HEADER */
.top-text {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 15px;
  opacity: 0.8;
}

/* IMAGE WRAPPER */
.image-wrapper {
  width: 100%;
  overflow: hidden;
  border: 3px solid #000;
}

.hero-image {
  width: 100%;
  display: block;
  filter: brightness(85%);
}

/* MAIN TEXT */
.text-section {
  margin-top: 15px;
  text-align: left;
}

h1 {
  font-family: 'Anton', sans-serif;
  font-size: 3rem;
  color: black;
  background-color: #b40000;
  display: inline-block;
  line-height: 1.1;
}

h2 {
  font-family: 'Staatliches', sans-serif;
  font-size: 1.2rem;
  margin-top: 5px;
  color: black;
}

h3 {
  font-family: 'Staatliches', sans-serif;
  font-size: 1rem;
  color: black;
  opacity: 0.8;
}

/* LINK BAR */
.link-bar {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.link-bar a {
  text-decoration: none;
  color: black;
  font-family: 'Anton', sans-serif;
  font-size: 1rem;
  border: 2px solid black;
  padding: 10px 18px;
  transition: all 0.3s ease;
}

.link-bar a:hover {
  background-color: black;
  color: #b40000;
}
