/* ================================================================
   JOPPA KENIA SAFARIS — Global Stylesheet (shared across all pages)
   Website  : www.joppakeniasafaris.com
   Email    : bookings@joppakeniasafaris.com
   Phone    : +254 733 768 496

   EDIT GUIDE:
   ─ Site colours  → :root { } block below
   ─ Fonts         → font-family lines
   ─ Nav/topbar    → nav and .topbar sections
   ─ Footer        → footer section
   ─ Buttons       → .btn-* sections
================================================================

   TABLE OF CONTENTS
   01. CSS Variables & Reset
   02. Body & Base
   03. Top Contact Bar
   04. Navigation
   05. Shared Buttons
   06. Section Base Styles
   07. Footer
   08. WhatsApp Float Button
   09. Animations & Keyframes
   10. Responsive / Mobile
================================================================ */

/* ── 01. CSS VARIABLES — change site colours here ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --sun:     #F5A623;   /* golden yellow — main accent */
  --amber:   #E8920A;   /* deeper amber — hover states */
  --terra:   #C1440E;   /* terracotta red — headers, topbar */
  --brown:   #7B3F00;   /* dark brown — body text */
  --mid:     #A0522D;   /* mid brown — secondary text */
  --cream:   #FFFDF8;   /* warm cream — light backgrounds */
  --sky:     #EBF6FF;   /* sky blue — alternate sections */
  --dark:    #3A1500;   /* very dark brown — footer */
  --ff-h:    'Playfair Display', Georgia, serif;
  --ff-b:    'Plus Jakarta Sans', sans-serif;
}

/* ── 02. BODY ── */
html { scroll-behavior: smooth; }
body {
  background: #FFFFFF;
  color: var(--brown);
  font-family: var(--ff-b);
  font-weight: 400;
  overflow-x: hidden;
}

/* ── 03. TOP CONTACT BAR ── */
.topbar {
  background: var(--terra);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 52px;
  height: 44px;
  font-size: 13px;
  letter-spacing: .04em;
  color: rgba(255,253,248,.92);
  position: fixed;
  top: 0; width: 100%;
  z-index: 200;
}
.topbar a {
  color: #FFE680;
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 7px;
  transition: color .2s;
}
.topbar a:hover { color: #fff; }
.topbar-right {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.topbar-right span { color: rgba(255,253,248,.88); }

/* ── 04. NAVIGATION ── */
nav {
  background: rgba(26,10,0,.97);
  padding: 0 52px;
  height: 90px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 44px;
  width: 100%;
  z-index: 199;
  box-shadow: 0 2px 24px rgba(0,0,0,.3);
  transition: background .3s, box-shadow .3s;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.nav-logo img {
  width: 74px; height: 74px;
  border-radius: 50%;
  object-fit: cover;
  border: 2.5px solid var(--sun);
  box-shadow: 0 3px 14px rgba(245,166,35,.35);
  margin-top: 10px;
}
.nav-brand {
  font-family: var(--ff-h);
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  line-height: 1.15;
  text-shadow: 0 2px 8px rgba(0,0,0,.35);
}
.nav-brand span { color: #FFE680; }
.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  align-items: center;
}
.nav-links a {
  color: rgba(255,253,248,.85);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 500;
  transition: color .2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--sun); }
.nav-cta {
  background: var(--sun) !important;
  color: var(--brown) !important;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 600 !important;
  text-shadow: none !important;
  box-shadow: 0 4px 14px rgba(245,166,35,.4);
  transition: all .2s !important;
}
.nav-cta:hover {
  background: var(--amber) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(245,166,35,.5) !important;
}
/* Page content offset — accounts for fixed topbar + nav */
.page-offset { padding-top: 134px; }

/* ── 05. SHARED BUTTONS ── */
.btn-sun {
  background: var(--sun); color: var(--brown);
  padding: 14px 34px; border-radius: 50px; border: none;
  font-family: var(--ff-b); font-size: 13px; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  text-decoration: none; display: inline-block; cursor: pointer;
  box-shadow: 0 6px 22px rgba(245,166,35,.4);
  transition: all .25s;
}
.btn-sun:hover { background: #FFB830; transform: translateY(-3px); box-shadow: 0 10px 30px rgba(245,166,35,.5); }
.btn-outline-light {
  background: transparent; color: #FFF9F0;
  padding: 14px 34px; border: 1.5px solid rgba(255,249,240,.4);
  border-radius: 50px; font-family: var(--ff-b); font-size: 13px;
  font-weight: 500; letter-spacing: .08em; text-transform: uppercase;
  text-decoration: none; display: inline-block; transition: all .25s;
}
.btn-outline-light:hover { border-color: var(--sun); color: var(--sun); }
.btn-dark {
  background: var(--dark); color: #FFE680;
  padding: 14px 34px; border-radius: 50px;
  font-family: var(--ff-b); font-size: 13px; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  text-decoration: none; display: inline-block; transition: all .25s;
  box-shadow: 0 4px 16px rgba(0,0,0,.2);
}
.btn-dark:hover { background: #5C2800; transform: translateY(-2px); }

/* ── 06. SECTION BASE ── */
section { padding: 100px 80px; }
.section-eyebrow {
  font-size: 11px; letter-spacing: .3em; text-transform: uppercase;
  color: var(--terra); margin-bottom: 12px;
  display: flex; align-items: center; gap: 12px;
}
.section-eyebrow::before { content: ''; display: block; width: 36px; height: 2px; background: var(--sun); }
.section-title {
  font-family: var(--ff-h); font-weight: 700;
  font-size: clamp(34px, 4.5vw, 62px);
  line-height: 1.08; color: var(--brown);
}
.section-title em { color: var(--amber); font-style: italic; font-weight: 400; }

/* ── 07. FOOTER ── */
footer {
  background: var(--dark);
  border-top: 3px solid var(--sun);
  padding: 72px 80px 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 52px;
  margin-bottom: 56px;
}
.footer-logo-wrap { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.footer-logo-wrap img { width: 80px; height: 80px; border-radius: 50%; border: 2px solid var(--sun); }
.footer-brand { font-family: var(--ff-h); font-size: 22px; font-weight: 300; color: #FFFDF8; }
.footer-brand span { color: #FFE680; }
.footer-tagline { font-size: 13.5px; line-height: 1.8; color: rgba(255,253,248,.55); margin-bottom: 22px; max-width: 240px; }
.footer-contact a {
  display: flex; align-items: center; gap: 8px;
  color: #FFE680; text-decoration: none; font-size: 13.5px; margin-bottom: 8px;
  transition: color .2s;
}
.footer-contact a:hover { color: #fff; }
.footer-col h5 {
  font-size: 10px; letter-spacing: .25em; text-transform: uppercase;
  color: rgba(255,253,248,.38); margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: rgba(255,253,248,.62); text-decoration: none; font-size: 13.5px; transition: color .2s; }
.footer-col a:hover { color: #FFE680; }
.footer-bottom {
  background: #1E0A00;
  margin: 0 -80px;
  padding: 18px 80px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: rgba(255,253,248,.4);
  flex-wrap: wrap; gap: 8px;
}

/* ── 08. WHATSAPP FLOAT BUTTON ── */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 300;
  background: #25D366; color: #fff;
  border-radius: 50px;
  display: flex; align-items: center; gap: 10px;
  padding: 13px 20px 13px 16px;
  text-decoration: none;
  box-shadow: 0 6px 26px rgba(37,211,102,.5);
  font-family: var(--ff-b); font-size: 13px; font-weight: 600;
  animation: waPulse 2.5s ease-in-out infinite;
  transition: background .2s, transform .2s;
}
.whatsapp-float:hover { background: #1EBE5D; transform: translateY(-3px); }

/* ── 09. ANIMATIONS ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes waPulse { 0%,100% { box-shadow: 0 6px 26px rgba(37,211,102,.45); } 50% { box-shadow: 0 6px 44px rgba(37,211,102,.7); } }
@keyframes heroPan { from { transform: scale(1.06) translateX(0); } to { transform: scale(1.06) translateX(-3%); } }
@keyframes float { from { transform: translateY(0); } to { transform: translateY(-14px); } }
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: .3; } }

/* ── 10. RESPONSIVE ── */
@media (max-width: 960px) {
  .topbar { padding: 0 16px; font-size: 11px; height: auto; flex-direction: column; padding: 8px 16px; gap: 4px; }
  nav { padding: 0 24px; height: 80px; top: 68px; }
  .page-offset { padding-top: 148px; }
  .nav-links { display: none; }
  section { padding: 72px 24px; }
  footer { padding: 56px 24px 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { margin: 0 -24px; padding: 16px 24px; }
}
