/* ============================================================
   BIGFOOT.CY — HOLDING PAGE  style.css
   Self-contained. Deploy /holding as root.
   ============================================================ */

/* ─── FONTS ─── */
/* Loaded via Google Fonts in <head> */

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { width: 100%; height: 100%; overflow: hidden; }

/* ─── TOKENS ─── */
:root {
  --amber:       #C9933A;
  --amber-lt:    #E8B96A;
  --cream:       #F2EDE4;
  --cream-dim:   rgba(242,237,228,0.72);
  --bg:          #080808;
  --white:       #FFFFFF;
  --border:      rgba(255,255,255,0.09);
  --border-lt:   rgba(255,255,255,0.18);

  --ff-display:  'Cormorant Garamond', Georgia, serif;
  --ff-grotesk:  'DM Sans', system-ui, sans-serif;

  --ease-expo:   cubic-bezier(0.16, 1, 0.3, 1);
  --ease-inout:  cubic-bezier(0.65, 0, 0.35, 1);

  --header-h:    80px;
}

/* ─── BASE ─── */
body {
  background: var(--bg);
  color: var(--cream);
  font-family: var(--ff-grotesk);
  -webkit-font-smoothing: antialiased;
}

button { cursor: pointer; background: none; border: none; color: inherit; }
img    { display: block; }

/* ════════════════════════════════════════
   FIXED HEADER (logo + coming-soon pill)
════════════════════════════════════════ */
.h-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(24px, 5vw, 64px);
  /* fade in on load */
  animation: fadeDown 1s var(--ease-expo) 0.2s both;
}

.h-header::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(8,8,8,0.72) 0%, transparent 100%);
  pointer-events: none;
  z-index: -1;
}

@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Logo */
.h-logo {
  display: flex;
  align-items: center;
  gap: 14px;
}
.h-logo img {
  height: 56px;
  width: auto;
}
.h-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.h-logo-text strong {
  font-family: var(--ff-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: 0.01em;
}
.h-logo-text span {
  font-family: var(--ff-grotesk);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber);
  margin-top: 5px;
}

/* Coming soon pill */
.h-coming-pill {
  font-family: var(--ff-grotesk);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--amber);
  padding: 7px 18px;
  border-radius: 2px;
  animation: fadeDown 1s var(--ease-expo) 0.5s both;
}

/* ════════════════════════════════════════
   HERO — FULLSCREEN
════════════════════════════════════════ */
#hero {
  position: fixed;
  inset: 0;
  overflow: hidden;
  background: var(--bg);
}

/* ─── Slides wrapper ─── */
.h-slides-wrapper {
  position: absolute;
  inset: 0;
}

/* Each slide */
.h-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.4s var(--ease-inout);
}
.h-slide.active { opacity: 1; }

/* Background image with slow zoom-in */
.h-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1);
  transition: transform 14s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}
.h-slide.active .h-slide-bg { transform: scale(1.1); }

/* Video (optional) */
.h-slide-video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}

/* ─── Grain overlay ─── */
.h-grain {
  position: absolute;
  inset: -120px;
  width: calc(100% + 240px);
  height: calc(100% + 240px);
  z-index: 2;
  pointer-events: none;
  opacity: 0.048;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23g)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
  animation: grain-anim 0.4s steps(1) infinite;
}
@keyframes grain-anim {
  0%   { transform: translate(0,0); }
  20%  { transform: translate(-3px, 2px); }
  40%  { transform: translate(2px,-3px); }
  60%  { transform: translate(-1px, 4px); }
  80%  { transform: translate(4px,-1px); }
  100% { transform: translate(-2px, 1px); }
}

/* ─── Gradients ─── */
.h-grad-left {
  position: absolute; inset: 0; z-index: 3;
  background: linear-gradient(
    to right,
    rgba(8,8,8,0.88) 0%,
    rgba(8,8,8,0.55) 45%,
    rgba(8,8,8,0.12) 100%
  );
  pointer-events: none;
}
.h-grad-bottom {
  position: absolute; inset: 0; z-index: 3;
  background: linear-gradient(
    to top,
    rgba(8,8,8,1)    0%,
    rgba(8,8,8,0.7)  18%,
    transparent      55%
  );
  pointer-events: none;
}

/* ════════════════════════════════════════
   SLIDE CONTENT (typography)
════════════════════════════════════════ */
.h-slide-content {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: flex;
  align-items: flex-end;
  padding: 0 clamp(24px, 7vw, 96px);
  padding-bottom: clamp(100px, 14vw, 160px);
}

/* Individual text block — shown for current slide */
.h-text-block {
  max-width: 680px;
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.9s 0.3s var(--ease-expo),
    transform 0.9s 0.3s var(--ease-expo);
  /* hidden by default, JS adds .active */
  display: none;
}
.h-text-block.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* Tag */
.h-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-grotesk);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber);
  border: 1px solid rgba(201,147,58,0.35);
  border-radius: 2px;
  padding: 5px 13px;
  margin-bottom: 20px;
}

/* Headline */
.h-headline {
  font-family: var(--ff-display);
  font-size: clamp(2.4rem, 6.5vw, 5.5rem);
  font-weight: 900;
  line-height: 1.04;
  color: var(--white);
  margin-bottom: 20px;
  text-shadow: 0 4px 40px rgba(0,0,0,0.5);
}
.h-headline em {
  font-style: italic;
  color: var(--amber-lt);
}

/* Description */
.h-desc {
  font-family: var(--ff-grotesk);
  font-size: clamp(0.9rem, 1.6vw, 1.05rem);
  font-weight: 300;
  color: var(--cream-dim);
  line-height: 1.7;
  max-width: 520px;
}

/* ════════════════════════════════════════
   BOTTOM CONTROLS
════════════════════════════════════════ */
.h-controls {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(24px, 7vw, 96px) clamp(28px, 4vw, 44px);
  gap: 20px;
}

/* Launch note — left */
.h-launch-label {
  font-family: var(--ff-grotesk);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(242,237,228,0.35);
  white-space: nowrap;
}

/* Social icons — centred, card style matching main site */
.h-social {
  display: flex;
  align-items: center;
  gap: 14px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.h-social-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 72px;
  height: 72px;
  border-radius: 12px;
  border: 1px solid var(--border-lt);
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--cream-dim);
  text-decoration: none;
  transition: border-color 0.25s, color 0.25s, background 0.25s, transform 0.3s;
}
.h-social-link:hover {
  border-color: var(--amber);
  color: var(--amber);
  background: rgba(201,147,58,0.12);
  transform: translateY(-5px);
}

.h-social-icon {
  width: 26px; height: 26px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.h-social-icon svg {
  width: 100%; height: 100%;
  fill: currentColor;
  display: block;
}

.h-social-name {
  font-family: var(--ff-grotesk);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1;
}

/* Platform accent colours on hover */
.h-social-link.facebook:hover  { border-color: #4267B2; color: #7ea8f5; background: rgba(66,103,178,0.12); }
.h-social-link.instagram:hover { border-color: #E1306C; color: #f47caa; background: rgba(225,48,108,0.12); }
.h-social-link.tiktok:hover    { border-color: #69C9D0; color: #69C9D0; background: rgba(105,201,208,0.12); }
.h-social-link.youtube:hover   { border-color: #FF0000; color: #ff5555; background: rgba(255,0,0,0.12); }

/* Dots — right */
.h-dots {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-shrink: 0;
}
.h-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.28);
  transition: background 0.3s, width 0.35s;
  cursor: pointer;
  border: none;
  padding: 0;
}
.h-dot.active {
  background: var(--amber);
  width: 24px;
  border-radius: 3px;
}

/* ─── Progress bar ─── */
.h-progress {
  position: absolute;
  bottom: 0; left: 0;
  height: 2px;
  background: var(--amber);
  width: 0%;
  z-index: 30;
  opacity: 0.85;
}

/* ════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════ */
@media (max-width: 600px) {
  :root { --header-h: 64px; }
  .h-logo img { height: 42px; }
  .h-logo-text strong { font-size: 1rem; }
  .h-coming-pill { display: none; }
  .h-launch-label { display: none; }
  .h-controls {
    flex-direction: column-reverse;
    align-items: center;
    gap: 14px;
    padding-bottom: 24px;
  }
  .h-social {
    position: static;
    transform: none;
    gap: 10px;
  }
  .h-social-link { width: 58px; height: 58px; }
  .h-slide-content { padding-bottom: 200px; }
}
