/*
 * Man Cave Golf Club – Coming Soon styles (steady neon glow + date badge)
 */

/* Palette */
:root {
  --primary-color: #ff8c32;        /* Neon orange from logo */
  --bg-color: #0a0b0c;             /* Near-black background */
  --text-light: #f5f5f5;
  --glow: 0 0 12px var(--primary-color), 0 0 24px var(--primary-color);

  /* “Glass” badge */
  --glass-bg: rgba(255, 255, 255, 0.06);
  --glass-border: rgba(255, 255, 255, 0.12);
}

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

html, body {
  height: 100%;
  font-family: 'Montserrat', sans-serif;
  background: var(--bg-color);
  color: var(--text-light);
  overflow: hidden;
}

/* Layout */
.hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  text-align: center;
  padding: 2rem;
  background: radial-gradient(circle at center, rgba(30,30,30,.6), var(--bg-color));
}

/* Logo */
.logo {
  max-width: 300px;
  width: 60%;
  height: auto;
  margin-bottom: 2rem;
  filter: drop-shadow(0 0 8px var(--primary-color)) drop-shadow(0 0 16px var(--primary-color));
}

/* Headline – steady glow (no flicker) */
.headline {
  font-size: clamp(2rem, 5vw + 1rem, 4rem);
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--primary-color);
  margin-bottom: 1rem;
  text-shadow: var(--glow);        /* glow stays on */
  /* removed: animation */
}

/* Tagline */
.tagline {
  font-size: clamp(1rem, 2vw + 1rem, 1.5rem);
  max-width: 600px;
  line-height: 1.6;
  opacity: 0.85;
  margin-bottom: 1.25rem;
}

/* “COMING SOON — NOV 15” badge */
.launch {
  margin-top: 1rem;
}

.launch .pill {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .65rem 1rem;
  border-radius: 999px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(8px);      /* graceful no-op where unsupported */
  -webkit-backdrop-filter: blur(8px);
  color: var(--text-light);
  font-weight: 600;
  letter-spacing: .06em;
  text-shadow: var(--glow);
  box-shadow: 0 0 0 1px rgba(255, 140, 50, .15), 0 10px 30px rgba(0,0,0,.45);
  /* steady glow, no flicker */
}

/* Optional tiny pulse (disabled by default) */
/*
.launch .pill { animation: breathe 4s ease-in-out infinite; }
@keyframes breathe {
  0%, 100% { box-shadow: 0 0 0 1px rgba(255,140,50,.15), 0 10px 30px rgba(0,0,0,.45); }
  50% { box-shadow: 0 0 12px 2px rgba(255,140,50,.35), 0 14px 38px rgba(0,0,0,.55); }
}
*/

/* Accessibility: respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .launch .pill { animation: none !important; }
}
