:root {
  --bg: #090c28;
  --bg2: #1a1442;
  --accent: #9b7bff;
  --accent2: #b97bff;
  --muted: #cbbaff;
  font-family: 'Inter', system-ui, sans-serif;
}

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

body {
  background: linear-gradient(180deg, var(--bg), var(--bg2));
  color: #fff;
  min-height: 100vh;
}

/* NAV */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 36px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(8px);
  position: sticky;
  top: 0;
  z-index: 20;
}

.brand {
  font-weight: 800;
  letter-spacing: 1px;
  color: white;
  font-size: 1.2rem;
}

.nav nav a {
  margin-left: 18px;
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
}

.nav nav a.active {
  color: var(--accent2);
}


/* Destinations Section */
.destinations {
  text-align: center;
  padding: 3rem 1.5rem;
}

.destinations h1 {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}

.destinations p {
  color: #cfcfe6;
  margin-bottom: 2rem;
}

/* Cards Grid */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.8rem;
  max-width: 1200px;
  margin: auto;
}

/* Card Style with Glow */
.card {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  cursor: pointer;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  background: linear-gradient(145deg, rgba(25, 20, 60, 0.7), rgba(15, 10, 40, 0.8));
  box-shadow: 0 0 20px rgba(120, 90, 255, 0.2);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 35px rgba(140, 110, 255, 0.5);
}

.card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 1rem;
  transition: transform 0.5s ease;
}

.card:hover img {
  transform: scale(1.08);
}

/* Overlay */
.overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 1rem;
  background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
  color: white;
  text-align: left;
}

.overlay h2 {
  margin: 0;
  font-size: 1.3rem;
}

.overlay p {
  font-size: 0.9rem;
  color: #d0d0ff;
  margin: 0.3rem 0 0.6rem;
}

/* Book Now Button (gradient + glow) */
.overlay .btn {
  display: inline-block;
  background: linear-gradient(90deg, #7f5cff, #5b8aff);
  color: white;
  padding: 0.45rem 0.9rem;
  border-radius: 0.6rem;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(120, 80, 255, 0.3);
}

.overlay .btn:hover {
  background: linear-gradient(90deg, #5b8aff, #7f5cff);
  box-shadow: 0 0 25px rgba(130, 100, 255, 0.6);
  transform: scale(1.05);
}

/* Footer */
footer {
  text-align: center;
  padding: 1.5rem;
  color: #a3a3d1;
  border-top: 1px solid #2c2c58;
  margin-top: 3rem;
}
