/* Serengeti Heritage Camp — serengetiheritagecamp.com */
/* Original: WordPress + Avada, safari lodge, Tanzania */
/* Layout: 1070px, warm gold accent, full-width hero sections */

/* ------------------------------------
   RESET & BASE
   ------------------------------------ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { font-size: 100%; scroll-behavior: smooth; }
body {
  font-family: 'PT Sans', 'Segoe UI', Arial, Helvetica, sans-serif;
  line-height: 1.7;
  color: #747474;
  background: #ffffff;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: #c49b5a; text-decoration: none; transition: color 0.25s; }
a:hover { color: #a07a3a; }

/* ------------------------------------
   TOP BAR
   ------------------------------------ */
.sh-topbar {
  background: #3d3d3d;
  padding: 6px 0;
  font-size: 0.78em;
  color: rgba(255,255,255,0.5);
}
.sh-topbar-inner {
  max-width: 1070px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.sh-topbar a { color: rgba(255,255,255,0.5); }
.sh-topbar a:hover { color: #c49b5a; }

/* ------------------------------------
   HEADER
   ------------------------------------ */
.sh-header {
  background: #fff;
  border-bottom: 1px solid #e8e5df;
  position: relative;
}
.sh-header-inner {
  max-width: 1070px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sh-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
}
.sh-logo-img {
  height: 48px;
  width: auto;
}
.sh-logo-text {
  font-size: 1.45em;
  font-weight: 700;
  color: #3d3d3d;
  letter-spacing: 0.01em;
  line-height: 1.1;
}
.sh-logo-text .sh-tagline {
  display: block;
  font-size: 0.4em;
  color: #c49b5a;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.sh-menu-toggle {
  display: none;
  background: none;
  border: 1px solid #c49b5a;
  color: #c49b5a;
  font-size: 0.9em;
  padding: 6px 14px;
  cursor: pointer;
  border-radius: 2px;
}
.sh-menu-toggle:hover { background: #c49b5a; color: #fff; }

/* ------------------------------------
   NAVIGATION
   ------------------------------------ */
.sh-nav {
  background: #3d3d3d;
}
.sh-nav-list {
  max-width: 1070px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  list-style: none;
}
.sh-nav-list li { position: relative; }
.sh-nav-list a {
  display: block;
  color: rgba(255,255,255,0.75);
  padding: 12px 18px;
  font-size: 0.82em;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.2s, background 0.2s;
  text-decoration: none;
}
.sh-nav-list a:hover,
.sh-nav-list a.active {
  color: #c49b5a;
  background: rgba(196,155,90,0.08);
}

/* ------------------------------------
   HERO / BANNER
   ------------------------------------ */
.sh-hero {
  position: relative;
  overflow: hidden;
}
.sh-hero-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}
.sh-hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(transparent 40%, rgba(30,25,18,0.75));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 36px 40px;
}
.sh-hero-overlay h1 {
  font-size: 2em;
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 8px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.35);
}
.sh-hero-overlay p {
  font-size: 0.95em;
  color: rgba(255,255,255,0.7);
  max-width: 520px;
  line-height: 1.6;
}

/* ------------------------------------
   MAIN CONTENT
   ------------------------------------ */
.sh-wrap {
  max-width: 1070px;
  margin: 0 auto;
  padding: 32px 24px;
}
.sh-main {
  max-width: 1070px;
  margin: 0 auto;
  padding: 32px 24px;
}

/* ------------------------------------
   SECTION TITLES
   ------------------------------------ */
.sh-section { margin-bottom: 28px; }
.sh-section-title {
  font-size: 1.3em;
  font-weight: 700;
  color: #3d3d3d;
  margin-bottom: 6px;
  line-height: 1.25;
}
.sh-section-subtitle {
  font-size: 0.85em;
  color: #999;
  margin-bottom: 18px;
}
.sh-section-divider {
  width: 60px;
  height: 3px;
  background: #c49b5a;
  margin-bottom: 20px;
}

/* ------------------------------------
   CARD GRID (homepage)
   ------------------------------------ */
.sh-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 20px 0;
}
.sh-card {
  background: #fff;
  border: 1px solid #e8e5df;
  border-radius: 3px;
  overflow: hidden;
  transition: box-shadow 0.25s, transform 0.25s;
}
.sh-card:hover {
  box-shadow: 0 4px 16px rgba(61,61,61,0.1);
  transform: translateY(-2px);
}
.sh-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.sh-card-body {
  padding: 16px;
}
.sh-card-body h3 {
  font-size: 0.95em;
  font-weight: 700;
  color: #3d3d3d;
  margin-bottom: 6px;
  line-height: 1.3;
}
.sh-card-body h3 a { color: #3d3d3d; }
.sh-card-body h3 a:hover { color: #c49b5a; }
.sh-card-body p {
  font-size: 0.82em;
  color: #999;
  line-height: 1.55;
}
.sh-card-date {
  display: block;
  font-size: 0.73em;
  color: #bbb;
  margin-bottom: 5px;
}

/* ------------------------------------
   FEATURE BLOCKS (3-col icons)
   ------------------------------------ */
.sh-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 28px 0;
  text-align: center;
}
.sh-feature-item {
  padding: 24px 16px;
}
.sh-feature-item img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 14px;
}
.sh-feature-item h3 {
  font-size: 0.95em;
  font-weight: 700;
  color: #3d3d3d;
  margin-bottom: 6px;
}
.sh-feature-item p {
  font-size: 0.82em;
  color: #999;
  line-height: 1.55;
}

/* ------------------------------------
   FULL-WIDTH BANNER SECTION
   ------------------------------------ */
.sh-banner {
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 56px 0;
  text-align: center;
  color: #fff;
}
.sh-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(30,25,18,0.6);
}
.sh-banner-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
  padding: 0 24px;
}
.sh-banner h2 {
  font-size: 1.6em;
  margin-bottom: 10px;
  font-weight: 700;
}
.sh-banner p {
  font-size: 0.95em;
  color: rgba(255,255,255,0.75);
  margin-bottom: 18px;
  line-height: 1.6;
}
.sh-btn {
  display: inline-block;
  background: #c49b5a;
  color: #fff;
  padding: 10px 28px;
  font-size: 0.85em;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: 2px;
  transition: background 0.2s;
  text-decoration: none;
}
.sh-btn:hover { background: #a07a3a; color: #fff; }

/* ------------------------------------
   POST LISTING
   ------------------------------------ */
.sh-listing { margin: 20px 0; }
.sh-post {
  background: #fff;
  border: 1px solid #e8e5df;
  border-radius: 3px;
  padding: 16px;
  margin-bottom: 14px;
  display: flex;
  gap: 16px;
  transition: border-color 0.2s;
}
.sh-post:hover { border-color: #c49b5a; }
.sh-post-thumb {
  width: 160px;
  min-width: 160px;
  height: 110px;
  object-fit: cover;
  border-radius: 2px;
}
.sh-post-body h3 {
  font-size: 0.95em;
  font-weight: 700;
  margin-bottom: 5px;
  line-height: 1.3;
}
.sh-post-body h3 a { color: #3d3d3d; }
.sh-post-body h3 a:hover { color: #c49b5a; }
.sh-post-body p {
  font-size: 0.82em;
  color: #999;
  line-height: 1.55;
}
.sh-post-date {
  font-size: 0.72em;
  color: #bbb;
  margin-top: 5px;
}

/* ------------------------------------
   ARTICLE PAGE
   ------------------------------------ */
.sh-article {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
}
.sh-article-header { margin-bottom: 22px; }
.sh-breadcrumb {
  font-size: 0.78em;
  color: #bbb;
  margin-bottom: 12px;
}
.sh-breadcrumb a { color: #c49b5a; }
.sh-article-header h1 {
  font-size: 1.6em;
  font-weight: 700;
  color: #3d3d3d;
  line-height: 1.2;
  margin-bottom: 10px;
}
.sh-article-meta {
  font-size: 0.8em;
  color: #bbb;
  padding-bottom: 12px;
  border-bottom: 1px solid #e8e5df;
  margin-bottom: 20px;
}
.sh-cover-img {
  width: 100%;
  border-radius: 3px;
  margin-bottom: 22px;
  border: 1px solid #e8e5df;
}
.sh-float-img {
  float: right;
  margin: 0 0 14px 20px;
  max-width: 280px;
  border-radius: 3px;
  border: 1px solid #e8e5df;
}

/* ------------------------------------
   PROSE (article text)
   ------------------------------------ */
.sh-prose {
  font-size: 1em;
  line-height: 1.8;
  color: #555;
}
.sh-prose h2 {
  color: #3d3d3d;
  font-size: 1.25em;
  font-weight: 700;
  margin: 28px 0 12px;
}
.sh-prose h3 {
  color: #555;
  font-size: 1.05em;
  font-weight: 700;
  margin: 20px 0 8px;
}
.sh-prose p { margin-bottom: 14px; }
.sh-prose ul, .sh-prose ol { margin: 8px 0 16px 24px; }
.sh-prose li { margin-bottom: 5px; }
.sh-prose strong { color: #3d3d3d; }
.sh-prose blockquote {
  border-left: 3px solid #c49b5a;
  margin: 16px 0;
  padding: 12px 18px;
  background: #faf7f1;
  color: #666;
  font-style: italic;
  border-radius: 0 3px 3px 0;
}
.sh-prose a { text-decoration: underline; text-underline-offset: 2px; }
.sh-prose a:hover { color: #a07a3a; }
.sh-prose code {
  background: #f3efe8;
  padding: 2px 6px;
  border-radius: 3px;
  font-size: 0.9em;
}
.sh-prose pre {
  background: #2c2418;
  color: #d8cdb8;
  padding: 16px;
  border-radius: 3px;
  overflow-x: auto;
  margin: 14px 0;
  font-size: 0.85em;
  line-height: 1.5;
}
.sh-prose pre code {
  background: none;
  padding: 0;
  color: inherit;
}
.sh-prose img {
  border-radius: 3px;
  margin: 14px 0;
  border: 1px solid #e8e5df;
}

/* ------------------------------------
   TABLES
   ------------------------------------ */
.sh-prose table {
  border-collapse: collapse;
  width: 100%;
  margin: 14px 0;
  font-size: 0.88em;
}
.sh-prose th, .sh-prose td {
  padding: 10px 12px;
  border: 1px solid #e8e5df;
  text-align: left;
}
.sh-prose th { background: #3d3d3d; color: #fff; font-weight: 600; }
.sh-prose tr:nth-child(even) { background: #faf7f1; }
.sh-prose tr:hover { background: #f3efe8; }

/* ------------------------------------
   GALLERY GRID
   ------------------------------------ */
.sh-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 20px 0;
}
.sh-gallery img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 2px;
  cursor: pointer;
  transition: opacity 0.2s;
}
.sh-gallery img:hover { opacity: 0.85; }

/* ------------------------------------
   SIDEBAR (for pages with sidebar)
   ------------------------------------ */
.sh-two-col {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 28px;
}
.sh-sidebar { }
.sh-sidebar-widget {
  background: #faf7f1;
  border: 1px solid #e8e5df;
  border-radius: 3px;
  padding: 18px;
  margin-bottom: 18px;
}
.sh-sidebar-widget h4 {
  font-size: 0.88em;
  font-weight: 700;
  color: #3d3d3d;
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 2px solid #c49b5a;
}
.sh-sidebar-widget ul { list-style: none; }
.sh-sidebar-widget li { margin-bottom: 6px; }
.sh-sidebar-widget a { font-size: 0.84em; color: #747474; }
.sh-sidebar-widget a:hover { color: #c49b5a; }

/* ------------------------------------
   RELATED ARTICLES
   ------------------------------------ */
.sh-related {
  margin-top: 32px;
  padding-top: 22px;
  border-top: 1px solid #e8e5df;
}
.sh-related h2 {
  font-size: 1.05em;
  color: #3d3d3d;
  margin-bottom: 14px;
  font-weight: 700;
}

/* ------------------------------------
   FOOTER
   ------------------------------------ */
.sh-footer {
  background: #3d3d3d;
  padding: 30px 24px 0;
  margin-top: 36px;
}
.sh-footer-inner {
  max-width: 1070px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 28px;
}
.sh-footer-brand p {
  color: rgba(255,255,255,0.35);
  font-size: 0.8em;
  margin-top: 8px;
  line-height: 1.55;
}
.sh-footer-col h4 {
  color: #c49b5a;
  font-size: 0.78em;
  margin-bottom: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.sh-footer-col ul { list-style: none; }
.sh-footer-col li { margin-bottom: 5px; }
.sh-footer-col a { color: rgba(255,255,255,0.35); font-size: 0.8em; }
.sh-footer-col a:hover { color: #c49b5a; }
.sh-footer-bottom {
  max-width: 1070px;
  margin: 16px auto 0;
  padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  font-size: 0.73em;
  color: rgba(255,255,255,0.2);
}

/* ------------------------------------
   INFO PAGES (About, Contact, Privacy)
   ------------------------------------ */
.sh-page {
  max-width: 720px;
  margin: 0 auto;
  padding: 28px 24px;
}
.sh-page h1 {
  font-size: 1.5em;
  font-weight: 700;
  color: #3d3d3d;
  margin-bottom: 16px;
}
.sh-page h2 {
  color: #c49b5a;
  font-size: 1.08em;
  margin: 22px 0 10px;
  font-weight: 700;
}
.sh-page p { margin-bottom: 12px; color: #666; }
.sh-page ul { margin: 6px 0 14px 20px; color: #666; }
.sh-page li { margin-bottom: 4px; }
.sh-page img {
  border-radius: 3px;
  margin: 14px 0;
  border: 1px solid #e8e5df;
}

/* ------------------------------------
   RESPONSIVE — 830px
   ------------------------------------ */
@media (max-width: 830px) {
  .sh-menu-toggle { display: block; }
  .sh-nav-list { display: none; flex-direction: column; padding: 0; }
  .sh-nav-list.open { display: flex; }
  .sh-nav-list a { padding: 12px 24px; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .sh-hero-img { height: 300px; }
  .sh-hero-overlay h1 { font-size: 1.5em; }
  .sh-grid { grid-template-columns: repeat(2, 1fr); }
  .sh-features { grid-template-columns: 1fr; gap: 16px; }
  .sh-gallery { grid-template-columns: repeat(2, 1fr); }
  .sh-two-col { grid-template-columns: 1fr; }
  .sh-post { flex-direction: column; }
  .sh-post-thumb { width: 100%; min-width: auto; height: 170px; }
  .sh-article-header h1 { font-size: 1.35em; }
  .sh-footer-inner { grid-template-columns: 1fr; gap: 20px; }
  .sh-float-img { float: none; max-width: 100%; margin: 0 0 14px 0; }
  .sh-topbar { display: none; }
}

/* ------------------------------------
   RESPONSIVE — 510px
   ------------------------------------ */
@media (max-width: 510px) {
  .sh-hero-overlay h1 { font-size: 1.2em; }
  .sh-hero-img { height: 220px; }
  .sh-logo-text { font-size: 1.15em; }
  .sh-logo-text .sh-tagline { display: none; }
  .sh-grid { grid-template-columns: 1fr; }
  .sh-gallery { grid-template-columns: repeat(2, 1fr); }
  .sh-article-header h1 { font-size: 1.2em; }
  .sh-banner h2 { font-size: 1.2em; }
  .sh-section-title { font-size: 1.1em; }
}
