Theme Name: Afri Bundu Ultimate Version: 5.0 */ /* 🌿 COLOR SYSTEM */ :root {
:root {
 --brown: #3b2f2f; --sand: #f4f1ec; --accent: #d89b5a; --green-light: #7a9a65;

} /* RESET */
* {
  box-sizing: border-box;
} /* 🌍 GLOBAL */
body {
  margin: 0;
  font-family: Georgia, serif;
  background: var(--sand);
  color: var(--brown); /* subtle texture */
  background-image: url("https://www.transparenttextures.com/patterns/asfalt-light.png");
}
.container {
  width: 90%;
  margin: auto;
} /* 🎥 HERO */
.hero {
  height: 90vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero video {
  position: absolute;
  width: 100%;
  background: #F8F7F2; /* Warm off-white */
  height: 100%;
  object-fit: cover;
} /* 🌅 GRADIENT OVERLAY */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(59, 47, 47, 0.3),
    rgba(59, 47, 47, 0.7)
  );
  z-index: 1;
}
.hero .overlay {
  position: relative;
  z-index: 2;
  color: #fff;
  text-align: center;
} /* ✨ HERO TEXT */
.hero h1 {
  font-size: 48px;
  letter-spacing: 1px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
} /* 🏡 ACCOMMODATION */
.accommodation {
  display: flex;
  gap: 40px;
  margin: 60px 0;
  align-items: center;
}
.accommodation.reverse {
  flex-direction: row-reverse;
} /* 📦 CARDS (if used) */
.card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
} /* 📋 FORM */
.form {
  display: grid;
  gap: 10px;
}
.form input,
.form button {
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #ddd;
} /* 🌟 GOLD BUTTON STYLE */
button {
  background: linear-gradient(135deg, #d89b5a, #c07f3a);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(216, 155, 90, 0.4);
  transition: 0.3s;
}
button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(216, 155, 90, 0.6);
} /* 💬 WHATSAPP BUTTON (UPGRADED) */
.whatsapp-btn {
  display: inline-block;
  background: linear-gradient(135deg, #25d366, #1ebe5d);
  color: white;
  padding: 12px 18px;
  border-radius: 30px;
  margin-top: 15px;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  transition: 0.3s;
}
.whatsapp-btn:hover {
  transform: scale(1.05);
} /* fallback class */
.whatsapp {
  background: #25d366;
  color: #fff;
  padding: 10px;
  display: inline-block;
} /* 🌿 SECTION SPACING */
section {
  position: relative;
  padding: 80px 0;
} /* subtle divider */
.section-divider::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 60px;
  height: 2px;
  background: var(--green-light);
  transform: translateX(-50%);
} /* 📱 MOBILE */
@media (max-width: 768px) {
  .accommodation {
    flex-direction: column;
  } /* 🚨 FORCE REMOVE SECTION LINE */
  .itinerary::after,
  .postcard::after,
  .experience::after,
  .gallery::after {
    content: none !important;
    display: none !important;
  }
}
/* 🎯 CONTROL HERO CONTENT POSITION */
.hero {
  display: flex;
  align-items: flex-start; /* 🔥 move content away from center */
}

.hero .overlay {
  width: 100%;
  text-align: center;

  margin-top: 120px; /* 🔥 moves content DOWN inside video */
}
