/* ============================
   PURE BLACK + ORANGE THEME
============================ */
:root {
  --primary: #F97316;
  --primary-light: #FB923C;
  --primary-dark: #EA580C;

  --text-light: #ffffff;
  --text-muted: #d1d5db;

  --bg-dark: #000000;
  --bg-light: #0A0A0A;

  --header-height: 90px;
}

/* ============================
   RESET & BASE
============================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.6;

  padding-top: var(--header-height);
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

/* ============================
   HEADER – TRANSPARENT FIX
============================ */
.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;

  height: var(--header-height);

  background: rgba(0,0,0,0.08); /* ✅ TRANSPARENT */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  border-bottom: 1px solid rgba(255,255,255,0.06);

  transition: all 0.3s ease;
}

/* FIXED LAYERING */
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 50px;

  position: relative;
  z-index: 1100;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand img {
  height: 60px;
}

.brand span {
  color: #fff;
  font-size: 1.1rem;
  letter-spacing: 1px;
}

.main-nav {
  display: flex;
  gap: 32px;
}

.main-nav a {
  color: rgba(255,255,255,0.85);
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--primary);
}

.main-nav a::after {
  display: none;
}

/* BUTTON */
.nav-toggle {
  display: none;
  font-size: 24px;
  background: none;
  border: none;
  color: #fff;

  position: relative;
  z-index: 1200;
}

/* ============================
   BUTTONS
============================ */
.btn {
  padding: 0.65rem 1.6rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #000;
}

.wildlife-black {
  color: var(--primary);
}

/* ============================
   HERO
============================ */
.hero {
  position: relative;
  min-height: 100vh;
  background: url("../images/hero-wildlife (1).jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.9));
}

.hero-content {
  position: relative;
  max-width: 550px;
  padding: 4rem 0;
}

/* ============================
   SECTIONS
============================ */
.section {
  padding: 4rem 0;
}

.section-dark {
  background: #000;
}

/* ============================
   SIGNATURE SCROLLER
============================ */
.signature-scroll {
  position: relative;
  overflow: hidden;
}

.signature-scroll .cards-grid {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  padding: 1rem 3rem;
}

.signature-scroll img {
  height: 450px;
  max-width: 300px;
  border-radius: 18px;
  transition: transform 0.35s ease;
}

/* ============================
   PURCHASE OVERLAY
============================ */
.sig-item {
  position: relative;
}

.purchase-btn {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  border-radius: 18px;
  transition: opacity 0.3s ease;
}

.sig-item:hover .purchase-btn {
  opacity: 1;
}

/* ============================
   FOOTER
============================ */
.site-footer {
  background: #000;
  padding-top: 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
}

.footer-grid a {
  color: var(--text-muted);
}

.footer-bottom {
  text-align: center;
  padding: 1rem;
  border-top: 1px solid rgba(255,255,255,0.12);
}

/* ============================
   MOBILE
============================ */
@media (max-width: 768px) {

  :root {
    --header-height: 80px;
  }

  /* ✅ FIXED HERE ALSO */
  .site-header {
    background: rgba(0,0,0,0.08);
    backdrop-filter: blur(10px);
  }

  .nav-container {
    padding: 0 18px;
  }

  .brand img {
    height: 48px;
  }

  .brand span {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 80px;
    right: 0;
    z-index: 1100;

    background: #000;
    flex-direction: column;
    width: 220px;

    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .main-nav.open {
    max-height: 400px;
  }

  .main-nav a {
    padding: 12px 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================
   FLOATING SOCIAL
============================ */
.floating-social {
  position: fixed;
  bottom: 22px;
  left: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 9999;
}

.social-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;

  box-shadow:
    0 14px 32px rgba(0,0,0,0.45),
    inset 0 1px 0 rgba(255,255,255,0.25);

  transition: transform 0.3s ease;
}

.social-btn.instagram {
  background: radial-gradient(circle at 30% 30%,
    #feda75,
    #d62976,
    #962fbf
  );
}

.social-btn.facebook {
  background: linear-gradient(145deg, #2d88ff, #0f5bd8);
}

/* ============================
   WHATSAPP FLOAT
============================ */
.whatsapp-float-right {
  position: fixed;
  bottom: 22px;
  right: 18px;
  width: 58px;
  height: 58px;
  border-radius: 50%;

  background: linear-gradient(145deg, #2eea7f, #1fbf62);
  color: #fff;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 26px;

  box-shadow:
    0 14px 35px rgba(0,0,0,0.45),
    inset 0 1px 0 rgba(255,255,255,0.25);

  z-index: 9999;
}

/* ============================
   SECTION ACCENT
============================ */
.section-accent {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #000;
  padding: 3rem 0;
}

.cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
}

.cta-content {
  max-width: 650px;
}

.section-accent .btn-primary {
  background: #000;
  color: var(--primary);
}

/* ============================
   FINAL HEADER FIX (FORCE TRANSPARENT)
============================ */

.site-header {
  position: absolute !important;
  top: 0;
  width: 100%;
  z-index: 9999;

  background: transparent !important;
  background-color: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;

  border: none !important;
}

/* REMOVE ANY SPACE ABOVE HERO */
body {
  padding-top: 0 !important;
}

/* ENSURE HERO STARTS FROM TOP */
.hero {
  margin-top: 0 !important;
  padding-top: var(--header-height);
}

/* MOBILE FIX */
@media (max-width: 768px) {
  .site-header {
    position: absolute !important;
    background: transparent !important;
  }
}
/* ============================
   HERO SLIDER (SAFE ADD)
============================ */

/* ============================
   HERO SLIDER (FINAL FIX)
============================ */

.hero-slider {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

/* Slide wrapper */
.slide {
  position: absolute;
  width: 100%;
  height: 100%;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;

  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.slide.active {
  opacity: 1;
}

/* Main image (NO CUT) */
/* DESKTOP → NO CUT */
.slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;   /* ✅ no cropping */
  background: #000;      /* fills side space cleanly */
}

/* MOBILE → FULL SCREEN */
@media (max-width: 768px) {
  .slide img {
    object-fit: cover;   /* ✅ premium look on mobile */
  }
}

/* Background fill (removes black sides) */
.slide::before {
  content: "";
  position: absolute;
  inset: 0;

  background: inherit;
  background-size: cover;
  background-position: center;

  filter: blur(30px) brightness(0.5);
  transform: scale(1.1);

  z-index: 1;
}

/* Arrows */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);

  background: transparent;
  border: none;
  color: rgba(255,255,255,0.6);
  font-size: 40px;
  cursor: pointer;
  z-index: 10;

  transition: 0.3s;
}

.slider-btn:hover {
  color: #fff;
}

.slider-btn.prev {
  left: 20px;
}

.slider-btn.next {
  right: 20px;
}