/* Forefellas Golf – Coming Soon */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Outfit", system-ui, -apple-system, sans-serif;
  min-height: 100vh;
  color: #fff;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("golf-green-2.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(10, 35, 25, 0.82) 0%,
    rgba(13, 55, 38, 0.7) 40%,
    rgba(8, 28, 20, 0.85) 100%
  );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 2rem 1.5rem;
  max-width: 750px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.brand {
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.05;
  color: #fff;
  text-shadow:
    0 0 40px rgba(0, 0, 0, 0.5),
    0 2px 4px rgba(0, 0, 0, 0.4),
    0 4px 20px rgba(0, 0, 0, 0.35);
}

.tagline {
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.95);
  text-shadow:
    0 0 20px rgba(0, 0, 0, 0.4),
    0 1px 4px rgba(0, 0, 0, 0.35);
}

.tagline:first-of-type {
  font-size: clamp(1.05rem, 2.8vw, 1.2rem);
  letter-spacing: 0.08em;
}

.tagline-container {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}