/* General styles */
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #f4fdf9;
}

/* ✅ Header and Navbar */
header {
  background-color: #90ee90; /* Light green */
  padding: 10px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header h1, .logo {
  margin: 0;
  font-size: 2rem;         /* Increased font size */
  font-weight: 700;
  color: #000000;
}

nav a {
  position: relative;
  margin-left: 20px;
  text-decoration: none;
  color: #000000;
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.4px;
  transition: color 0.3s;
}

/* ✅ Underline effect on hover */
nav a::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  left: 0;
  bottom: -4px;
  background-color: #003300;
  transition: width 0.3s ease-in-out;
}

nav a:hover::after {
  width: 100%;
}

nav a:hover {
  color: #003300;
}

/* ✅ Hero section for Home page */
.hero {
  background-image: url('https://images.unsplash.com/photo-1506748686214-e9df14d4d9d0?w=1600');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  text-align: center;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 0;
}

.hero-text {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.hero h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.hero p {
  font-size: 1.3rem;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.6);
  margin: 0;
}

.hero span {
  color: #90ee90;
}

/* ✅ Destination Grid */
.destination-grid {
  padding: 2rem;
  text-align: center;
}

.destination-grid h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #006400;
}

.grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.region {
  width: 250px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.region:hover {
  transform: translateY(-5px);
}

.region img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.region h3 {
  margin: 0.5rem;
  color: #006400;
}

.region ul {
  list-style-type: disc;
  padding: 0 1rem 1rem;
  text-align: left;
}
