/* ============================================================
   GLOBAL OVERRIDES
   ============================================================ */

body {
  background: #F3F3F7;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #333;
}

/* Primary color variable (if used elsewhere) */
* {
  --primary-color: #4A1564 !important;
}

/* Kill old dark/template section backgrounds */
.bg-1,
.bg-2,
.story,
.project,
.services,
.testimony {
  background: transparent !important;
}


/* ============================================================
   NEW UNIVERSAL HEADER (DESKTOP + MOBILE)
   One sticky bar with logo, donate buttons, hamburger menu
   ============================================================ */

/* Make sure any old header/nav positioning doesn't interfere */
.lane-donate-bar,
.navbar-main {
  position: static !important;
  top: auto !important;
  box-shadow: none !important;
}

/* NEW HEADER WRAPPER */
#lane-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #4A1564;
  color: #fff;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

/* LOGO */
#lane-header .lane-logo img {
  height: 44px;
  width: auto;
}

/* DONATE BUTTONS – DESKTOP VIEW */
#lane-header .lane-donate-buttons {
  display: flex;
  gap: 6px;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
}

#lane-header .lane-donate-buttons a {
  background: #fff;
  color: #4A1564 !important;
  padding: 6px 12px;
  border-radius: 4px;
  font-weight: 700;
  text-decoration: none;
  font-size: 13px;
  border: 1px solid #fff;
  white-space: nowrap;
}

#lane-header .lane-donate-buttons a:hover {
  background: #E8DFF4;
}

/* HAMBURGER ICON */
#lane-header .lane-menu-toggle {
  font-size: 24px;
  cursor: pointer;
  color: #fff;
  padding: 8px;
  flex: 0 0 auto;
}

/* MOBILE DONATE BUTTON (RIGHT OF BURGER) */
#lane-header .lane-mobile-donate {
  display: none;
  background: #fff;
  color: #4A1564 !important;
  padding: 6px 10px;
  border-radius: 4px;
  font-weight: 700;
  text-decoration: none;
  margin-right: 6px;
}

/* DESKTOP DONATE BUTTON SIZING & SPACING (base) */
@media (min-width: 768px) {
  #lane-header {
    gap: 16px;
  }

  #lane-header .lane-logo {
    flex: 0 0 auto;
  }

  #lane-header .lane-donate-buttons {
    flex: 1 1 auto;
    justify-content: center;
    flex-wrap: wrap; /* allow wrap if tight */
    gap: 8px;
  }

  #lane-header .lane-donate-buttons a {
    padding: 8px 18px;
    font-size: 14px;
  }
}

/* DESKTOP WIDE: spread donate buttons to fill the bar */
@media (min-width: 992px) {
  #lane-header .lane-donate-buttons {
    justify-content: space-between;
  }

  #lane-header .lane-donate-buttons a {
    flex: 1 1 0;
    text-align: center;
  }
}

/* MOBILE BREAKPOINT – header layout */
@media (max-width: 767px) {
  #lane-header .lane-donate-buttons {
    display: none; /* hide desktop buttons */
  }

  #lane-header .lane-mobile-donate {
    display: inline-block;
  }
}

/* SLIDE-DOWN NAV MENU (MOBILE FIRST) */
#lane-nav-menu {
  position: fixed;
  top: 62px;
  left: 0;
  right: 0;
  background: #ffffff;
  box-shadow: 0 4px 14px rgba(0,0,0,0.2);
  z-index: 9998;
  display: none;
  padding: 12px 16px;
}

/* vertical list on mobile */
#lane-nav-menu a {
  display: block;
  padding: 10px 0;
  color: #4A1564 !important;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-bottom: 1px solid #eee;
}
#lane-nav-menu a:last-child {
  border-bottom: none;
}

/* when open, show it */
#lane-nav-menu.lane-nav-open {
  display: block;
}

/* DESKTOP: HORIZONTAL BAR UNDER DONATE HEADER */
@media (min-width: 992px) {
  #lane-nav-menu {
    padding: 8px 0;
    text-align: center;
  }

  #lane-nav-menu.lane-nav-open {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
  }

  #lane-nav-menu a {
    display: inline-block;
    padding: 8px 18px;
    border-bottom: none;
    border-right: 1px solid #eee;
    text-align: center;
  }

  #lane-nav-menu a:last-child {
    border-right: none;
  }
}

/* Push page content down below header */
body {
  padding-top: 70px !important;
}


/* ============================================================
   BUTTONS
   ============================================================ */

.btn-primary {
  background-color: #4A1564 !important;
  border-color: #4A1564 !important;
  color: #FFFFFF !important;
}

.btn-primary:hover {
  background-color: #3A0F4B !important;
  border-color: #3A0F4B !important;
}

.btn-default {
  border-color: #4A1564 !important;
  color: #4A1564 !important;
  background: transparent !important;
}

.btn-default:hover {
  background-color: #4A1564 !important;
  color: #FFFFFF !important;
  border-color: #4A1564 !important;
}

/* Ensure buttons keep white text regardless of global link overrides */
.btn,
.btn-primary,
.btn-primary:visited,
.btn-primary:hover,
.btn-primary:focus {
  color: #FFFFFF !important;
}


/* ============================================================
   TYPOGRAPHY / SECTION HEADINGS
   ============================================================ */

.section-heading {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 0.04em;
}

.section-heading span {
  color: #4A1564;
}

.section p,
.section h1,
.section h2,
.section h3,
.section h4 {
  color: #333;
}


/* ============================================================
   INTRO SECTION (ROOTED IN US)
   ============================================================ */

.home-intro {
  background: #FFFFFF !important;
  padding: 50px 0 20px;
  color: #333 !important;
}


/* ============================================================
   ABOUT PREVIEW
   ============================================================ */

#about-preview {
  background: #F8F8FB !important;
  padding: 60px 0;
  color: #333 !important;
}

#about-preview img {
  border-radius: 8px;
}


/* ============================================================
   PRIORITIES PREVIEW
   ============================================================ */

#priorities-preview,
.home-priorities {
  background: #F3F3F7 !important;
  padding: 40px 0 60px;
  color: #333 !important;
}

/* Icons: purple circle with white icon inside */
.home-priorities .box-icon-1 .icon,
.home-priorities .icon {
  background: #4A1564 !important;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.home-priorities .box-icon-1 .icon i,
.home-priorities .icon i {
  color: #FFFFFF !important;
  font-size: 18px;
}

.home-priorities .title {
  color: #4A1564 !important;
  font-weight: 600;
}

.home-priorities .text {
  color: #444;
}

.home-priorities .readmore {
  color: #4A1564;
  font-weight: 500;
  font-size: 13px;
}


/* ============================================================
   ENDORSEMENTS (LIGHT)
   ============================================================ */

#endorsements,
.section.testimony {
  background: #FFFFFF !important;
  color: #333 !important;
  padding: 60px 0;
}

/* Rotating testimonial bubble (JS builds structure) */

.testimonial-bubble-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.testimonial-bubble {
  max-width: 640px;
  width: 100%;
  margin: 0 auto;
  background: #F8F8FB;
  border-radius: 16px;
  padding: 24px 26px 20px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
  position: relative;
  text-align: center;
}

/* Little "tail" at the bottom like a speech balloon */
.testimonial-bubble::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 10px 10px 0 10px;
  border-style: solid;
  border-color: #F8F8FB transparent transparent transparent;
}

/* Avatar / photo (optional) */
.testimonial-avatar {
  margin-bottom: 12px;
}

.testimonial-avatar img {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #E0D2F7;
}

/* Quote text */
.testimonial-quote {
  position: relative;
  margin-bottom: 12px;
}

.testimonial-quote .quote-icon {
  font-size: 18px;
  color: #C0A8F2;
  margin-bottom: 8px;
}

.testimonial-quote p {
  font-size: 15px;
  line-height: 1.7;
  color: #333;
  margin: 0;
}

/* Name + location */
.testimonial-meta {
  margin-top: 8px;
  font-size: 13px;
}

.testimonial-name {
  display: block;
  font-weight: 700;
  color: #4A1564;
}

.testimonial-location {
  display: block;
  color: #777;
}

/* Owl dots under the bubble */
#endorsement-slider .owl-dots {
  margin-top: 20px;
}

#endorsement-slider .owl-dot span {
  width: 8px;
  height: 8px;
  background: #DDD !important;
}

#endorsement-slider .owl-dot.active span {
  background: #4A1564 !important;
}

/* Mobile adjustments */
@media (max-width: 767px) {
  .testimonial-bubble {
    padding: 20px 16px 18px;
  }
}


/* ============================================================
   SOCIAL MEDIA SCROLLER (HOME) — OPTIONAL
   ============================================================ */

.home-social {
  background: #FFFFFF;
  padding: 40px 0;
  /* To hide:
     display: none; */
}

.social-scroller {
  background: #F8F8FB;
  border-radius: 8px;
  padding: 15px;
  max-height: 360px;
  overflow-y: auto;
  box-shadow: 0 2px 4px rgba(0,0,0,0.04);
}

.social-item {
  border-bottom: 1px solid #E2E2EE;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.social-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.social-meta {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #4A1564;
  margin-bottom: 4px;
}

.social-meta i {
  margin-right: 6px;
}

.social-item p {
  font-size: 13px;
  color: #555;
  margin-bottom: 4px;
}

.social-item a {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #4A1564;
}


/* ============================================================
   ADOPTION SPOTLIGHT
   ============================================================ */

.adoption-spotlight {
  background: #F9F5FF;
  padding: 50px 0;
}

.adoption-spotlight .section-heading span {
  color: #4A1564;
}

.adoption-name {
  font-weight: 700;
  font-size: 18px;
  margin-top: 5px;
  margin-bottom: 8px;
  color: #4A1564;
}

.adoption-text {
  font-size: 15px;
  color: #444;
  line-height: 1.6;
}

.adoption-shelter a {
  color: #4A1564;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
}


/* ============================================================
   FOOTER (DARK, BUT CLEAN)
   ============================================================ */

.footer {
  background: #181820 !important;
  padding: 40px 0;
  border-top: none !important;
  text-align: center;
}

.footer-title {
  color: #FFFFFF;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 13px;
}

.footer,
.footer p,
.footer address {
  color: #DADAE5;
  font-size: 13px;
}

.footer a {
  color: #C7B5F2 !important;
}

.footer a:hover {
  color: #FFFFFF !important;
  text-decoration: underline;
}

.fcopy {
  border-top: 1px solid #2B2B35;
  margin-top: 20px;
  padding-top: 15px;
}

/* Footer social icons */
.footer .footer-sosmed .item i,
.footer .item i {
  color: #C7B5F2 !important;
}

.footer .footer-sosmed .item:hover i,
.footer .item:hover i {
  color: #FFFFFF !important;
}

.footer .footer-sosmed .item {
  background: transparent !important;
  border: 1px solid rgba(199,181,242,0.35) !important;
}

.footer .footer-sosmed .item:hover {
  border-color: #FFFFFF !important;
  background: rgba(255,255,255,0.05) !important;
}

/* Center footer icons on mobile */
@media (max-width: 767px) {
  .footer-sosmed {
    justify-content: center !important;
  }
}


/* ============================================================
   LOADER ANIMATION (LANE LOGO)
   ============================================================ */

.animationload {
  position: fixed;
  z-index: 999999;
  background: #FFFFFF;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display:flex;
  justify-content:center;
  align-items:center;
}

.animationload .loader {
  width: 140px;
  height: 140px;
  background-image: url('../images/LANE_Nav.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  animation: fadepulse 1.3s infinite ease-in-out;
  border:none;
}

@keyframes fadepulse {
  0% { opacity: .3; transform: scale(.96); }
  50% { opacity: 1; transform: scale(1); }
  100% { opacity: .3; transform: scale(.96); }
}


/* ============================================================
   GLOBAL LINK COLORS
   ============================================================ */

a,
a:visited {
  color: #4A1564 !important; /* campaign purple */
}

a:hover,
a:focus {
  color: #2d0d3c !important; /* darker purple */
  text-decoration: none;
}


/* ============================================================
   SOCIAL ICON LAYOUT (FOOTER + NAV)
   ============================================================ */

.footer-sosmed,
.navbar-social {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: flex-start;
}

.footer-sosmed .item,
.navbar-social .item {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #4A1564;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-sosmed .item i,
.navbar-social .item i {
  color: #ffffff !important;
  font-size: 16px;
}

.footer-sosmed a {
  display: inline-block;
}


/* ============================================================
   TIMELINE (IF USED ON MEET ABBIE / STORY PAGE)
   ============================================================ */

.timeline {
  position:relative;
  margin:20px 0 0;
  padding-left:45px;
}

.timeline::before {
  content:"";
  position:absolute;
  left:18px;
  top:0;
  bottom:0;
  width:2px;
  background:linear-gradient(to bottom, #C89B3C, #5A1973);
  opacity:0.5;
}

.timeline-item {
  position:relative;
  margin-bottom:35px;
}

.timeline-bullet {
  position:absolute;
  left:11px;
  top:4px;
  width:16px;
  height:16px;
  border-radius:50%;
  background:#fff;
  border:3px solid #C89B3C;
  box-shadow:0 0 0 3px rgba(200,155,60,0.3);
  z-index:2;
}

.timeline-label {
  font-size:12px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:0.12em;
  color:#C89B3C;
  margin-bottom:5px;
  padding-left:5px;
}

.timeline-title {
  font-size:16px;
  font-weight:700;
  margin-bottom:5px;
  color:#2b1b3a;
  padding-left:5px;
}

.timeline-body {
  font-size:14px;
  color:#444;
  padding-left:5px;
}
.back-to-top-wrapper {
    text-align: center;
    margin: 40px 0;
}

.back-to-top-btn {
    background-color: #4A2F7A; /* your campaign purple */
    color: #fff;
    padding: 12px 22px;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.back-to-top-btn i {
    margin-right: 8px;
}

.back-to-top-btn:hover {
    background-color: #371f5a;
    transform: translateY(-2px);
}

.back-to-top-btn:active {
    transform: translateY(0);
}
