@import url('https://fonts.googleapis.com/css2?family=Creepster&display=swap');

/* Root theme */
:root{
  --wolf-black:#0b0b0e;
  --blood-red:#8B0000;
  --ember:#e3242b;
  --moon:#ececf1;
  --ash:#c4c7cf;
  --radius:16px;
  --gap:clamp(.75rem,2vw,1.25rem);
}

/* Base */
*{box-sizing:border-box}
html,body

{

	height:100%;
	margin:0;
	background:#000;
	color:var(--moon);
	font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,
	sans-serif;line-height:1.5}

a{
	color:inherit
}

/* Fluid title */
.title{
  color:var(--blood-red);
  font-family:"Creepster",system-ui;
  line-height:.9;
  text-wrap:balance;
  font-size:clamp(2rem,8vw + 1rem,6rem);
}
@supports (height:1svh){ .title{ font-size:clamp(5rem,7vw + 1svh,6.5rem); }}

/* HERO – full-viewport video */
.video-full{
  position:relative;
  width:100%;
  height:100dvh;            /* correct on iOS Safari */
  overflow:hidden;
  background:#000;
  isolation:isolate;
}

.video-full > video{
  position:absolute; inset:0;
  width:100%; height:100%;
  object-fit:contain;        /* show full frame so text in video isn’t cropped */
  object-position:center;
  background:#000;
}

/* Text & buttons over video */
.overlay{
  position:relative; z-index:2;
  height:100%;
  display:grid;
  place-items:center;
  text-align:center;
  padding:calc(16px + env(safe-area-inset-top)) 1rem calc(24px + env(safe-area-inset-bottom));
}
.video-full::after{
  content:"";
  position:absolute; inset:0;
  background:linear-gradient(180deg,rgba(0,0,0,.25),rgba(0,0,0,.45));
  z-index:1;
}

/* Buttons */
.actions{ display:flex; flex-wrap:wrap; gap:.6rem; justify-content:center; margin-top:1rem; }
.btn{
  display:inline-block;
  padding:.7rem 1rem;
  border-radius:var(--radius);
  border:1px solid rgba(255,255,255,.35);
  text-decoration:none;
  font-weight:700;
  font-size:1rem;
  backdrop-filter:blur(4px);
}
.btn-primary{ background:linear-gradient(180deg,var(--ember),var(--blood-red)); color:#fff; border-color:rgba(0,0,0,.35); }
.btn-secondary{ background:rgba(255,255,255,.1); color:#fff; }
.btn-ghost{ background:rgba(0,0,0,.45); color:#fff; }

/* Bottom scroll cue */
.scroll-cue{
  position:absolute; left:50%; bottom:calc(8px + env(safe-area-inset-bottom));
  transform:translateX(-50%);
  z-index:2; text-decoration:none; color:#fff; opacity:.8; font-size:1.5rem;
}

/* Sections below hero */
.sections{ background:linear-gradient(180deg,#0b0b0e,#14141b); }
.section{
  width:min(100% - 2rem, 960px);
  margin-inline:auto;
  padding:3rem 1rem;
}
.section h2{
  font-family:"Creepster",system-ui;
  color:var(--ember);
  font-size:clamp(1.6rem,4vw,2.25rem);
  margin:0 0 .75rem;
}
.section p{ color:var(--ash); }

/* Lists & cards */
.steps{ list-style-type: disc; padding-left:1.25rem; display:grid; gap:.5rem; }
.card-grid{ display:grid; grid-template-columns:1fr; gap:var(--gap); }
@media (min-width:720px){ .card-grid{ grid-template-columns:repeat(2,1fr); } }
@media (min-width:980px){ .card-grid{ grid-template-columns:repeat(3,1fr); } }
.card{
  background:linear-gradient(180deg,#14141b,#101018);
  border:1px solid rgba(255,255,255,.08);
  border-radius:var(--radius);
  padding:1rem;
}

/* Footer */
.site-footer{
  text-align:center;
  padding:2rem 1rem calc(2rem + env(safe-area-inset-bottom));
  color:#9aa;
  border-top:1px solid rgba(255,255,255,.08);
}

/* Accessibility tweaks */
:focus-visible{ outline:2px solid var(--ember); outline-offset:3px; }

/* Floating Buy Ticket button */
.floating-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #b3001b;
  color: #fff;
  padding: 14px 22px;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  text-decoration: none;
  z-index: 9999;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

/* Floating button container */
.floating-actions {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 9999; /* on top of video/content */
}

/* Shared floating button style (works with existing .btn classes) */
.floating-btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1rem;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease, background-color 0.2s ease, filter 0.2s ease;
  backdrop-filter: saturate(120%);
}

.floating-btn:hover {
  transform: scale(1.05);
  filter: brightness(1.1);
}

/* Optional: make sure they don't overlap cookie bars/toasts on very small screens */
@media (max-width: 480px) {
  .floating-actions {
    bottom: 14px;
    right: 14px;
    gap: 8px;
  }
}

/* Floating top action bar */
.floating-actions-top {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  background: rgba(0, 0, 0, 0.6); /* translucent backdrop */
  padding: 10px 0;
  z-index: 9999;
  backdrop-filter: blur(6px);
}

/* Buttons on the top bar */
.floating-btn-top {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 40px;
  font-weight: bold;
  text-decoration: none;
  font-size: 1rem;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease, background-color 0.2s ease, filter 0.2s ease;
}

/* Specific color variants */
.btn-ghost {
  background-color: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: 1px solid #fff;
}

.btn-secondary {
  background-color: #444;
  color: #fff;
}

.btn-primary {
  background-color: #b3001b;
  color: #fff;
}

/* Hover styling */
.floating-btn-top:hover {
  transform: scale(1.05);
  filter: brightness(1.1);
}

/* Mobile responsive adjustments */
@media (max-width: 600px) {
  .floating-actions-top {
    flex-direction: column;
    gap: 8px;
    padding: 10px 0;
  }
}


