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

html, body {
  height: 100%;
  font-family: Arial, sans-serif;
  overflow: hidden;
}

.hero {
  position: relative;
  width: 100%;
  height: 100%;
  background: url("/res/gollma.jpg") center center / cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Optional gradient fade to black */
.overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 60%, rgba(0,0,0,0.7) 100%);
  z-index: 1;
}

/* Welcome text */
.welcome-text {
  position: relative;
  text-align: center;
  z-index: 2;
  font-size: clamp(24px, 5vw, 72px);
  color: white;
  text-shadow:
    2px 2px 0 #000,
    -2px 2px 0 #000,
    2px -2px 0 #000,
    -2px -2px 0 #000;
}
