/* Hilldale Golf Club — temporary site styles */

:root {
  --forest: #1a4d2e;
  --forest-dark: #123620;
  --sage: #bbb891;
  --sage-light: #e9e7d8;
  --ink: #222420;
  --paper: #fbfaf6;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
}

body {
  font-family: 'Poppins', 'Helvetica Neue', Arial, sans-serif;
  color: var(--ink);
  background: var(--forest-dark);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.hero {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background-image:
    linear-gradient(180deg, rgba(15, 41, 26, 0.78) 0%, rgba(15, 41, 26, 0.55) 45%, rgba(10, 28, 18, 0.9) 100%),
    url('hero.jpg');
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0) 40%, rgba(6,20,12,0.55) 100%);
  pointer-events: none;
}

.top-bar {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  padding: 32px 24px 0;
}

.logo-badge {
  background: rgba(251, 250, 246, 0.96);
  border-radius: 14px;
  padding: 10px 22px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}

.logo-badge img {
  display: block;
  height: 48px;
  width: auto;
}

.content {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px 60px;
}

.card {
  max-width: 680px;
  width: 100%;
  text-align: center;
  color: #fff;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.35);
  color: var(--sage-light);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 26px;
  backdrop-filter: blur(2px);
}

.eyebrow .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #e7c46c;
  box-shadow: 0 0 0 4px rgba(231, 196, 108, 0.25);
}

.status-code {
  font-size: 15vw;
  line-height: 0.9;
  font-weight: 700;
  color: rgba(255,255,255,0.14);
  margin: 0 0 -14px;
  letter-spacing: -0.02em;
}

@media (min-width: 640px) {
  .status-code { font-size: 108px; }
}

h1 {
  font-size: clamp(28px, 4.5vw, 42px);
  line-height: 1.2;
  font-weight: 700;
  margin: 0 0 16px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.35);
}

.subtext {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255,255,255,0.88);
  max-width: 520px;
  margin: 0 auto 36px;
  font-weight: 300;
}

.subtext strong {
  color: var(--sage-light);
  font-weight: 600;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-bottom: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  padding: 15px 28px;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  border: 2px solid transparent;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--sage);
  color: var(--forest-dark);
  box-shadow: 0 10px 28px rgba(0,0,0,0.28);
}

.btn-primary:hover {
  background: #cfcda3;
}

.btn-secondary {
  background: rgba(255,255,255,0.06);
  color: #fff;
  border-color: rgba(255,255,255,0.55);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.16);
  border-color: #fff;
}

.btn-ghost {
  background: transparent;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
  font-size: 14px;
  padding: 10px 6px;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 28px;
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  border-top: 1px solid rgba(255,255,255,0.18);
  padding-top: 24px;
  margin-top: 8px;
}

.meta-row a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
}

.meta-row a:hover {
  color: #fff;
  text-decoration: underline;
}

.meta-row span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.meta-row svg {
  width: 15px;
  height: 15px;
  opacity: 0.85;
}

footer {
  position: relative;
  z-index: 2;
  text-align: center;
  font-size: 12.5px;
  color: rgba(255,255,255,0.55);
  padding: 18px 16px 26px;
}
