/* Cayman Barbell Club - Landing Page Styles */

/* Reset & base */
* { box-sizing: border-box; }
html, body { height: 100%; margin: 0; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, "Helvetica Neue", Arial, sans-serif;
  color: #fff;
  background: #111;
}

/* Hero section */
.hero {
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;       /* vertical centering */
  justify-content: center;   /* horizontal centering */
  position: relative;
  overflow: hidden;
  padding: clamp(16px, 3vw, 40px);
  text-align: center;
}

/* Background image */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("/background.jpg") center/cover no-repeat;
  filter: grayscale(100%) brightness(65%);
  z-index: 0;
}

/* Gradient overlay */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    120% 120% at 50% 35%,
    rgba(0,0,0,.05),
    rgba(0,0,0,.35) 70%
  );
  z-index: 0;
}

/* Panel */
.panel {
  position: relative;
  z-index: 1;
  width: min(680px, 100%);
  background: rgba(20, 20, 20, 0.55);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 16px;
  padding: clamp(20px, 4vw, 40px);
  box-shadow: 0 10px 40px rgba(0,0,0,.35);
  text-align: center;
}

/* Logo */
.logo {
  width: min(220px, 70%);
  height: auto;
  display: block;
  margin: 0 auto clamp(18px, 3vw, 28px);
}

/* Headings & separators */
h1 {
  font-size: clamp(18px, 2.2vw, 22px);
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 600;
  margin: 0 0 2px 0;
}

.hr {
  width: 120px;
  height: 2px;
  margin: 8px auto 14px;
  background: linear-gradient(90deg, rgba(255,255,255,.05), #ffffff, rgba(255,255,255,.05));
  opacity: .75;
}

/* Stars row */
.stars {
  display: inline-flex;
  gap: 8px;
  margin-top: 6px;
}
.star {
  width: 10px; height: 10px;
  background: #fff;
  transform: rotate(45deg);
  display: inline-block;
  opacity: .75;
}
.star--accent { background: #e6402c; opacity: 1; }

/* Body copy */
.lead {
  margin: 18px auto 0;
  line-height: 1.55;
  max-width: 46ch;
  font-size: clamp(14px, 1.6vw, 16px);
  color: rgba(255,255,255,.9);
}

.cta {
  margin-top: clamp(18px, 2.5vw, 26px);
}

a.button {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.35);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: .02em;
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}
a.button:hover {
  background: #e6402c;
  border-color: #e6402c;
  transform: translateY(-1px);
}

/* Footer watermark */
.watermark {
  position: fixed;
  left: 12px;
  bottom: 10px;
  color: rgba(255,255,255,.35);
  font-size: 12px;
  letter-spacing: .03em;
}

/* Small devices tweaks */
@media (max-width: 420px) {
  .panel { padding: 18px; }
  .hr { width: 96px; }
}
