/* =================== GLOBAL STYLES =================== */
body {
  background-color: #000;
  color: #eee;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* 🩶 Prevent content from being hidden behind fixed navbar */
  padding-top: 80px; /* adjust if navbar height changes */
}

/* =================== NAVBAR =================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(247,183,51,0.25);
  box-shadow: 0 2px 10px rgba(0,0,0,0.6);
}

.navbar-brand {
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  font-weight: 600;
}
.navbar-brand .accent {
  color: #f7b733;
}
.navbar-dark .nav-link {
  color: #ddd;
  font-size: 0.92rem;
  transition: color 0.2s ease-in-out;
}
.navbar-dark .nav-link:hover,
.navbar-dark .nav-link.active {
  color: #f7b733;
}

/* =================== HERO SECTION =================== */
.hero-section {
  position: relative;
  height: 100vh;
  background-size: cover;
  background-position: center center;
}
.hero-section .overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(0,0,0,0.1), rgba(0,0,0,0.9));
}
.hero-section .container {
  position: relative;
  z-index: 2;
}

/* =================== BUTTONS =================== */
.btn-gold {
  background-color: #f7b733;
  border: none;
  color: #000;
  font-weight: 600;
}
.btn-gold:hover {
  background-color: #ffcc5a;
  color: #000;
}

/* =================== SAFARI CARDS =================== */
.k2t-card {
  position: relative;
  height: 210px;
  background-size: cover;
  background-position: center center;
  border-radius: 18px;
  overflow: hidden;
}
.k2t-card-overlay {
  position: absolute;
  inset: 0;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0.1));
  color: #fff;
}
.k2t-card-overlay h4 {
  font-size: 1.05rem;
  margin-bottom: 4px;
}
.k2t-card-overlay p {
  font-size: 0.8rem;
  margin-bottom: 0;
}

/* =================== TITLES =================== */
.section-title {
  font-size: 1.6rem;
  font-weight: 600;
  color: #f7b733;
}

/* =================== LISTS =================== */
.k2t-list {
  list-style: none;
  padding-left: 0;
}
.k2t-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 6px;
  font-size: 0.92rem;
}
.k2t-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #f7b733;
  font-size: 0.8rem;
}

/* =================== QUICK BOX =================== */
.quick-box {
  border: 1px solid #444;
  padding: 16px;
  border-radius: 16px;
  background: radial-gradient(circle at top left, rgba(247,183,51,0.08), rgba(0,0,0,0.98));
}
.quick-box.small {
  padding: 12px;
}

/* =================== FEATURED SAFARIS =================== */
.featured-card {
  background: #050505;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #262626;
}
.featured-img {
  height: 160px;
  background-size: cover;
  background-position: center center;
}
.text-gold {
  color: #f7b733;
}

/* =================== REVIEW SECTION =================== */
.review-card {
  background: #0b0b0b;
  border: 1px solid #333;
  border-radius: 16px;
  padding: 25px 20px;
  color: #ddd;
  transition: 0.3s;
  box-shadow: 0 0 10px rgba(247,183,51,0.08);
  text-align: center;
}
.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 25px rgba(247,183,51,0.15);
}

.review-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #f7b733;
  box-shadow: 0 0 6px rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  margin: 0 auto;
}
.review-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.review-card .text-gold {
  font-size: 1.1rem;
}

/* ✨ FIXED TEXT VISIBILITY ✨ */
.review-card p.small {
  font-size: 0.9rem;
  color: #bbb; /* bright enough for contrast */
  margin-bottom: 4px;
}
.review-card p.small.text-muted {
  color: #ccc !important; /* force brighter muted text */
}
.review-card .fw-bold {
  color: #fff;
  margin-top: 8px;
}
.review-card p.text-muted {
  margin-top: 2px;
  font-style: italic;
  color: #aaa !important;
}

/* =================== FOOTER =================== */
.k2t-footer a {
  color: #f7b733;
  text-decoration: none;
  font-size: 0.9rem;
}
.k2t-footer a:hover {
  text-decoration: underline;
}

/* ====== Header Logo Styling ====== */
.logo-icon {
    height: 42px;            /* Adjust based on your navbar height */
    width: auto;             /* Maintain proportions */
    object-fit: contain;
    vertical-align: middle;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.navbar-brand:hover .logo-icon {
    transform: scale(1.08);
    opacity: 0.9;
}

@media (max-width: 768px) {
    .logo-icon {
        height: 34px; /* slightly smaller on mobile */
    }
}

/* === Navbar Logo Icon === */
.logo-icon {
    height: 40px;               /* Controls visual size */
    width: auto;                /* Keeps aspect ratio */
    max-width: 120px;           /* Prevents large images from overflowing */
    object-fit: contain;
    display: inline-block;
    margin-right: 8px;          /* Space between logo and text */
    transition: transform 0.3s ease;
}

.navbar-brand:hover .logo-icon {
    transform: scale(1.05);
}

@media (max-width: 992px) {
    .logo-icon {
        height: 34px;           /* Slightly smaller on tablets */
    }
}

@media (max-width: 576px) {
    .logo-icon {
        height: 30px;           /* Smaller for phones */
    }
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 22px;
    z-index: 9999;
    background: #25D366;
    border-radius: 50%;
    padding: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 14px rgba(0,0,0,0.35);
}

.whatsapp-icon {
    height: 36px;
    width: 36px;
    object-fit: contain;
}

