/* ================= RESET & BASE ================= */
* {
  box-sizing: border-box;
}

html, body {
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
}

/* ================= BRAND COLORS ================= */
:root {
  --brown: #b9835a;
  --brown-light: rgba(185,131,90,0.15);
}

/* ================= HEADER ================= */
.site-header {
  z-index: 1000;
}

.logo img {
  max-height: 70px;
}

.menu-toggle {
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #f0ccb3;
  margin: 4px 0;
}

/* Overlay menu */
.overlay-menu {
  position: absolute;
  top: 100%;
  right: 24px;
  background: rgba(185,131,90,0.95);
  padding: 14px 18px;
  border-radius: 6px;
  display: none;
  flex-direction: column;
}

.overlay-menu a {
  color: #fff;
  text-decoration: none;
  padding: 8px 0;
  font-size: 15px;
}

.overlay-menu.show {
  display: flex;
}

/* ================= HERO ================= */

.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Overlay */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  z-index: -1;
}

/* Base video style */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

/* Default: show desktop video */
.hero-video-mobile {
  display: none;
}

/* Content */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  padding: 0 20px;
  color: #fff;
}

.hero-content p {
  font-size: 15px;
  margin-bottom: 18px;
}

.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: 64px;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

  /* Hide desktop video */
  .hero-video-desktop {
    display: none;
  }

  /* Show mobile video */
  .hero-video-mobile {
    display: block;
  }

  .hero-content h1 {
    font-size: 36px;
  }
}

/* ================= SAFARI CARDS ================= */
.safari-card {
  position: relative;
  transition: transform .35s ease;
}

.safari-card:hover {
  transform: translateY(-8px);
}

.safari-card::before {
  content: "";
  position: absolute;
  inset: 10px;
  bottom: -10px;
  background: var(--brown);
  opacity: 0.15;
  border-radius: 8px;
  z-index: 0;
}

.safari-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  position: relative;
  z-index: 1;
}

.safari-info {
  background: var(--brown);
  color: #fff;
  text-align: center;
  padding: 14px 10px;
  margin-top: -4px;
  border-radius: 0 0 6px 6px;
  position: relative;
  z-index: 2;
}

.safari-info h3 {
  font-size: 14px;
  margin-bottom: 6px;
}

.safari-info a {
  font-size: 13px;
  color: #fff;
  text-decoration: none;
  opacity: 0.9;
}

/* ================= SLIDER ================= */
.slider-container {
  height: 460px;
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity .8s ease;
}

.slide.active {
  opacity: 1;
}

.slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.25);
}

.slider-next {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,0.45);
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  z-index: 3;
}

@media (max-width: 768px) {
  .slider-container {
    height: 300px;
  }
}

/* ================= MAP RESPONSIVE ================= */

.map-responsive {
  position: relative;
  width: 100%;
  height: 420px;        /* desktop height */
  border-radius: 12px;
  overflow: hidden;
}

.map-responsive iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Mobile */
@media (max-width: 768px) {
  .map-responsive {
    height: 320px;      /* taller on mobile */
  }
}

/* Small phones */
@media (max-width: 480px) {
  .map-responsive {
    height: 280px;
  }
}

/* ================= FOOTER ================= */
.site-footer {
  background: var(--brown);
  font-size: 14px;
}

.site-footer a {
  color: #fff;
  text-decoration: none;
  opacity: 0.9;
}

.site-footer a:hover {
  opacity: 1;
}

/* ================= WHATSAPP ================= */
.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 48px;
  height: 48px;
  background: #fff;
  color: var(--brown);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  text-decoration: none;
  box-shadow: 0 6px 16px rgba(0,0,0,0.25);
  z-index: 999;
}

/* ================= SCROLL REVEAL ================= */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all .7s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ================= GLOBAL SAFETY ================= */
img, iframe, video {
  max-width: 100%;
  height: auto;
}
