/* RESET */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* GLOBAL */
body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #fff;
  background: #000;
  min-height: 100vh;
}

/* HERO SECTION */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 60px 24px 200px; /* Space for footer */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60vh;
  background-image: url("../images/hg.jpg");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  z-index: -2;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.45), rgba(0,0,0,0.85));
  z-index: -1;
}

/* LOGO */
.logo img {
  border: 10px solid white;
  max-width: 320px;
  height: auto;
  margin-bottom: 32px;
}

/* TEXT ELEMENTS */
.headline {
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.subline {
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.9;
  margin-bottom: 40px;
}

.note {
	padding: 10px;
	background-color: #fff;
  color: red;
  font-size: 1.4rem;
  font-weight: bold;
  opacity: 0.95;
}

/* FOOTER */
.footer {
  text-align: center;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0,0,0,0.85);
  padding: 20px 24px;
  color: #fff;
  font-size: 1.1rem;
  line-height: 1.4;
/* border-top: 1px solid rgba(255,255,255,0.1);*/
}

.footer strong {
  color: #fff;
  font-weight: 600;
}

.footer .section {
  margin-bottom: 12px;
}

.footer .legal {
  font-size: 0.8rem;
  opacity: 0.8;
}

.footer a {
  text-decoration: underline;
  color: #fff;
  margin-right: 16px;
  font-size: 0.85rem;
}

.footer a:hover {
  text-decoration: none;
}

ul {
  list-style-position: inside;
}

section h2 {padding: 30px 0 0 0;}

