:root {
  --black: #050505;
  --white: #ffffff;
  --muted: rgba(255, 255, 255, 0.72);
  --line: rgba(255, 255, 255, 0.18);
  --glass: rgba(0, 0, 0, 0.42);
  --accent: #7b2cff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

img {
  display: block;
  width: 100%;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at center, #231133 0%, #050505 60%);
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.18), rgba(0,0,0,0.35));
  z-index: 2;
  pointer-events: none;
}

.hero-fallback {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 2rem;
  text-shadow: 0 10px 40px rgba(0, 0, 0, 0.7);
}

.hero-fallback h1 {
  margin: 0;
  font-family: Anton, Impact, sans-serif;
  font-size: clamp(4rem, 14vw, 12rem);
  line-height: 0.9;
  letter-spacing: 0.04em;
}

.hero-fallback p {
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.25rem);
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.scroll-indicator {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  color: var(--white);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.75rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(10px);
  font-weight: 700;
}

.destinations {
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #090909;
}

.destination-card {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: grid;
  place-items: center;
  border-top: 1px solid var(--line);
}

.destination-card:first-child {
  border-right: 1px solid var(--line);
}

.destination-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.72;
  transform: scale(1.02);
}

.destination-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.72)),
    radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.45) 70%);
  z-index: 2;
}

.card-content {
  position: relative;
  z-index: 3;
  width: min(88%, 520px);
  text-align: center;
  padding: clamp(1.5rem, 4vw, 3rem);
  border: 1px solid var(--line);
  border-radius: 2rem;
  background: var(--glass);
  backdrop-filter: blur(14px);
  box-shadow: 0 24px 80px rgba(0,0,0,0.45);
}

.card-content h2 {
  margin: 0;
  font-family: Anton, Impact, sans-serif;
  font-size: clamp(2.5rem, 6vw, 5.6rem);
  line-height: 0.95;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.card-content p:not(.eyebrow) {
  margin: 1rem 0 1.5rem;
  color: var(--muted);
  font-size: 1rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  min-height: 52px;
  padding: 0 1.5rem;
  border-radius: 999px;
  background: var(--white);
  color: var(--black);
  text-decoration: none;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover {
  transform: translateY(-3px);
  background: var(--accent);
  color: var(--white);
}

@media (max-width: 800px) {
  .destinations {
    grid-template-columns: 1fr;
  }

  .destination-card,
  .destination-card:first-child {
    min-height: 82svh;
    border-right: 0;
  }

  .hero-fallback h1 {
    font-size: clamp(4rem, 20vw, 8rem);
  }
}
