/* ---------------- Reset & Base ---------------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
:root{
  --bg:#000;
  --glass: rgba(255,255,255,0.06);
  --glass-2: rgba(255,255,255,0.08);
  --accent:#00aaff;
  --accent-2:#00c6ff;
  --accent-dark:#0072ff;
  --card-radius:16px;
  --card-shadow: 0 8px 30px rgba(0,0,0,0.45);
  --glass-border: rgba(255,255,255,0.12);
}

body{
  font-family: 'Inter', 'Montserrat', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
  background: var(--bg);
  color: #fff;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  overflow-y: auto;
}

/* Spline background */
.background{
  position: fixed;
  top:50%;
  left:50%;
  width:150vw;
  height:150vh;
  transform: translate(-50%, -50%) scale(1.6);
  z-index:-1;
  background: #000;
}

/* page wrapper */
.page-wrap{
  max-width: 1200px;
  margin: 0 auto;
  padding: 28px 20px;
  position: relative;
  z-index: 1;
}

/* ---------------- Header ---------------- */
.brand{
  text-align:center;
  margin-bottom: 22px;
}
.brand h1{
  font-size: 52px;  /* increased size per request */
  font-weight: 800;
  letter-spacing: 1px;
}
.brand h1 .travel{
  color: #ffffff; /* Travel in white */
  -webkit-text-fill-color: #fff;
}
.brand h1 .ease{
  color: var(--accent-2); /* Ease in blue */
}
.brand p{
  margin-top: 6px;
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  opacity: 0.95;
}

/* simple top nav */
.top-nav{
  display:flex;
  justify-content:center;
  gap:14px;
  margin: 10px 0 16px;
}
.top-nav a{
  color:#fff;
  text-decoration:none;
  padding:8px 14px;
  border-radius:999px;
  background: rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.12);
  transition: transform .18s ease, background .18s ease;
}
.top-nav a:hover{ transform: translateY(-2px); background: rgba(255,255,255,0.12); }

/* ---------------- Top Controls: Upload | OR | Country ---------------- */
.top-controls{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin-bottom: 20px;
  /* IMPORTANT: keep side-by-side — do not wrap so elements stay in one row */
  flex-wrap: nowrap;
}

/* card baseline — increased sizes */
.card{
  background: var(--glass);
  backdrop-filter: blur(10px) saturate(1.05);
  border-radius: var(--card-radius);
  border: 1px solid var(--glass-border);
  padding: 28px; /* increased padding */
  box-shadow: var(--card-shadow);
  color: #fff;
  min-width: 360px;
  width: 400px;          /* slightly larger */
  transition: transform .28s ease, box-shadow .28s ease;
}
.card:hover{ transform: translateY(-6px); box-shadow: 0 18px 40px rgba(0,0,0,0.6); }

.card h2{
  font-size: 16px;
  margin-bottom: 12px;
  display:flex;
  align-items:center;
  gap:10px;
  color: var(--accent);
}
.card input[type="file"]{ background: transparent; color: #fff; }

/* select */
.custom-select select{
  width:100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(0,0,0,0.35);
  color: #fff;
  font-size: 14px;
}

/* OR separator (vertical) */
.or-sep{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:8px;
  width:48px;
  min-width:48px;
  text-align:center;
  color: var(--accent);
}
.or-sep .line{
  display:block;
  width:2px;
  height:48px;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
  border-radius:2px;
}
.or-sep .text{
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-weight:700;
  font-size:14px;
  color: var(--accent);
  opacity: 0.95;
}

/* ---------------- Dates / Go Button ---------------- */
.dates-wrap{ display:flex; justify-content:center; margin-bottom:18px; }
.date-card{
  max-width:480px;
  width:100%;
  text-align:center;
  padding:28px;
}
.date-card label{ display:block; margin-top:8px; font-size:13px; color:rgba(255,255,255,0.9); }
.date-card input[type="date"]{
  width:100%;
  padding:9px 12px;
  margin-top:6px;
  border-radius:10px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(0,0,0,0.35);
  color:#fff;
}

/* Go button */
.go-wrap{ display:flex; justify-content:center; margin-bottom:34px; }
.btn-go{
  padding:14px 34px;
  border-radius: 40px;
  border: none;
  background: linear-gradient(135deg, var(--accent-2), var(--accent-dark));
  color: #fff;
  font-weight:700;
  font-size:16px;
  cursor:pointer;
  box-shadow: 0 10px 30px rgba(0,114,255,0.28);
  transition: transform .18s ease, box-shadow .25s ease;
}
.btn-go:hover{ transform: translateY(-4px) scale(1.02); box-shadow: 0 16px 45px rgba(0,198,255,0.28); }

/* ---------------- Destinations ---------------- */
.destinations{
  padding: 28px 10px;
  margin-bottom: 60px;
}
.dest-title{
  font-size: 26px;
  font-weight:700;
  color: var(--accent-2);
  margin-bottom:8px;
  text-align:center;
}
.dest-sub{
  max-width:920px;
  margin: 0 auto 20px;
  color: rgba(255,255,255,0.88);
  text-align:center;
  font-size:15px;
  line-height:1.45;
}

/* grid: exactly three columns on wide screens */
.dest-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items:start;
  margin-top: 18px;
}

/* individual card */
.dest-card{
  background: var(--glass-2);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 10px 30px rgba(0,0,0,0.45);
  transition: transform .25s ease, box-shadow .25s ease;
  display:flex;
  flex-direction:column;
  min-height: 400px; /* increased height */
}
.dest-card:hover{ transform: translateY(-8px); box-shadow: 0 20px 50px rgba(0,0,0,0.6); }

.dest-card img{
  width:100%;
  height: 220px; /* slightly increased */
  object-fit: cover;
  display:block;
}

/* body */
.dest-body{
  padding: 16px;
  display:flex;
  flex-direction:column;
  gap:10px;
  flex:1;
}
.dest-body h3{
  font-size:18px;
  margin-bottom:2px;
  color: var(--accent);
}
.dest-body p{
  font-size:14px;
  line-height:1.45;
  color: rgba(255,255,255,0.92);
  flex:1;
}
.btn-explore{
  align-self:flex-start;
  padding:10px 18px;
  border-radius: 28px;
  border:none;
  background: linear-gradient(135deg, var(--accent-2), var(--accent-dark));
  color:#fff;
  font-weight:600;
  cursor:pointer;
  box-shadow: 0 8px 26px rgba(0,114,255,0.2);
  transition: transform .16s ease;
}
.btn-explore:hover{ transform: translateY(-4px); }

/* ---------------- Reveal animations ---------------- */
.reveal{ opacity:0; transform: translateY(18px); transition: all 0.6s cubic-bezier(.2,.9,.2,1); }
.reveal.show{ opacity:1; transform: none; }

/* ---------------- Footer (BLACK, small white icons, clickable, animated) ---------------- */
.footer{
  background: #000; /* pure black */
  color: #fff;
  text-align: center;
  padding: 22px 12px;
  font-size: 14px;
  border-top: 1px solid rgba(255,255,255,0.04);
  margin-top: 30px;
}

/* footer text */
.footer-text{
  margin: 0;
  font-weight: 500;
  color: #ffffff;
}

/* social icons container */
.social-icons{
  margin-top: 10px;
  display: flex;
  justify-content: center;
  gap: 18px;
  align-items: center;
}

/* clickable links - icons are intentionally very small and white */
.social-link{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;   /* VERY small */
  height: 22px;
  color: #fff;   /* icon color */
  text-decoration: none;
  transition: transform 0.18s cubic-bezier(.2,.9,.2,1), opacity 0.18s ease;
  opacity: 0.95;
  line-height: 0;
  border-radius: 4px;
}

/* SVGs inherit current color (white) and will remain crisp */
.social-link svg{
  width: 16px;  /* icon graphic slightly smaller inside container */
  height: 16px;
  fill: currentColor;
  display: block;
}

/* hover/focus animations */
.social-link:hover,
.social-link:focus{
  transform: translateY(-3px) scale(1.12);
  opacity: 1;
  outline: none;
}

/* keyboard focus ring for accessibility */
.social-link:focus-visible{
  box-shadow: 0 0 0 3px rgba(0,198,255,0.12);
  border-radius: 4px;
}

/* small screens: keep layout usable */
@media (max-width: 1100px){
  .card{ width: 340px; min-width: 260px; }
  .or-sep{ width:46px; }
  .dest-grid{ grid-template-columns: repeat(3, 1fr); gap: 14px; }
}

/* reduce to two columns on medium-small screens */
@media (max-width: 900px){
  .dest-grid{ grid-template-columns: repeat(2, 1fr); }
}

/* single column for narrow phones (destinations stack vertically) */
@media (max-width: 600px){
  /* The use
  r insisted upload & select side-by-side — to honor that we keep them side-by-side.
     However on extremely narrow phones horizontal scroll will appear (to avoid stacking). */
  .card{ width: 260px; min-width: 220px; }
  .dest-grid{ grid-template-columns: 1fr; }
}