/* ===============================
   CLUBHOUSE 18 — CLEAN STYLESHEET
   Paste this as the ONLY content in styles.css
================================= */

/* ===== RESET ===== */
*{ margin:0; padding:0; box-sizing:border-box; }
html, body { height: 100%; }

:root{
  --bg:#0c1118;
  --panel:#111827;
  --panel2:#0f172a
  --text:#e5e7eb;
  --muted:#9ca3af;
  --gold:#f7c84b;
  --gold2:#d8a722;
  --shadow: 0 18px 55px rgba(0,0,0,.55);
  --radius: 16px;
}

body{
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x:hidden;
}

/* ===== PAGE WRAPPER (optional) ===== */
.container{
  width: min(1100px, 92vw);
  margin: 0 auto;
}

/* ===============================
   NAV (ALL PAGES)
================================= */
.nav, nav{
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 16px 22px;
  background: rgba(12,17,24,.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.06);
  display:flex;
  align-items:center;
  justify-content:space-between;
}

/* Brand area (supports either .brand as link or div) */
.brand{
  display:flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  color:#fff;
}

/* Logo — prevents “giant C18” */
.nav-logo,
.brand img{
  width: 100px;
  height: 100px;
  object-fit: contain;
  display:block;
  filter: drop-shadow(0 10px 25px rgba(0,0,0,.45));
}

.brand-text,
.brand span{
  color:#fff;
  font-weight:800;
  letter-spacing:.08em;
  font-size: 14px;
  opacity:.95;
}

/* Nav links (supports .nav-links or .navlinks) */
.nav-links,
.navlinks{
  display:flex;
  align-items:center;
  gap:18px;
}

.nav a,
.navlinks a,
.nav-links a{
  color: rgba(255,255,255,.92);
  text-decoration:none;
  font-weight:700;
  letter-spacing:.02em;
  font-size: 15px;
  padding: 8px 10px;
  border-radius: 10px;
  transition: all .2s ease;
  opacity: .95;
}

.nav a:hover,
.navlinks a:hover,
.nav-links a:hover{
  color: var(--gold);
  background: rgba(247,200,75,.08);
  opacity: 1;
}

/* Mobile nav */
@media (max-width: 700px){
  .nav, nav{ padding: 12px 14px; }
  .brand-text, .brand span{ display:none; }
  .nav-links, .navlinks{ gap:10px; }
  .nav a, .navlinks a{ font-size:14px; padding: 8px 8px; }
  .nav-logo, .brand img{ width:36px; height:36px; }
}

/* ===============================
   HOME HERO
================================= */
.hero{
  position: relative;
  min-height: 95vh;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  padding: 40px 20px;
  overflow:hidden;
}

/* ✅ BACKGROUND IMAGE (this fixes “lost photo”) */
/* Make sure this file exists: /assets/clubhouse18-bg.jpg */
.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background: url("/assets/clubhouse18-bg.jpg") center/cover no-repeat;
  filter: brightness(1.20) contrast(1.10) saturate(1.12);
  transform: scale(1.02);
  z-index:0;
}

/* Overlay — lighter so the photo shows */
.hero::after{
  content:"";
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.22);
  z-index:1;
}

/* If your HTML uses a .hero-bg div, support it too */
.hero-bg{
  position:absolute;
  inset:0;
  background: url("/assets/clubhouse18-bg.jpg") center/cover no-repeat;
  filter: brightness(1.20) contrast(1.10) saturate(1.12);
  transform: scale(1.02);
  opacity: 1;
  z-index:0;
}

/* Keep hero content above layers */
.hero > *{
  position:relative;
  z-index:2;
}

/* ===============================
   HERO TEXT
================================= */
/* ✅ THIS is the paragraph you want under “Real golf. Any day.” */
.hero-subtext{
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.65;
  max-width: 980px;
  margin: 0 auto 18px;   /* moves it UP under tagline */
  font-weight: 500;
  letter-spacing: .01em;
  color: rgba(255,255,255,.95);
  text-shadow: 0 2px 14px rgba(0,0,0,.55);
}

/* ===============================
   COUNTDOWN + EMAIL + SOCIALS
   (also styles them even if your HTML is “plain links”)
================================= */
.countdown{
  display:flex;
  justify-content:center;
  gap:14px;
  flex-wrap:wrap;
  margin: 12px 0 18px;
}

.timebox{
  background: rgba(17,24,39,.85);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 14px;
  padding: 14px 16px;
  min-width: 128px;
  text-align:center;
  box-shadow: 0 14px 40px rgba(0,0,0,.35);
}

.timebox .num{
  color: var(--gold);
  font-weight: 900;
  font-size: 34px;
  line-height: 1;
}

.timebox .lbl{
  margin-top: 8px;
  color: #cbd5e1;
  font-weight: 800;
  letter-spacing: 2px;
  font-size: 12px;
  text-transform: uppercase;
}

/* Email capture */
.capture{
  display:flex;
  gap:10px;
  justify-content:center;
  align-items:center;
  flex-wrap:wrap;
  margin: 10px 0 14px;
}

.capture input{
  width: min(560px, 92vw);
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.95);
  padding: 0 18px;
  font-size: 15px;
  outline: none;
}

.capture button,
button.notify,
#notifyBtn{
  height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: #111;
  font-weight: 900;
  box-shadow: 0 14px 40px rgba(0,0,0,.35);
}
.capture button:hover{ filter: brightness(1.03); }

/* Follow Our Journey + pretty social buttons */
.follow{
  text-align:center;
  margin-top: 8px;
}

.follow h3{
  font-size: 13px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #cbd5e1;
  margin-bottom: 10px;
}

/* If your HTML has .socials wrapper */
.socials{
  display:flex;
  justify-content:center;
  gap:12px;
  flex-wrap:wrap;
}

/* If your HTML is just plain links, this still upgrades them */
.follow a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width: 160px;
  padding: 12px 16px;
  border-radius: 999px;
  text-decoration:none;
  color:white;
  font-weight: 900;
  box-shadow: 0 14px 40px rgba(0,0,0,.35);
  margin: 6px 6px;
}

/* Preferred class-based styling */
.socials a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width: 160px;
  padding: 12px 16px;
  border-radius: 999px;
  text-decoration:none;
  color:white;
  font-weight: 900;
  box-shadow: 0 14px 40px rgba(0,0,0,.35);
}

.socials a.facebook,
.follow a.facebook{
  background:#1877F2;
}

.socials a.instagram,
.follow a.instagram{
  background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af, #515bd4);
}

/* Hiring button */
.hiring{
  margin-top: 14px;
  text-align:center;
}

.hiring a,
.follow a.apply{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 20px;
  border-radius: 999px;
  text-decoration:none;
  color: var(--gold);
  font-weight: 900;
  border: 1px solid rgba(247,200,75,.35);
  background: rgba(0,0,0,.28);
  box-shadow: 0 14px 40px rgba(0,0,0,.25);
}

.hiring a:hover,
.follow a.apply:hover{
  background: rgba(247,200,75,.08);
}

/* ===============================
   OTHER PAGES (Experience/Careers/Contact)
   makes them consistent + not “cheap links”
================================= */
.page-hero{
  position: relative;
  margin-top: 18px;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.page-hero .hero-bg{
  opacity: .55; /* more faded for experience */
  filter: saturate(1.05) contrast(1.05);
}

.page-hero::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(90% 70% at 50% 30%, rgba(0,0,0,.25), rgba(0,0,0,.80)),
    linear-gradient(to bottom, rgba(0,0,0,.35), rgba(0,0,0,.78));
}

.page-hero-inner{
  position: relative;
  z-index: 2;
  padding: 48px 18px;
  text-align: center;
}

.page-hero-inner h1{
  color: var(--gold);
  letter-spacing: 6px;
  text-transform: uppercase;
  font-size: clamp(28px, 4vw, 50px);
  text-shadow: 0 12px 30px rgba(0,0,0,.7);
}

.page-hero-inner p{
  margin: 18px auto 0;
  max-width: 880px;
  color: #e5e7eb;
  line-height: 1.7;
  font-size: 16px;
}

.page-hero-inner .btn{
  margin-top: 18px;
  display:inline-flex;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(247,200,75,.35);
  color: var(--gold);
  text-decoration:none;
  font-weight: 900;
  background: rgba(0,0,0,.25);
}
.page-hero-inner .btn:hover{
  background: rgba(247,200,75,.08);
}

/* ===== FOOTER ===== */
footer{
  margin-top: 38px;
  padding: 22px 0 40px;
  color: #8b95a7;
  text-align:center;
  border-top: 1px solid rgba(255,255,255,.06);
}

/* ===== MOBILE HERO BACKGROUND ADJUSTMENT ===== */
@media (max-width: 640px){
  .hero{ min-height: 85vh; padding-top: 60px; }
  .hero::before,
  .hero-bg{
    background-size: 95% auto;
    background-position: center top;
    transform: scale(1);
  }
  .hero-subtext{
    font-size: 18px;
    margin: -2px auto 18px auto;
    padding: 0 8px;
  }
}
/* ===== HOME HERO: COMING SOON + BACKGROUND POSITION (CLEAN) ===== */

/* Move the background image UP (helps hide baked-in "COMING SOON" in the picture) */
.hero::before{
  background-position: center 12% !important;  /* try 12%–28% */
}

/* If your page uses .hero-bg instead */
.hero-bg{
  background-position: center 18% !important;
}

/* Make COMING SOON big again */
.coming-soon{
  position:absolute;
  top:-245px;              /* LOWER number = higher on screen */
  left:50%;
  transform:translateX(-50%);
  font-size: clamp(30px, 6vw, 65px);
  letter-spacing:.0em;
  line-height: .85;
  font-weight:900;
  color:#f7c84b;
  text-transform:uppercase;
  text-shadow: 0 14px 35px rgba(0,0,0,.75);
  z-index:5;
}

/* Mobile */
@media (max-width: 640px){
  .hero::before{ 
      background-size: 150% auto !important;
      background-position: center 20% !important; }
  .hero-bg{ background-position: center 14% !important; }

  }
  
  /* MOBILE: keep the top of the hero image visible (where COMING SOON is) */
@media (max-width: 768px){
  .hero::before{
    background-position: center 20% !important; /* move image UP (try 15%–35%) */
    background-size: 120% auto !important;
  }

  .hero{
    min-height: 80vh; /* optional: prevents weird stretching */
    padding-top: 70px; /* optional: gives room under nav */
  }
}
@media (max-width: 768px){

  .coming-soon{
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 34px;
    letter-spacing: .25em;
    text-transform: uppercase;
    line-height: .9;

    background: linear-gradient(90deg, #f7c84b, #ffdf6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    text-shadow: 0 6px 20px rgba(0,0,0,.6);
  }
