body {
  margin: 0;
  padding-top: 110px; /* 40px top-bar + ~70px navbar */
}


/* TOP BAR */
.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 40px;
  display: flex;
  align-items: center;
  background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)), #9750b8;
  z-index: 1050;
}

/* LEFT INFO */
.top-left {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 15px;
}

/* ICON + TEXT PAIR */
.info-item {
  display: flex;
  align-items: center;
  gap: 6px;
  line-height: 1;
}

.top-left i {
  font-size: 14px;
  line-height: 1;
}

.top-left a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  line-height: 1;
}

/* RIGHT SOCIAL */
.top-right {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 20px;
}

.social-link {
  color: #fff;
  text-decoration: none;
}

.social-link:hover {
  color: #e1306c;
}


/* Navbar below top bar */
.main-navbar {
  position: fixed;
  top: 40px;             /* MUST match top-bar height */
  width: 100%;
  z-index: 1040;
}


/* Navbar */
.navbar {
  padding: 15px 0;
}

.navbar-brand {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 26px;
  color: #fff !important;
}

.navbar-brand img {
  height: 70px;
}



.nav-link {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 500;
  color: #ffffff !important;
  margin: 0 8px;
}

.nav-link:hover {
  color: #9750b8 !important;
}

/* CTA */
.cta-btn {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)), #9750b8;
  color: #ffffff;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 30px;
  margin-left: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  background-color: #ffffff;
  color: #000;
}

/* Toggler */
.navbar-toggler {
  border: none;
  background-color: #ccc;
}

.navbar-toggler-icon {
  filter: invert(1);
  
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* Mobile stacking */
@media (max-width: 576px) {
  .top-bar .container {
    flex-direction: column;
    gap: 4px;
  }
}
@media (min-width: 992px) {
  .top-bar {
    display: flex;
  }

  .main-navbar {
    top: 40px;
  }

  body {
    padding-top: 110px; /* top-bar + navbar */
  }
}

/* Hide top bar on mobile & tablet */
@media (max-width: 991.98px) {
  .top-bar {
    display: none;
  }

  /* Move navbar to top when top-bar is hidden */
  .main-navbar {
    top: 0;
  }

  body {
    padding-top: 70px; /* only navbar height */
  }
}


/* Slider height */

.hero-section {
  margin-top: 0;
  padding-top: 0;
}
.carousel-item img {
  height: 90vh;
  object-fit: cover;
}

/* Caption styling */
.carousel-caption {
  bottom: 30%;
  text-align: left;
}

.carousel-caption h1 {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 52px;
  color: #fff;
}

.carousel-caption p {
  font-size: 18px;
  color: #eee;
  max-width: 500px;
  margin-bottom: 20px;
}

/* CTA Button inside slider */
.slider-cta {
  display: inline-block;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)), #9750b8;
  color: #fffefe;
  padding: 10px 26px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.slider-cta:hover {
  background-color: #fff;
  color: #000;
  transform: translateY(-2px);
}

/* Dark overlay */
.carousel-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.carousel-caption {
  z-index: 2;
}

/* ===== Ken Burns Effect ===== */
.kenburns img {
  animation: kenburnsZoom 8s ease-in-out infinite;
}

@keyframes kenburnsZoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.12);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .carousel-item img {
    height: 65vh;
  }

  .carousel-caption {
    bottom: 20%;
  }

  .carousel-caption h1 {
    font-size: 32px;
  }
}


/* WHY ADOPT SECTION */
.why-adopt {
  padding: 80px 0;
  background-color: #faf8f5;
}

.why-adopt h2 {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 42px;
  margin-bottom: 20px;
  color: #111;
}

.why-adopt p {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 14px;
}

/* Button */
.why-btn {
  display: inline-block;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  background-color: #9750b8;
  color: #fff9f9;
  padding: 10px 26px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.why-btn:hover {
  background-color: #111;
  color: #fff;
  transform: translateY(-2px);
}

/* Image styling */
.why-img {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Mobile */
@media (max-width: 768px) {
  .why-adopt {
    padding: 60px 0;
  }

  .why-adopt h2 {
    font-size: 32px;
  }
}
/* WHY ADOPT A RAGDOLL */
.why-ragdoll {
  padding: 90px 0;
  background-color: #fff;
}

.why-ragdoll h2 {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 44px;
  color: #111;
}

.why-ragdoll .subtitle {
  font-size: 16px;
  color: #666;
  max-width: 600px;
  margin: 10px auto 0;
}

/* Cards */
.ragdoll-card {
  height: 100%;
  background: #faf8f5;
  padding: 28px;
  border-radius: 14px;
  transition: all 0.3s ease;
  border: 1px solid rgba(0,0,0,0.04);
}

.ragdoll-card h5 {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 20px;
  margin-bottom: 10px;
  color: #111;
}

.ragdoll-card p {
  /* font-size: 15px;
  line-height: 1.7;
  color: #444;
  margin: 0; */
  height: 40px;
  /* background: #9b59b6; */
  z-index: 1050;
}

/* Hover */
.ragdoll-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* Highlight last card */
.ragdoll-card.highlight {
  background: linear-gradient(135deg, #9750b8, #f2c27d);
  color: #000;
}

.ragdoll-card.highlight h5,
.ragdoll-card.highlight p {
  color: #000;
}

/* Mobile */
@media (max-width: 768px) {
  .why-ragdoll {
    padding: 70px 0;
  }

  .why-ragdoll h2 {
    font-size: 32px;
  }
}

/* Icon wrapper */
.icon-wrap {
  width: 52px;
  height: 52px;
  background-color: rgba(209, 139, 71, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: all 0.35s ease;
}

.icon-wrap i {
  font-size: 22px;
  color: #9750b8;
  transition: all 0.35s ease;
}

/* Icon animation on card hover */
.ragdoll-card:hover .icon-wrap {
  transform: translateY(-6px) scale(1.08);
  box-shadow: 0 12px 24px rgba(209, 139, 71, 0.4);
}

.ragdoll-card:hover .icon-wrap i {
  transform: rotate(-6deg);
}

/* Highlight card icon */
.ragdoll-card.highlight .icon-wrap {
  background-color: rgba(0, 0, 0, 0.15);
}

.ragdoll-card.highlight .icon-wrap i {
  color: #000;
}

/* RAGDOLL OVERVIEW */
.ragdoll-overview {
  padding: 90px 0;
  background-color: #faf8f5;
}

.ragdoll-overview h2 {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 44px;
  color: #111;
}

.ragdoll-overview .subtitle {
  font-size: 16px;
  color: #666;
  max-width: 650px;
  margin: 10px auto 0;
}

/* Cards */
.overview-card {
  background: #fff;
  padding: 32px;
  border-radius: 16px;
  height: 100%;
  transition: all 0.3s ease;
  border: 1px solid rgba(0,0,0,0.05);
}

.overview-card h5 {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 22px;
  margin-bottom: 12px;
  color: #111;
}

.overview-card p {
  font-size: 15.5px;
  line-height: 1.8;
  color: #444;
  margin: 0;
}

/* Hover */
.overview-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* Mobile */
@media (max-width: 768px) {
  .ragdoll-overview {
    padding: 70px 0;
  }

  .ragdoll-overview h2 {
    font-size: 32px;
  }
}


/* FOOTER */
.site-footer {
  background-color: #0d0d0d;
  color: #ccc;
  padding: 80px 0 30px;
  font-size: 15px;
}

.site-footer h5 {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 20px;
  margin-bottom: 18px;
  color: #fff;
}

/* Brand */
.footer-brand img {
  height: 50px;
  margin-bottom: 15px;
}

.footer-brand p {
  line-height: 1.7;
  color: #bbb;
}

/* Links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #bbb;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #9750b8;
}

/* Contact */
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li {
  margin-bottom: 12px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.footer-contact i {
  color: #9750b8;
  font-size: 16px;
  margin-top: 3px;
}

.footer-contact a {
  color: #bbb;
  text-decoration: none;
}

.footer-contact a:hover {
  color: #9750b8;
}

/* Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  font-size: 14px;
  color: #888;
}

/* Mobile */
@media (max-width: 768px) {
  .site-footer {
    padding: 60px 0 25px;
  }

  .footer-brand img {
    height: 45px;
  }
}




/* ===============================
   FLOATING CONTACT BUTTONS
================================ */

.floating-contact {
  position: fixed;
  bottom: 25px;
  right: 25px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 999;
}

.float-btn {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  transition: all 0.3s ease;
  text-decoration: none;
}

/* Phone */
.float-btn.phone {
  background: #9750b8;
}

/* WhatsApp */
.float-btn.whatsapp {
  background: #25D366;
}

/* Hover Effect */
.float-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.35);
}
