* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  background: #000;
  color: #fff;
}

.hero {
  position: relative;
  min-height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background-image: url('assets/hero.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.hero .overlay {
  position: absolute;
  inset: 0;
  /* Significantly lighter overlay */
  background: rgba(8, 19, 36, 0.10);
}

.content {
  position: relative;
  padding: 2rem 1.25rem;
  width: min(1200px, 92vw);
  margin: 0 auto;
  z-index: 1;
}

h1 {
  font-size: clamp(2rem, 4.5vw + 0.5rem, 4rem);
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1.1;
  text-transform: uppercase;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

p {
  margin-top: 0.6rem;
  font-size: clamp(0.95rem, 1.2vw + 0.3rem, 1.125rem);
  max-width: 60ch;
  color: rgba(255,255,255,0.95);
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}
