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

body {
  font-family: 'Poppins', sans-serif;
  background: #0e0e0e;
  color: #f5f5f5;
  line-height: 1.6;
}

/* Navbar */
header {
  background: #111;
  padding: 15px 40px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo a {
  color: #f5b642;
  font-size: 1.5rem;
  font-weight: 700;
  text-decoration: none;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}

.nav-links li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.nav-links li a:hover,
.nav-links li a.active {
  color: #f5b642;
}

/* Hero Section */
.hero {
  background: url('../images/photoshop-lankavoy.png') center/cover no-repeat !important;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.1);
  z-index: 1;
}

.hero .hero-text {
  position: relative;
  z-index: 2;
}

.hero-text h1 {
  font-size: 2.5rem;
  color: #fff;
}

.hero-text p {
  margin-top: 10px;
  font-size: 1.1rem;
  color: #d0d0d0;
}

/* Itinerary Timeline */
.itinerary {
  padding: 60px 20px;
}

.container {
  max-width: 900px;
  margin: auto;
}

.day {
  position: relative;
  margin-bottom: 40px;
  padding: 20px 20px 20px 40px;
  border-left: 3px solid #f5b642;
  background: #1a1a1a;
  border-radius: 8px;
}

.day::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 25px;
  width: 16px;
  height: 16px;
  background: #f5b642;
  border-radius: 50%;
}

.day h3 {
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.day p {
  color: #d0d0d0;
  margin: 5px 0;
}

/* Footer */
footer {
  background: #111;
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
  color: #aaa;
}
 .dot {
    width: 16px; height: 16px; border-radius: 50%;
    background-image: url("data:image/png;base64,");
    background-size: cover;
  }
  /* or for a hero */
  .hero {
    background-image: url("images/photoshop\ lankavoy.png");
    background-position: center; background-size: cover;
  }