/* ===== Basic Reset ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #ebe1d4;
  background-image:
    url("https://www.transparenttextures.com/patterns/papyrus.png");
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
}
.banner-content {
 margin: 10px 0 5px 0;
  height: 400px;
}

.hero-banner {
  margin: 10px 0 30px 0;
}


/* ===== HEADER ===== */
header {
  background: linear-gradient(90deg, #1b5e20 0%, #388e3c 50%, #c6a700 100%);
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  text-decoration: none;
}

.eagle-icon {
  width: 75px;
  height: 75px;
  object-fit: contain;
  background: none;
  border: none;
  border-radius: 12px;
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.25);
  transform: translateY(0);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.eagle-icon:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.35);
}

.logo span {
  color: #fff;
  font-weight: bold;
  font-size: 1.6rem;
  transition: all 0.3s ease;
}

.logo span:hover {
  color: #e9c00b;
  text-shadow: 0 0 8px rgba(255, 204, 0, 0.6);
}

/* Navigation */
nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
}

/* ===== NAVIGATION MENU ===== */
nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

/* ===== OVAL LINK STYLING ===== */
nav a {
  display: inline-block;
  padding: 6px 14px; /* smaller padding */
  border-radius: 40px; /* slightly less oval */
  background: linear-gradient(145deg, #000000, #a18b25);
  color: #f7f4f4;
  font-weight: 600;
  font-size: 0.8rem; /* smaller text size */
  letter-spacing: 0.4px;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

/* ===== Hover / Active Effects ===== */
nav a:hover,
nav a.active {
  background: linear-gradient(145deg, #ffb347, #ffcc00); /* Zambia copper/gold */
  color: #fcfdfc; /* dark green text */
  transform: translateY(-3px);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.25);
}

/* ===== HERO VIDEO SLIDER ===== */
.hero-slider {
  position: relative;
  width: 100%;
  height: 75vh;
  overflow: hidden;
}

.video-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  z-index: 0;
}

.video-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-slide.active {
  opacity: 1;
  z-index: 1;
}

/* ===== HERO TEXT (Above Video) ===== */
.hero-text {
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  background: none;
  z-index: 3;
}

.hero-text h1 {
  font-size: 4em;
  color: #f06407;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-shadow:
    0 0 12px rgba(5, 5, 5, 0.8),
    0 0 20px rgba(255, 179, 71, 0.8);
}

.hero-text p {
  font-size: 1.4em;
  color: #ffe291f5;
  font-weight: 600;
  margin-top: 10px;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
  letter-spacing: 1px;
}

/* ===== MAIN CONTENT ===== */
main {
  padding: 3rem 2rem;
  max-width: 1100px;
  margin: 2rem auto;
  background: linear-gradient(180deg, #ffffff 0%, #f5fbe9 40%, #e9f5f0 100%);
  border-radius: 42px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

h1, h2 {
  color: #1a1542;
  margin-bottom: 1rem;
  text-align: center;
}

p {
  margin-bottom: 1rem;
  color: #f8f6f6;
}

/* ===== DESTINATIONS SECTION ===== */
.destinations {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  justify-content: center;
  align-items: start;
  padding: 2rem 0;
}

/* ===== DESTINATION CARD ===== */
.hero-banner {
  position: relative;
  background: url("../images/beauty.jpg") center/cover no-repeat;
  height: 400px;
  border-radius: 25px;
  margin: 2rem auto;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.35);
  overflow: hidden;
}

.destination-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25);
}

.destination-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-bottom: 3px solid #006400;
}

.destination-card h3 {
  color: #006400;
  font-size: 1.1rem;
  margin: 1rem 0 0.5rem;
}

.destination-card p {
  color: #444;
  font-size: 0.9rem;
  padding: 0 1rem 1.5rem;
  line-height: 1.5;
}

/* ===== INTRO & HIGHLIGHTS SECTIONS ===== */
.intro, 
.highlights {
  text-align: center;
  padding: 3rem 2rem;
  max-width: 1000px;
  margin: 3rem auto;
  border-radius: 25px;
  background: linear-gradient(
    145deg,
    rgba(10, 230, 10, 0.85) 0%, 
    rgba(255, 140, 0, 0.85) 100%
  );
  color: #fff;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
  position: relative;
  overflow: hidden;
}

.intro h2, 
.highlights h2 {
  color: #e2e60d;
  margin-bottom: 1.5rem;
  font-size: 2rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  border-bottom: 3px solid #000;
  display: inline-block;
  padding-bottom: 0.5rem;
}

/* ===== FOOTER ===== */
footer {
  text-align: center;
  background: #004d00;
  color: #fff;
  padding: 1rem 0;
  margin-top: 3rem;
  font-size: 0.9rem;
  box-shadow: 0 -2px 10px rgb(248, 248, 248);
}

footer p {
  margin: 0;
}

/* ===== TOP ATTRACTIONS IMAGE GRID ===== */
.attractions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
  justify-items: center;
}

.attraction-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 5px 12px rgba(243, 238, 238, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  max-width: 300px;
}

.attraction-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 18px rgba(0, 0, 0, 0.25);
}

.attraction-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-bottom: 3px solid #006400;
}

.attraction-card h3 {
  color: #006400;
  font-size: 1.2rem;
  margin-top: 0.8rem;
}

.attraction-card p {
  color: #333;
  font-size: 0.9rem;
  padding: 0 1rem 1.2rem;
  line-height: 1.5;
}
/* ===== DESTINATIONS PAGE STYLING ===== */
.destinations {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  justify-items: center;
  padding: 3rem 2rem;
  background: linear-gradient(180deg, #fcf8d2 0%, #e5eb96 50%, #c0ca2e 100%);
  border-radius: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.destination-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 5px 12px rgb(14, 13, 13);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  max-width: 320px;
}

.destination-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(255, 179, 71, 0.3);
}

.destination-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 3px solid #006400;
}

.destination-card h3 {
  color: #006400;
  font-size: 1.25rem;
  margin-top: 0.8rem;
}

.destination-card p {
  color: #333;
  font-size: 0.95rem;
  padding: 0 1rem 1.5rem;
  line-height: 1.6;
}

.banner-content h1 {
  font-size: 3rem;
  color: #ffb347; /* Zambia copper-gold tone */
  text-shadow:
    0 0 10px rgba(247, 246, 246, 0.8),
    0 0 20px rgba(255, 179, 71, 0.8),
    0 0 30px rgba(255, 153, 51, 0.7);
  letter-spacing: 1px;
  font-weight: 800;
}

.banner-content p {
  font-size: 1.3rem;
  color: #ffe3e3; /* warm cream color for visibility */
  text-shadow:
    0 0 8px rgba(8, 8, 8, 0.7),
    0 0 15px rgba(255, 255, 255, 0.6);
  margin-top: 0.8rem;
  line-height: 1.6;
}

.banner-content p {
  font-size: 1.2rem;
  color: #3a3a3a;
  margin-top: 1rem;
}
.banner-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto; /* Centers horizontally */
  text-align: center; /* Centers text */
  padding: 3rem 2rem;
}

/* Title */
.banner-content h1 {
  font-size: 1.8rem;
  color: #0536d6; /* Zambia copper-gold */
  text-shadow:
    0 0 10px rgb(7, 7, 7),
    0 0 20px rgba(255, 179, 71, 0.8),
    0 0 30px rgba(255, 153, 51, 0.7);
  letter-spacing: 1px;
  font-weight:200;
  text-align: center;
  margin-bottom: 1rem;
}
/* Subtitle */
.banner-content p {
  font-size: 1.8rem;
  color: #f6f4fa;
  text-shadow:
    0 0 8px rgb(3, 3, 0),
    0 0 15px rgb(7, 6, 1);
  margin-top: 0rem;   /* <<< moves text UP */
  line-height: 1.2;
  text-align: center;
}
/* ===== DESTINATIONS PAGE BACKGROUND ===== */
/* ===== CULTURE PAGE BACKGROUND (Zambia Colors) ===== */
body.culture-page {
  background: linear-gradient(
    135deg,
    #006400 0%,      /* Zambia green */
    #000000 40%,     /* black stripe */
    #ff0000 70%,     /* red stripe */
    #f38e00 100%     /* golden copper tone */
  );
  background-attachment: fixed;
  background-size: cover;
  color: #fff;
}

.culture-hero {
  position: relative;
  text-align: center;
  padding: 6rem 2rem;
  background: linear-gradient(145deg, rgba(0, 100, 0, 0.7), rgba(255, 140, 0, 0.7));
  color: #f8f7f7;
}

.culture-hero h1 {
  font-size: 2.8em;
  color: #ffb347;
  font-weight: 900;
  text-shadow: 0 0 15px rgba(0, 0, 0, 0.7);
}

.culture-hero p {
  font-size: 1.1em;
  color: #f8e00a;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
  margin-top: 1rem;
}

.culture-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.culture-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.culture-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 18px rgba(255, 140, 0, 0.3);
}

.culture-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 4px solid #ffb347;
}

.culture-card h3 {
  color: #006400;
  font-size: 1.3rem;
  margin: 1rem 0 0.5rem;
}

.culture-card p {
  color: #b4981c;
  padding: 0 1rem 1.5rem;
  font-size: 1rem;
  line-height: 1.6;
}
/* === FINAL TWEAK: Destinations hero subtitle position === */
.hero-banner .banner-content p {
  position: relative;
  top: -10px;          /* move the line UP – adjust this number if needed */
  margin-top: 0;       /* cancel any previous margin-top */
  font-size: 1.6rem;
  color: #fdfcfc;
  text-shadow:
    0 0 8px rgba(10, 9, 9, 0.9),
    0 0 15px rgba(5, 5, 5, 0.9);
}
/* ===== CULTURE PAGE ===== */

.culture-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  justify-items: center;
  padding: 3rem 2rem;
}

.culture-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  max-width: 320px;
}

.culture-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(255, 179, 71, 0.4);
}

.culture-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 4px solid #228b22;
}

.culture-card h3 {
  color: #004d00;
  margin-top: 0.8rem;
  font-size: 1.25rem;
  font-weight: bold;
}

.culture-card p {
  color: #333;
  font-size: 0.95rem;
  padding: 0 1rem 1.5rem;
  line-height: 1.4
}

/* ===== TRAVEL PAGE BACKGROUND WITH MOSIOTONIA IMAGE ===== */
body.travel-page {
  background:
    linear-gradient(rgba(255, 255, 255, 0.35), rgba(245, 230, 190, 0.35)), /* almost transparent */
    url("../../images/mosiotonia.jpg") center/cover no-repeat fixed;
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  color: #222; /* slightly darker for contrast */
  font-family: 'Poppins', sans-serif;
}

/* Optional: make content easier to read over vivid photo */
.travel-content {
  background: rgba(248, 247, 247, 0.93);
  backdrop-filter: blur(8px);
  border-radius: 25px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

/* Hero Section */
/* ===== TRAVEL CONTENT - WATER GLASS EFFECT ===== */
/* ===== Basic Reset ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #ebe1d4;
  background-image:
    url("https://www.transparenttextures.com/patterns/papyrus.png");
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
}
.banner-content {
 margin: 10px 0 5px 0;
  height: 400px;
}

.hero-banner {
  margin: 10px 0 30px 0;
}


/* ===== HEADER ===== */
header {
  background: linear-gradient(90deg, #1b5e20 0%, #388e3c 50%, #c6a700 100%);
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  text-decoration: none;
}

.eagle-icon {
  width: 75px;
  height: 75px;
  object-fit: contain;
  background: none;
  border: none;
  border-radius: 12px;
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.25);
  transform: translateY(0);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.eagle-icon:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.35);
}

.logo span {
  color: #fff;
  font-weight: bold;
  font-size: 1.6rem;
  transition: all 0.3s ease;
}

.logo span:hover {
  color: #e9c00b;
  text-shadow: 0 0 8px rgba(255, 204, 0, 0.6);
}

/* Navigation */
nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
}

/* ===== NAVIGATION MENU ===== */
nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

/* ===== OVAL LINK STYLING ===== */
nav a {
  display: inline-block;
  padding: 6px 14px; /* smaller padding */
  border-radius: 40px; /* slightly less oval */
  background: linear-gradient(145deg, #000000, #a18b25);
  color: #f7f4f4;
  font-weight: 600;
  font-size: 0.8rem; /* smaller text size */
  letter-spacing: 0.4px;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

/* ===== Hover / Active Effects ===== */
nav a:hover,
nav a.active {
  background: linear-gradient(145deg, #ffb347, #ffcc00); /* Zambia copper/gold */
  color: #fcfdfc; /* dark green text */
  transform: translateY(-3px);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.25);
}

/* ===== HERO VIDEO SLIDER ===== */
.hero-slider {
  position: relative;
  width: 100%;
  height: 75vh;
  overflow: hidden;
}

.video-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  z-index: 0;
}

.video-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-slide.active {
  opacity: 1;
  z-index: 1;
}

/* ===== HERO TEXT (Above Video) ===== */
.hero-text {
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  background: none;
  z-index: 3;
}

.hero-text h1 {
  font-size: 4em;
  color: #f06407;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-shadow:
    0 0 12px rgba(5, 5, 5, 0.8),
    0 0 20px rgba(255, 179, 71, 0.8);
}

.hero-text p {
  font-size: 1.4em;
  color: #ffe291f5;
  font-weight: 600;
  margin-top: 10px;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
  letter-spacing: 1px;
}

/* ===== MAIN CONTENT ===== */
main {
  padding: 3rem 2rem;
  max-width: 1100px;
  margin: 2rem auto;
  background: linear-gradient(180deg, #ffffff 0%, #f5fbe9 40%, #e9f5f0 100%);
  border-radius: 42px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

h1, h2 {
  color: #1a1542;
  margin-bottom: 1rem;
  text-align: center;
}

p {
  margin-bottom: 1rem;
  color: #f8f6f6;
}

/* ===== DESTINATIONS SECTION ===== */
.destinations {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  justify-content: center;
  align-items: start;
  padding: 2rem 0;
}

/* ===== DESTINATION CARD ===== */
.destination-card {
  background: #070101;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  animation: fadeInUp 0.8s ease forwards;
}

.destination-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25);
}

.destination-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-bottom: 3px solid #006400;
}

.destination-card h3 {
  color: #006400;
  font-size: 1.1rem;
  margin: 1rem 0 0.5rem;
}

.destination-card p {
  color: #444;
  font-size: 0.9rem;
  padding: 0 1rem 1.5rem;
  line-height: 1.5;
}

/* ===== INTRO & HIGHLIGHTS SECTIONS ===== */
.intro, 
.highlights {
  text-align: center;
  padding: 3rem 2rem;
  max-width: 1000px;
  margin: 3rem auto;
  border-radius: 25px;
  background: linear-gradient(
    145deg,
    rgba(10, 230, 10, 0.85) 0%, 
    rgba(255, 140, 0, 0.85) 100%
  );
  color: #fff;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
  position: relative;
  overflow: hidden;
}

.intro h2, 
.highlights h2 {
  color: #e2e60d;
  margin-bottom: 1.5rem;
  font-size: 2rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  border-bottom: 3px solid #000;
  display: inline-block;
  padding-bottom: 0.5rem;
}

/* ===== FOOTER ===== */
footer {
  text-align: center;
  background: #004d00;
  color: #fff;
  padding: 1rem 0;
  margin-top: 3rem;
  font-size: 0.9rem;
  box-shadow: 0 -2px 10px rgb(248, 248, 248);
}

footer p {
  margin: 0;
}

/* ===== TOP ATTRACTIONS IMAGE GRID ===== */
.attractions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
  justify-items: center;
}

.attraction-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 5px 12px rgba(243, 238, 238, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  max-width: 300px;
}

.attraction-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 18px rgba(0, 0, 0, 0.25);
}

.attraction-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-bottom: 3px solid #006400;
}

.attraction-card h3 {
  color: #006400;
  font-size: 1.2rem;
  margin-top: 0.8rem;
}

.attraction-card p {
  color: #333;
  font-size: 0.9rem;
  padding: 0 1rem 1.2rem;
  line-height: 1.5;
}
/* ===== DESTINATIONS PAGE STYLING ===== */
.destinations {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  justify-items: center;
  padding: 3rem 2rem;
  background: linear-gradient(180deg, #fcf8d2 0%, #e5eb96 50%, #c0ca2e 100%);
  border-radius: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.destination-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 5px 12px rgb(14, 13, 13);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  max-width: 320px;
}

.destination-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(255, 179, 71, 0.3);
}

.destination-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 3px solid #006400;
}

.destination-card h3 {
  color: #006400;
  font-size: 1.25rem;
  margin-top: 0.8rem;
}

.destination-card p {
  color: #333;
  font-size: 0.95rem;
  padding: 0 1rem 1.5rem;
  line-height: 1.6;
}

.banner-content h1 {
  font-size: 3rem;
  color: #ffb347; /* Zambia copper-gold tone */
  text-shadow:
    0 0 10px rgba(247, 246, 246, 0.8),
    0 0 20px rgba(255, 179, 71, 0.8),
    0 0 30px rgba(255, 153, 51, 0.7);
  letter-spacing: 1px;
  font-weight: 800;
}

.banner-content p {
  font-size: 1.3rem;
  color: #ffe3e3; /* warm cream color for visibility */
  text-shadow:
    0 0 8px rgba(8, 8, 8, 0.7),
    0 0 15px rgba(255, 255, 255, 0.6);
  margin-top: 0.8rem;
  line-height: 1.6;
}

.banner-content p {
  font-size: 1.2rem;
  color: #3a3a3a;
  margin-top: 1rem;
}
.banner-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto; /* Centers horizontally */
  text-align: center; /* Centers text */
  padding: 3rem 2rem;
}

/* Title */
.banner-content h1 {
  font-size: 3.8rem;
  color: #ff9500; /* Zambia copper-gold */
  text-shadow:
    0 0 10px rgb(7, 7, 7),
    0 0 20px rgba(255, 179, 71, 0.8),
    0 0 30px rgba(255, 153, 51, 0.7);
  letter-spacing: 1px;
  font-weight:900;
  text-align: center;
  margin-bottom: 1rem;
}

/* Subtitle */
.banner-content p {
  font-size: 1.8rem;
  color: #faf9fc; /* warm cream for visibility */
  text-shadow:
    0 0 8px rgb(3, 3, 0),
    0 0 15px rgb(7, 6, 1);
  margin-top: 9.8rem;
  line-height: 1.2;
  text-align: center;
}
/* ===== DESTINATIONS PAGE BACKGROUND ===== */
/* ===== CULTURE PAGE BACKGROUND (Zambia Colors) ===== */
body.culture-page {
  background: linear-gradient(
    135deg,
    #006400 0%,      /* Zambia green */
    #000000 40%,     /* black stripe */
    #ff0000 70%,     /* red stripe */
    #f38e00 100%     /* golden copper tone */
  );
  background-attachment: fixed;
  background-size: cover;
  color: #fff;
}

.culture-hero {
  position: relative;
  text-align: center;
  padding: 6rem 2rem;
  background: linear-gradient(145deg, rgba(0, 100, 0, 0.7), rgba(255, 140, 0, 0.7));
  color: #f8f7f7;
}

.culture-hero h1 {
  font-size: 2.8em;
  color: #ffb347;
  font-weight: 900;
  text-shadow: 0 0 15px rgba(0, 0, 0, 0.7);
}

.culture-hero p {
  font-size: 1.1em;
  color: #f8e00a;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
  margin-top: 1rem;
}

.culture-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.culture-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.culture-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 18px rgba(255, 140, 0, 0.3);
}

.culture-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 4px solid #ffb347;
}

.culture-card h3 {
  color: #006400;
  font-size: 1.3rem;
  margin: 1rem 0 0.5rem;
}

.culture-card p {
  color: #b4981c;
  padding: 0 1rem 1.5rem;
  font-size: 1rem;
  line-height: 1.6;
}
/* ===== CULTURE PAGE ===== */

.culture-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  justify-items: center;
  padding: 3rem 2rem;
}

.culture-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  max-width: 320px;
}

.culture-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(255, 179, 71, 0.4);
}

.culture-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 4px solid #228b22;
}

.culture-card h3 {
  color: #004d00;
  margin-top: 0.8rem;
  font-size: 1.25rem;
  font-weight: bold;
}

.culture-card p {
  color: #333;
  font-size: 0.95rem;
  padding: 0 1rem 1.5rem;
  line-height: 1.4
}

/* ===== TRAVEL PAGE BACKGROUND WITH MOSIOTONIA IMAGE ===== */
/* ===== TRAVEL PAGE BACKGROUND WITH MOSIOTONIA IMAGE ===== */
body.travel-page {
  background:
    linear-gradient(rgba(255, 255, 255, 0.25), rgba(245, 230, 190, 0.25)),
    url("../../images/mosiotonia.jpg") center/cover no-repeat fixed;
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  color: #222;
  font-family: 'Poppins', sans-serif;
}

/* ===== TRAVEL HERO SECTION (Banner Restored) ===== */
.travel-hero {
  text-align: center;
  padding: 3rem 1rem 2rem;
  background: linear-gradient(90deg, #155d27 0%, #4f772d 40%, #b68c3a 100%);
  color: #fff;
  border-bottom: 4px solid #ffb347;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}

.travel-hero h1 {
  font-size: 2.4rem;
  color: #ffb347;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
  font-weight: 800;
}

.travel-hero p {
  font-size: 1rem;
  color: #fff8dc;
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  margin-top: 0.5rem;
}

/* ===== TRAVEL CONTENT (Glass Effect, Water Visible) ===== */
.travel-content {
  background: rgba(255, 255, 255, 0.45); /* slightly transparent */
  backdrop-filter: blur(8px) brightness(1.1);
  -webkit-backdrop-filter: blur(8px) brightness(1.1);
  color: #062b11;
  max-width: 950px;
  margin: 3rem auto;
  padding: 2.5rem;
  border-radius: 25px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

/* ===== CONTENT HEADINGS ===== */
.travel-content h2 {
  color: #01310f;
  text-align: center;
  margin-bottom: 1.2rem;
  font-size: 1.9rem;
  font-weight: 800;
  text-shadow: 0 0 6px rgba(255, 255, 255, 0.8);
}

/* ===== CONTENT LISTS ===== */
.travel-content ul {
  list-style-type: none;
  padding: 0;
  display: inline-block;
  text-align: left;
  margin: 1.2rem auto;
}

.travel-content li {
  position: relative;
  margin-bottom: 0.9rem;
  line-height: 1.7;
  padding-left: 1.4rem;
  color: #062b11;
  font-size: 1.05rem;
  font-weight: 500;
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.7);
}

.travel-content li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #1b7d37;
  font-weight: bold;
  font-size: 1.3rem;
}

/* Header refinement for logo area */
header {
  background: linear-gradient(90deg, #0f0f0f 0%, #388e3c 50%, #c6a700 100%);
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Header refinement for logo area */
header {
  background: linear-gradient(90deg, #0f0f0f 0%, #388e3c 50%, #c6a700 100%);
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
/* ===== ECO TOURISM PAGE (FINAL CLEAN VERSION) ===== */
body.eco-page {
  background: linear-gradient(180deg, #e9dbc9 0%, #e3d3bd 100%);
  color: #1e261e;
  font-family: 'Poppins', sans-serif;
}

/* ===== HERO SECTION ===== */
.eco-hero {
  text-align: center;
  padding: 2.8rem 1rem 1.5rem;
  background: linear-gradient(90deg, #155d27 0%, #4f772d 45%, #b68c3a 100%);
  color: #fff;
  border-bottom: 4px solid #ffb347;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.18);
}

.eco-hero h1 {
  font-size: 2.4rem;
  font-weight: 800;
  color: #ffb347;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
}

.eco-hero p {
  margin-top: 0.5rem;
  color: #fffce6;
  text-shadow: 0 0 6px rgba(0, 0, 0, 0.45);
}

/* ===== MAIN CONTAINER ===== */
.eco-content {
  max-width: 1100px;
  margin: 2.5rem auto;
  padding: 2rem 1.25rem;
  background: linear-gradient(180deg, #ffffff 0%, #f5fbe9 50%, #eef7f1 100%);
  border-radius: 26px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.eco-content > h2 {
  text-align: center;
  font-size: 1.8rem;
  color: #153d1d;
  margin-bottom: 1.8rem;
  font-weight: 800;
  text-shadow: 0 0 4px rgba(255, 255, 255, 0.5);
}

/* ===== GRID LAYOUT ===== */
.eco-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.8rem;
}

/* ===== ECO CARD ===== */
.eco-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.eco-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
}

.eco-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 3px solid #228b22;
  transition: transform 0.4s ease;
}

.eco-card:hover img {
  transform: scale(1.05);
}

.eco-card h3 {
  color: #0b5b18;
  font-size: 1.15rem;
  margin: 0.9rem 0.9rem 0.4rem;
  font-weight: 700;
}

.eco-card p {
  color: #2b322b;
  opacity: 0.95;
  line-height: 1.55;
  font-size: 0.95rem;
  margin: 0 0.9rem 1.1rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .eco-hero h1 {
    font-size: 2rem;
  }
  .eco-content {
    padding: 1.5rem;
  }
  .eco-card img {
    height: 180px;
  }
}
body.eco-page {
  background: 
    linear-gradient(rgba(255, 252, 252, 0.726), rgba(0, 0, 0, 0.3)),
    url("../../images/zed-power.jpg") center/cover no-repeat fixed;
  color: #1e261e;
  font-family: "Poppins", sans-serif;
}


.eco-hero {
  text-align: center;
  padding: 3rem 1rem 1.8rem;
  background: linear-gradient(90deg, #155d27 0%, #4f772d 45%, #b68c3a 100%);
  color: #fff;
  border-bottom: 4px solid #ffb347;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.18);
}

body.eco-page .eco-hero h1 {
  font-size: 2.6rem;
  font-weight: 800;
  color: #ffb347;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
}

body.eco-page .eco-hero p {
  margin-top: 0.6rem;
  color: #fffde8;
  text-shadow: 0 0 6px rgba(0, 0, 0, 0.45);
  font-size: 1.1rem;
}

/* ===== MAIN CONTAINER ===== */
body.eco-page .eco-content {
  max-width: 1100px;
  margin: 3rem auto;
  padding: 2rem 1.5rem;
  background: linear-gradient(180deg, #ffffff 0%, #f5fbe9 50%, #eef7f1 100%);
  border-radius: 28px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

body.eco-page .eco-content > h2 {
  text-align: center;
  font-size: 1.9rem;
  color: #153d1d;
  margin-bottom: 2rem;
  font-weight: 800;
  text-shadow: 0 0 4px rgba(255, 255, 255, 0.5);
}

/* ===== GRID ===== */
body.eco-page .eco-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.8rem;
  justify-items: center;
}

/* ===== CARD ===== */
body.eco-page .eco-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  max-width: 340px;
}

body.eco-page .eco-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);
}

body.eco-page .eco-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-bottom: 3px solid #228b22;
  transition: transform 0.4s ease;
}

body.eco-page .eco-card:hover img {
  transform: scale(1.05);
}

body.eco-page .eco-card h3 {
  color: #0b5b18;
  font-size: 1.2rem;
  margin: 1rem 1rem 0.5rem;
  font-weight: 700;
}

body.eco-page .eco-card p {
  color: #2b322b;
  opacity: 0.95;
  line-height: 1.6;
  font-size: 0.96rem;
  margin: 0 1rem 1.4rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  body.eco-page .eco-hero {
    padding: 2.2rem 1rem 1.2rem;
  }

  body.eco-page .eco-hero h1 {
    font-size: 2rem;
  }

  body.eco-page .eco-content {
    padding: 1.5rem 1rem;
  }

  body.eco-page .eco-card img {
    height: 180px;
  }
}
/* ============================================
   USE ELEPHANT FONT FOR LOGO TEXT SITEWIDE
   ============================================ */
@font-face {
  font-family: "Elephant";
  src: local("Elephant"), local("Elephant Regular");
}

header .logo span {
  font-family: "Elephant", serif !important;
  font-weight: normal;
  letter-spacing: 0.5px;
  font-size: 1.8rem;
  color: #ffb347;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}
/* =========================================================
   CONTACT PAGE — Consistent with Explore Zambia Style
   ========================================================= */
body.contact-page {
  background:
    linear-gradient(rgba(255, 255, 255, 0.3), rgba(245, 230, 190, 0.3)),
    url("../../images/zed-power.jpg") center/cover no-repeat fixed;
  font-family: 'Poppins', sans-serif;
  color: #1e261e;
}

/* ===== HERO ===== */
.contact-hero {
  text-align: center;
  padding: 3rem 1rem 2rem;
  background: linear-gradient(90deg, #155d27 0%, #4f772d 45%, #b68c3a 100%);
  color: #fff;
  border-bottom: 4px solid #ffb347;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}

.contact-hero h1 {
  font-size: 2.5rem;
  color: #ffb347;
  font-weight: 800;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
}

.contact-hero p {
  font-size: 1.1rem;
  margin-top: 0.5rem;
  color: #fffde8;
}

/* ===== MAIN CONTENT ===== */
.contact-content {
  max-width: 700px;
  margin: 3rem auto;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(5px);
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  padding: 2rem;
  text-align: center;
}

.contact-content h2 {
  font-size: 1.8rem;
  color: #155d27;
  font-weight: 700;
  margin-bottom: 1rem;
}

.contact-content p {
  color: #3a3a3a;
  margin-bottom: 2rem;
  font-size: 1rem;
}

/* ===== FORM ===== */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: left;
}

.contact-form label {
  font-weight: 600;
  color: #155d27;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.9rem;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #228b22;
  outline: none;
  box-shadow: 0 0 8px rgba(34, 139, 34, 0.3);
}

/* ===== BUTTON ===== */
.contact-btn {
  background: linear-gradient(145deg, #155d27, #4f772d);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 0.8rem 1.6rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  align-self: center;
}

.contact-btn:hover {
  background: linear-gradient(145deg, #ffb347, #b68c3a);
  color: #1e261e;
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .contact-hero h1 {
    font-size: 2rem;
  }

  .contact-content {
    margin: 2rem 1rem;
    padding: 1.5rem;
  }
}
/* =========================================================
   HOME PAGE — Victoria Falls Background (Enhanced)
   ========================================================= */
body.home-page {
  background:
    linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
    url("../../images/v-falls.jpg") center/cover no-repeat fixed;
  background-attachment: fixed;
  font-family: 'Poppins', sans-serif;
  color: #222;
}

/* Slight dark overlay to make text readable */
body.home-page::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  z-index: -1;
}

/* Glass effect for main areas */
main,
section.intro,
section.highlights {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px) brightness(1.1);
  -webkit-backdrop-filter: blur(8px) brightness(1.1);
  border-radius: 25px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  color: #0b1b0b;
  margin-top: 2rem;
}

/* Gold-glow headers */
section.intro h2,
section.highlights h2 {
  color: #ffcc00;
  font-weight: 900;
  text-shadow:
    2px 2px 4px rgba(0, 0, 0, 0.7),
    0 0 12px rgba(255, 204, 0, 0.9);
}

/* Readable dark text */
section.intro p,
section.highlights p {
  color: #111;
  font-size: 1.1rem;
  line-height: 1.7;
  text-shadow: 0 1px 3px rgba(255, 255, 255, 0.6);
  max-width: 850px;
  margin: 0 auto;
}
.destination-card {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.destination-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}
.destination-card {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
}

.destination-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  filter: brightness(1.08);
}
/* ==== Image Zoom-In Effect on Hover ==== */
.destination-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease, filter 0.4s ease;
}

.destination-card:hover img {
  transform: scale(1.08); /* slight zoom */
  filter: brightness(1.1) contrast(1.05); /* make it pop a little */
}
.about-zambia {
  background: rgba(255, 255, 255, 0.95);
  padding: 40px;
  border-radius: 15px;
  max-width: 900px;
  margin: 50px auto;
  color: #0b4f0b;
  box-shadow: 0 0 25px rgba(0,0,0,0.2);
}

.about-zambia h1,
.about-zambia h2,
.about-zambia h3 {
  color: #0a7a0a;
  text-align: center;
  margin-bottom: 20px;
}

.about-zambia ul {
  padding-left: 20px;
}

.about-zambia ul li {
  margin-bottom: 8px;
  color: #0b4f0b;
}

.about-zambia p {
  line-height: 1.6;
  margin-bottom: 20px;
  color: #0b4f0b;
}
/* Universal fix for hero text visibility */
.hero-section h1,
.hero-section p {
  position: relative;
  z-index: 3 !important;
}

.hero-section {
  padding-top: 80px; /* ensures entire text stays visible */
}
/* === FINAL TWEAK: Destinations hero subtitle position === */
.hero-banner .banner-content p {
  position: relative;
  top: -10px;          /* move the line UP – adjust this number if needed */
  margin-top: 0;       /* cancel any previous margin-top */
  font-size: 1.6rem;
  color: #fdfcfc;
  text-shadow:
    0 0 8px rgba(10, 9, 9, 0.9),
    0 0 15px rgba(5, 5, 5, 0.9);
}
.banner-content p {
  position: relative;
  top: 30%;   /* moves it DOWN by 50% */
  transform: translateY(80%); /* keeps text centered cleanly */
}

