/* ===== Sicarios Del Diablo MC — Coming Soon ===== */

:root {
  --bg: #06070a;
  --green: #35d05a;
  --green-dim: #1f7a37;
  --white: #f4f4f2;
  --grey: #b9bcb8;
  --font-display: 'Cinzel', serif;
  --font-body: 'Oswald', sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
}

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* subtle film-grain overlay for mood */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 5;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Page / banner ---------- */

.page {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.banner-wrap {
  position: relative;
  width: 100%;
  background: #000;
  line-height: 0;
}

.banner-img {
  display: block;
  width: 100%;
  height: auto;
  filter: saturate(1.05) contrast(1.05);
}

.banner-fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 22%;
  background: linear-gradient(180deg, rgba(6,7,10,0) 0%, rgba(6,7,10,1) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 3rem 1.5rem 3.5rem;
  max-width: 780px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1rem;
  background: var(--bg);
}

.eyebrow {
  font-family: var(--font-body);
  letter-spacing: 0.35em;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: var(--green);
  opacity: 0;
  animation: fadeUp 0.8s ease-out 0.1s forwards;
}

.coming-soon {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.08;
  text-transform: uppercase;
  font-size: clamp(2.2rem, 7vw, 4.6rem);
  letter-spacing: 0.02em;
  text-shadow: 0 0 25px rgba(53, 208, 90, 0.25), 0 4px 18px rgba(0,0,0,0.6);
}

.coming-soon .line {
  display: block;
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 0.9s ease-out forwards;
}

.coming-soon .line-1 { animation-delay: 0.3s; color: var(--white); }
.coming-soon .line-2 { animation-delay: 0.55s; }

.accent {
  color: var(--green);
  position: relative;
}

.tagline {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: var(--grey);
  font-weight: 400;
  max-width: 520px;
  opacity: 0;
  animation: fadeUp 0.9s ease-out 0.8s forwards;
}

.divider {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  width: 100%;
  max-width: 320px;
  opacity: 0;
  animation: fadeUp 0.9s ease-out 1s forwards;
}

.divider span:not(.skull) {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--green-dim), transparent);
}

.divider .skull {
  color: var(--green);
  font-size: 1rem;
  filter: drop-shadow(0 0 6px rgba(53, 208, 90, 0.5));
}

/* ---------- Footer ---------- */

.site-footer {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 1.1rem 1rem;
  font-size: 0.75rem;
  color: rgba(244,244,242,0.45);
  background: #050506;
  letter-spacing: 0.03em;
}

/* ---------- Animations ---------- */

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

