:root {
  --yellow: #FFD04D;
  --orange: #E87A2D;
  --red: #C41E1E;
  --dark: #0d0d0d;
}

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

body {
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  background: var(--dark);
  color: #fff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ── Hero ── */
.hero {
  flex: 1;
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

/* Crossfading background images */
.hero-bg-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
}

.img1 {
  background-image: url('/imgs/572098899_18080822417471083_3600488202927817124_n.jpg');
  animation: bg-show 18s ease-in-out infinite;
  animation-delay: -9s; /* always exactly half the duration above */
}

.img2 {
  background-image: url('/imgs/573463396_18080822396471083_4904869339748842559_n.jpg');
  animation: bg-show 18s ease-in-out infinite;
}

@keyframes bg-show {
  0%,  40% { opacity: 1; }
  50%, 90% { opacity: 0; }
  100%     { opacity: 1; }
}

/* Dark gradient overlay sits above the images */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.65) 0%,
    rgba(0, 0, 0, 0.50) 40%,
    rgba(0, 0, 0, 0.75) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 560px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

/* ── Logo ── */
.logo-wrap {
  position: relative;
  width: min(200px, 55vw);
  height: min(200px, 55vw);
  margin-bottom: 0.25rem;
}

.logo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.7));
  transition: opacity 0.9s ease-in-out;
}

.logo-b {
  opacity: 0;
}

/* ── Heading ── */
h1 {
  font-size: clamp(2.25rem, 7vw, 3.25rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.1;
  color: var(--yellow);
}

/* ── Accent divider ── */
.divider {
  width: 64px;
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(to right, var(--yellow), var(--orange), var(--red));
  margin: 0.25rem 0;
}

/* ── Text ── */
.tagline {
  font-size: clamp(0.95rem, 2.5vw, 1.15rem);
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  line-height: 1.5;
}

.message {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
}

/* ── Social buttons ── */
.social-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 0.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
}

.btn-ig {
  background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
  color: #fff;
}

.btn-fb {
  background: #1877f2;
  color: #fff;
}

/* ── Footer ── */
footer {
  text-align: center;
  padding: 1.25rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.25);
  background: var(--dark);
}
