/* =========================================================
   RandomWorld.me — spin the globe, land somewhere new
   Bold / high-energy layout inspired by Red Bull's visual language
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Anton&family=Barlow+Condensed:wght@400;500;600;700&display=swap');

:root{
  --ink:      #0A0A0A;
  --paper:    #F4F4F2;
  --red:      #D2001C;
  --ink-soft: #7A7A78;
  --line:     #232323;

  --display: 'Anton', sans-serif;
  --body:    'Barlow Condensed', sans-serif;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }

body{
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *{ animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

::selection{ background: var(--red); color: #fff; }
:focus-visible{ outline: 2px solid var(--red); outline-offset: 3px; }

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

/* -------------------- navbar -------------------- */
.navbar{
  position: sticky;
  top: 0;
  z-index: 30;
  background: var(--ink);
  border-bottom: 3px solid var(--red);
}

.navbar-inner{
  max-width: 1300px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo{
  font-family: var(--display);
  font-size: 1.2rem;
  letter-spacing: 0.01em;
  color: #fff;
  white-space: nowrap;
}

.logo-accent{ color: var(--red); }

.navbar-links{
  list-style: none;
  display: none;
  gap: 28px;
  margin: 0;
  padding: 0;
  font-size: 1.02rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

@media (min-width: 800px){
  .navbar-links{ display: flex; }
}

.navbar-links a{ text-decoration: none; color: var(--paper); }
.navbar-links a:hover{ color: var(--red); }

.navbar-cta{
  background: var(--red);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 10px 20px;
  clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%);
  white-space: nowrap;
}

/* -------------------- hero -------------------- */
.hero{
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-bg{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-scrim{
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.35) 0%, rgba(10,10,10,0.55) 45%, rgba(10,10,10,0.95) 100%);
}

.hero-content{
  position: relative;
  z-index: 1;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 32px 80px;
  width: 100%;
}

.hero-kicker{
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 8px 16px;
  margin-bottom: 24px;
}

.hero-content h1{
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2.4rem, 7vw, 5.2rem);
  line-height: 1.02;
  margin: 0 0 26px;
  letter-spacing: 0.01em;
}

.hero-accent{ color: var(--red); }

.hero-sub{
  font-size: 1.15rem;
  color: rgba(244,244,242,0.85);
  max-width: 56ch;
  margin: 0 0 36px;
}

.btn-cta{
  display: inline-block;
  background: var(--red);
  color: #fff;
  text-decoration: none;
  font-family: var(--display);
  font-size: 1.15rem;
  padding: 18px 40px;
  letter-spacing: 0.02em;
  clip-path: polygon(5% 0, 100% 0, 95% 100%, 0 100%);
  transition: transform 0.15s ease;
}

.btn-cta:hover{ transform: translateY(-2px); }

.btn-cta-block{
  width: 100%;
  text-align: center;
  border: none;
  cursor: pointer;
  margin-top: 6px;
}

/* -------------------- stats band -------------------- */
.stats-band{
  background: var(--red);
  padding: 40px 0;
}

.stats-inner{
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

@media (min-width: 760px){
  .stats-inner{ grid-template-columns: repeat(4, 1fr); }
}

.stat-block{
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-num{
  font-family: var(--display);
  font-size: 2.2rem;
  color: #fff;
  line-height: 1;
}

.stat-label{
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: rgba(255,255,255,0.85);
}

/* -------------------- section titles -------------------- */
.section-title{
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--ink);
  margin: 0 0 40px;
  max-width: 1300px;
  padding: 0 32px;
  margin-left: auto;
  margin-right: auto;
}

.section-title-accent{
  color: var(--ink-soft);
  font-family: var(--body);
  font-size: 0.5em;
  text-transform: none;
  letter-spacing: 0;
  display: block;
  margin-top: 6px;
}

.section-title-light{ color: #fff; }

/* -------------------- destinations -------------------- */
.destinations{
  background: var(--paper);
  padding: 80px 0;
}

.dest-grid{
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
}

@media (min-width: 700px){
  .dest-grid{ grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1000px){
  .dest-grid{ grid-template-columns: repeat(4, 1fr); }
}

.dest-card{
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--ink);
}

.dest-card img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.dest-card:hover img{ transform: scale(1.06); }

.dest-tag{
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--red);
  color: #fff;
  font-family: var(--display);
  font-size: 0.72rem;
  text-transform: uppercase;
  padding: 6px 12px;
  letter-spacing: 0.03em;
}

.dest-caption{
  position: absolute;
  left: 0; right: 0; bottom: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.85), transparent);
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 32px 16px 16px;
}

/* -------------------- how it works -------------------- */
.how-section{
  background: var(--ink);
  padding: 90px 0;
  border-top: 3px solid var(--red);
}

.how-track{
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 760px){
  .how-track{ grid-template-columns: repeat(4, 1fr); }
}

.how-step{
  border-top: 3px solid var(--red);
  padding-top: 20px;
}

.how-num{
  display: block;
  font-family: var(--display);
  font-size: 1.6rem;
  color: var(--red);
  margin-bottom: 14px;
}

.how-step h3{
  font-family: var(--display);
  font-weight: 400;
  font-size: 1.15rem;
  text-transform: uppercase;
  margin: 0 0 10px;
  letter-spacing: 0.01em;
}

.how-step p{
  color: rgba(244,244,242,0.75);
  font-size: 0.98rem;
  margin: 0;
  max-width: 32ch;
}

/* -------------------- CTA section -------------------- */
.cta-section{
  background: var(--red);
  padding: 90px 0;
  text-align: center;
}

.cta-inner{
  max-width: 640px;
  margin: 0 auto;
  padding: 0 32px;
}

.cta-inner h2{
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: #fff;
  margin: 0 0 18px;
  line-height: 1.1;
}

.cta-inner p{
  color: rgba(255,255,255,0.9);
  font-size: 1.05rem;
  margin: 0 0 36px;
}

.cta-form{
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: rgba(0,0,0,0.2);
  padding: 24px;
}

.cta-form input{
  padding: 14px 16px;
  border: none;
  background: #fff;
  color: var(--ink);
  font-family: var(--body);
  font-size: 1rem;
  outline: none;
}

/* -------------------- footer -------------------- */
.site-footer{
  background: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 28px 32px;
  max-width: 1300px;
  margin: 0 auto;
  font-size: 0.85rem;
  color: rgba(244,244,242,0.6);
}

.footer-logo{ font-size: 1rem; }
