/* ============================
   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;
}

/* ============================
   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;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

/* ============================
   HEADER / NAV
============================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 64px;
  background: rgba(0,0,0,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav-container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Hide hamburger on desktop */
.nav-toggle {
  display: none;
}

/* BRAND */
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand img {
  height: 48px;
}

.brand span {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
}

/* NAV */
.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.main-nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  position: relative;
}

.main-nav a:hover,
.main-nav a.active {
  color: #fff;
}

.main-nav a::after {
  content: "";
  width: 0;
  height: 2px;
  background: var(--primary);
  position: absolute;
  left: 0;
  bottom: -6px;
  transition: width 0.25s ease;
}

.main-nav a:hover::after {
  width: 100%;
}

/* ============================
   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);
}

.btn-small {
  padding: 6px 16px;
  font-size: 0.8rem;
}

/* ============================
   HERO
============================ */
.hero {
  min-height: 80vh;
  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;
}
#animated-word {
  display: inline-block;
  transition: opacity 0.4s ease, transform 0.4s ease;
  will-change: opacity, transform;
}

/* ============================
   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 HEADER
============================ */
@media (max-width: 768px) {
  .nav-container {
    flex-wrap: wrap;
  }

  .nav-toggle {
    display: flex;
    width: 42px;
    height: 42px;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.35);
    background: transparent;
    color: #fff;
  }

  .main-nav {
    width: 100%;
    flex-direction: column;
    background: #000;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }

  .main-nav.open {
    max-height: 420px;
  }

  .main-nav a {
    padding: 0.75rem 1.5rem;
  }

  .main-nav .btn-small {
    width: calc(100% - 3rem);
    margin: 1rem 1.5rem;
    justify-content: center;
  }
}

/* ============================
   GALLERY – DYNAMIC IMAGE SIZE + ZOOM (FINAL)
============================ */

.gallery-zoom-wrap {
  overflow: visible;
}

/* Card */
.gallery-zoom-wrap .gallery-item {
  display: flex;
  flex-direction: column;

  background: #0a0a0a;
  border-radius: 18px;

  overflow: visible; /* ✅ keeps zoom working */
  position: relative;
  z-index: 1;

  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

/* Image – dynamic height (NO CUTTING) */
.gallery-zoom-wrap .gallery-img {
  width: 100%;
  height: auto;           /* ✅ KEY FIX */
  max-height: none;
  object-fit: contain;    /* ✅ no crop */

  display: block;
  border-radius: 18px;

  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

/* Hover zoom */
.gallery-zoom-wrap .gallery-item:hover .gallery-img {
  transform: scale(1.35);
  z-index: 100;
}

/* Depth */
.gallery-zoom-wrap .gallery-item:hover {
  box-shadow: 0 30px 80px rgba(0,0,0,0.75);
  border-color: var(--primary);
  z-index: 50;
}

/* Mobile safe */
@media (max-width: 768px) {
  .gallery-zoom-wrap .gallery-item:hover .gallery-img {
    transform: scale(1.15);
  }
}


/* ============================
   HIDE SCROLLBAR – INDEX PAGE ONLY
============================ */

/* Chrome, Edge, Safari */
.signature-scroll .cards-grid::-webkit-scrollbar {
  display: none;
}

/* Firefox */
.signature-scroll .cards-grid {
  scrollbar-width: none;
}

/* Internet Explorer / old Edge */
.signature-scroll .cards-grid {
  -ms-overflow-style: none;
}

/* ============================
   SIGNATURE SCROLLER ARROWS
   (Index page only – SAFE)
============================ */

.signature-scroll .scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);

  width: 52px;
  height: 52px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 28px;
  font-weight: 600;

  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.35);

  background: rgba(0,0,0,0.55);
  color: #fff;

  cursor: pointer;
  z-index: 20;

  transition: 
    background 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

/* LEFT */
.signature-scroll .scroll-btn.left {
  left: 12px;
}

/* RIGHT */
.signature-scroll .scroll-btn.right {
  right: 12px;
}

/* Hover effect (premium feel) */
.signature-scroll .scroll-btn:hover {
  background: var(--primary);
  color: #000;
  box-shadow: 0 12px 30px rgba(249,115,22,0.45);
  transform: translateY(-50%) scale(1.08);
}

/* Hide arrows on mobile (optional – recommended) */
@media (max-width: 768px) {
  .signature-scroll .scroll-btn {
    display: none;
  }
}
/* ============================
   FOUNDERS MESSAGE – ORANGE STRIP (RESTORED)
============================ */

.section-accent {
  background: linear-gradient(
    135deg,
    var(--primary),
    var(--primary-dark)
  );
  color: #000;
   padding:2.5rem 0;/* ⬅ ADD THIS */
}


.section-accent .cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0rem;
}

.section-accent h2 {
  color: #000;
  margin-bottom: 0.6rem;
}

.section-accent p {
  color: #000;
  max-width: 600px;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.section-accent .btn-primary {
  background: #000;
  color: var(--primary);
}

/* Mobile layout */
@media (max-width: 768px) {
  .section-accent .cta {
    flex-direction: column;
    align-items: flex-start;
  }
}

#animated-word {
  color: var(--primary);
  text-shadow: 0 0 12px rgba(249,115,22,0.45);
}
/* ============================
   FOOTER – MOBILE FIX (SAFE)
============================ */

@media (max-width: 768px) {

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: left;
  }

  .footer-grid h3,
  .footer-grid h4 {
    margin-bottom: 0.75rem;
  }

  .footer-grid ul {
    padding-left: 1.2rem;
  }

  .footer-bottom {
    font-size: 0.85rem;
    padding: 1rem 0.5rem;
  }
}

/* ============================
   FIXED SOCIAL ICONS – PREMIUM
============================ */

/* LEFT STACK (Instagram + Facebook) */
.floating-social {
  position: fixed;
  bottom: 22px;
  left: 18px;

  display: flex;
  flex-direction: column;
  gap: 14px;

  z-index: 9999;
}

/* BASE BUTTON */
.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,
    box-shadow 0.3s ease;
}

/* INSTAGRAM */
.social-btn.instagram {
  background: radial-gradient(circle at 30% 30%,
    #feda75,
    #d62976,
    #962fbf
  );
}

/* FACEBOOK */
.social-btn.facebook {
  background: linear-gradient(145deg, #2d88ff, #0f5bd8);
}

/* Hover */
.social-btn:hover {
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 20px 45px rgba(0,0,0,0.6);
}

/* ============================
   WHATSAPP – RIGHT SIDE
============================ */

.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;

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.whatsapp-float-right:hover {
  transform: scale(1.1);
  box-shadow: 0 18px 45px rgba(37,211,102,0.6);
}

/* ============================
   MOBILE TUNING
============================ */

@media (max-width: 768px) {
  .floating-social {
    left: 10px;
    bottom: 16px;
  }

  .social-btn {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }

  .whatsapp-float-right {
    right: 10px;
    bottom: 16px;
    width: 52px;
    height: 52px;
    font-size: 24px;
  }
}




