/* Gitan Latin Font Face Declarations */
@font-face {
  font-family: 'Gitan Latin';
  src: url('./public/fonts/fonnts.com-Gitan_Latn_Rg.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gitan Latin';
  src: url('./public/fonts/fonnts.com-Gitan_Latn_Me.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gitan Latin';
  src: url('./public/fonts/fonnts.com-Gitan_Latn_Sb.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gitan Latin';
  src: url('./public/fonts/fonnts.com-Gitan_Latn_Bd.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --dark-charcoal: #131618;
  --gold: #cba65b;
  --white: #ffffff;
  --muted: #b0b5bb;
  font-family: 'Gitan Latin', 'Manrope', 'Roboto', system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #ECE6DB;
  color: var(--dark-charcoal);
  font-family: 'Gitan Latin', system-ui, sans-serif;
}

html {
  cursor: auto;
}

.tone {
  background: #f6f6f6;
}

.menu-item-desktop {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 12px;
  color: #36280F;
  font-size: 14px;
  font-weight: 500;
  transition: all .3s;
  background: transparent;
  text-decoration: none;
}

.menu-item-desktop:hover {
  background: #ECE6DB;
  color: #36280F;
}

.menu-item-desktop.active {
  background: #a69a32;
  color: white;
}

.menu-item-desktop.active svg {
  stroke: white;
  color: white;
}

.menu-item-desktop.active:hover {
  background: #a69a32;
  color: white;
}

.menu-item-desktop.active:hover svg {
  stroke: white;
  color: white;
}

/* Active state for dropdown button */
.dropdown .menu-item-desktop.active {
  background: #a69a32;
  color: white;
}

.dropdown .menu-item-desktop.active svg {
  stroke: white;
  color: white;
}

.mobile-item {
  color: #fff;
  text-decoration: none;
  padding: 10px 0;
  border-bottom: 1px solid #333;
  font-size: 16px;
  transition: .3s;
}

.mobile-item:hover {
  color: #A69A32;
}

/* HERO SECTION */
@keyframes slideUp {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  0% { opacity: 0; transform: translateY(10px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, -10px); }
}

@keyframes pulse {
  0% { opacity: 0.3; }
  50% { opacity: 1; }
  100% { opacity: 0.3; }
}

/* Rotating Text Animation */
.rotating-text {
  display: inline-block;
  position: relative;
  min-width: 100px;
}
.fhfhhfghdsasy {
  max-width: 1272px;
  margin: 0 auto;
}

.rotating-word {
  display: inline-block;
  position: absolute;
  left: 0;
  white-space: nowrap !important;
  opacity: 0;
  animation: rotateText 9s infinite;
}

.rotating-word:nth-child(1) {
  position: relative;
  opacity: 1;
  animation: rotateText 9s infinite 0s;
}

.rotating-word:nth-child(2) {
  animation: rotateText 9s infinite 3s;
}

.rotating-word:nth-child(3) {
  animation: rotateText 9s infinite 6s;
}

@keyframes rotateText {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  5% {
    opacity: 1;
    transform: translateY(0);
  }
  28.33% {
    opacity: 1;
    transform: translateY(0);
  }
  33.33% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 0;
    transform: translateY(-10px);
  }
}


/* CURATED JOURNEYS */
/* ------------------------------
   GLOBAL SECTION WRAPPER
--------------------------------*/
.properties-section {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 96px;
  padding-bottom: 96px;
}

/* ------------------------------
 TOP TITLE AREA
--------------------------------*/
.title-line {
  height: 1px;
  width: 48px;
  background: #8F6226;
}

.title-subtext {
  color: #8F6226;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.title-heading {
  font-size: 2rem;
  font-weight: 700;
  color: #36280F;
  margin-bottom: 8px;
  font-family: inherit;
}

@media (min-width: 768px) {
  .title-heading {
      font-size: 3rem;
  }
}

.title-description {
  color: #26190F;
  max-width: 520px;
  margin: 0 auto;
  font-size: 18px;
}

/* ------------------------------
 CUSTOM ITINERARY BUTTON
--------------------------------*/
.btn-custom-itinerary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 40px;
  padding: 0 32px;
  border-radius: 6px;
  background: #A69A32;
  color: white;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: inherit;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-custom-itinerary:hover {
  background: #8F6226;
}

/* ------------------------------
 PROPERTY CARD LAYOUT
--------------------------------*/
.property-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.12);
  transition: all 0.4s ease;
  cursor: pointer;
}

.property-card:hover {
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
  transform: translateY(-3px);
}

/* ------------------------------
 CARD IMAGE & GRADIENT OVERLAY
--------------------------------*/
.property-card-img-wrapper {
  position: relative;
  height: 260px;
  overflow: hidden;
}

.property-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s ease-in-out;
}

.property-card:hover .property-card-img {
  transform: scale(1.1);
}

.property-img-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.60), transparent);
}

/* ------------------------------
 DURATION BADGE
--------------------------------*/
.property-duration {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #A69A32;
  color: white;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
}

/* ------------------------------
 CARD BODY
--------------------------------*/
.property-card-body {
  padding: 24px;
}

.property-title {
  font-size: 20px;
  font-weight: 700;
  color: #36280F;
  margin-bottom: 8px;
}

.property-description {
  font-size: 14px;
  color: #666;
  margin-bottom: 16px;
}

/* ------------------------------
 LINE CLAMP (Tailwind Equivalent)
--------------------------------*/
.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ------------------------------
 TAGS / DESTINATIONS BADGES
--------------------------------*/
.property-tag {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  border: 1px solid #8F6226;
  color: #693D22;
}

/* ------------------------------
 FEATURE LIST
--------------------------------*/
.property-features {}
.property-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  font-size: 12px;
  color: #666;
  margin-bottom: 6px;
}

.property-feature-item svg {
  color: #16A34A; /* green-600 */
  margin-top: 2px;
}

/* ------------------------------
 PRICE + BUTTON FOOTER
--------------------------------*/
.property-footer {
  padding-top: 16px;
  border-top: 1px solid #e5e5e5;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.price-label {
  font-size: 11px;
  color: #693D22;
  margin: 0;
}

.price-value {
  font-size: 28px;
  font-weight: 700;
  color: #A69A32;
  margin: 0;
  font-family: inherit;
}

/* ------------------------------
 DETAILS BUTTON
--------------------------------*/
.btn-details {
  padding: 6px 18px;
  background: #A69A32;
  color: white;
  border-radius: 6px;
  border: none;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all .2s ease;
}

.btn-details:hover {
  background: #8F6226;
}

/* our promises */
/* -------------------------
   TITLE AREA
-------------------------- */
.why-line {
  width: 48px;
  height: 1px;
  background: #8F6226;
}

.why-subtext {
  color: #8F6226;
  font-size: 12px;
  letter-spacing: 0.2em;
  font-weight: 500;
  text-transform: uppercase;
}

.why-title {
  font-size: 2rem;
  font-weight: 700;
  color: #36280F;
  margin-bottom: 12px;
}

@media (min-width: 768px) {
  .why-title {
      font-size: 3rem;
  }

}

.why-desc {
  font-size: 18px;
  color: #26190F;
  max-width: 600px;
  margin: 0 auto;
}

/* -------------------------
 CARD BASE
-------------------------- */
.why-card {
  background: white;
  border-radius: 20px;
  padding: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  position: relative;
  height:327px
}

.why-card:hover {
  box-shadow: 0 12px 35px rgba(0,0,0,0.25);
}

/* Inner wrapper */
.why-card-inner {
  padding: 32px;
  text-align: center;
  position: relative;
  z-index: 2;
}

/* -------------------------
 ICON AREA
-------------------------- */
.why-icon-wrapper {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  position: relative;
}

.why-icon-blur {
  position: absolute;
  inset: 0;
  background: rgba(166,147,50,0.20);
  border-radius: 50%;
  filter: blur(20px);
  opacity: 0.4;
  transition: opacity 0.4s ease;
}

.group:hover .why-icon-blur {
  opacity: 0.6;
}

.why-icon-circle {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, #8F6226, #693D22);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s ease;
  box-shadow: 0 12px 32px rgba(0,0,0,0.25);
}

.group:hover .why-icon-circle {
  transform: scale(1.1);
}

.why-icon {
  width: 40px;
  height: 40px;
  color: white;
}

/* -------------------------
 CARD TEXT
-------------------------- */
.why-card-title {
  font-size: 22px;
  font-weight: 700;
  color: #36280F;
  margin-bottom: 12px;
}

.why-card-text {
  font-size: 14px;
  color: #26190F;
  line-height: 1.6;
}

/* Organic rounded */
.organic-rounded {
  border-radius: 18px;
}
/* explore kenya section */
/* --- Section wrapper --- */
.kenya-hero-section {
  position: relative;
  /* height: 80vh; */
  overflow: hidden;
  padding-top: 70px;
}

/* --- Background Image --- */
.kenya-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1516426122078-c23e76319801?w=1920&q=80");
  background-size: cover;
  background-position: center;
  z-index: 1;
}

/* --- Gradient layer --- */
.kenya-hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
      to bottom,
      rgba(38, 25, 15, 0.70),
      rgba(38, 25, 15, 0.60),
      rgba(38, 25, 15, 0.90)
  );
  z-index: 2;
}

/* --- Content layer --- */
.kenya-hero-content {
  position: relative;
  z-index: 3;
}

.hero-text-wrapper {
  padding-top: 100px;
  /* padding-bottom: 100px; */
  max-width: 700px;
}

/* --- Divider lines --- */
.hero-line {
  height: 1px;
  width: 48px;
  background: #8F6226;
}

/* --- Subtitle --- */
.hero-subtitle {
  color: #8F6226;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.20em;
  text-transform: uppercase;
}

/* --- Heading --- */
.hero-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
  line-height: 1.1;
}

@media (min-width: 768px) {
  .hero-title {
      font-size: 3.75rem; /* text-6xl equivalent */
  }
}

.hero-title-highlight {
  display: block;
  color: #A69A32;
}

/* --- Description --- */
.hero-description {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.90);
  line-height: 1.7;
  /* max-width: 650px; */
}

@media (min-width: 768px) {
  .hero-description {
    font-size: 1.25rem;
  }
}

/* /* ----------------------------------------------------------
   GLOBAL DESTINATIONS SECTION CSS
   Tailwind → Pure CSS Conversion
---------------------------------------------------------- */

/* Container spacing */
.dest-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 16px;
}

/* Grid */
.dest-grid {
  display: grid;
  gap: 48px;
}

@media (min-width: 992px) {
  .dest-grid-2 {
      grid-template-columns: repeat(2, 1fr);
  }
}

/* Image wrapper */
.dest-img-wrapper {
  position: relative;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 35px rgba(0,0,0,0.25);
}

.dest-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Gradient overlay */
.dest-img-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
}

/* Icon gradient box */
.icon-box {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(to bottom right, #8F6226, #693D22);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Headings */
.dest-title {
  font-size: 2rem;
  font-weight: 700;
  color: #36280F;
  margin: 0;
}

.dest-subtitle {
  font-size: 14px;
  color: #8F6226;
  font-style: italic;
}

/* Paragraphs */
.dest-text {
  color: #26190F;
  line-height: 1.7;
  margin-bottom: 24px;
}

/* Tag styles */
.tag {
  display: inline-flex;
  align-items: center;
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 600;
  background: #ECE6DB;
  color: #693D22;
  border: 1px solid rgba(143, 98, 38, 0.3);
  margin-right: 8px;
  margin-bottom: 8px;
}

/* Wildlife tags */
.tag-wildlife {
  background: rgba(166, 154, 50, 0.10);
  color: #693D22;
  border: 1px solid rgba(166, 154, 50, 0.30);
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  cursor: pointer;
  transition: 0.3s ease;
}

.tag-wildlife:hover {
  background: rgba(143, 98, 38, 1);
  color: white;
}

/* Accordion card */
.accordion-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 35px rgba(0,0,0,0.15);
}

.accordion-header {
  background: rgba(236, 230, 219, 0.3);
  padding: 24px;
  cursor: pointer;
  transition: 0.3s ease;
}

.accordion-header:hover {
  background: rgba(236, 230, 219, 0.5);
}

.accordion-header-title {
  font-size: 18px;
  color: #36280F;
  font-weight: 600;
}

.accordion-body {
  padding: 0 24px 24px 24px;
  font-size: 14px;
  color: #26190F;
  line-height: 1.7;
}

/* CTA Button */
.dest-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 20px;
  height: 40px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: #A69A32;
  color: white;
  border: none;
  transition: 0.3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.20);
}

.dest-btn:hover {
  background: #8F6226;
  color: white;
}

/* Spacing for sections */
.dest-block {
  margin-bottom: 100px;
}

/* Reverse grid (for alternating layouts) */
@media (min-width: 992px) {
  .dest-grid-reverse {
      grid-template-columns: repeat(2, 1fr);
      direction: rtl;
  }
  .dest-grid-reverse > * {
      direction: ltr;
  }
}

/* accomodation section */
/* Background gradient & spacing */
.collection-section {
  background: linear-gradient(to bottom, #26190F, #36280F);
  color: white;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

/* Max width for content */
.collection-content {
  max-width: 750px;
}

/* Small divider line */
.line-accent {
  height: 1px;
  width: 48px; /* w-12 */
  background-color: #8F6226;
}

/* Highlight uppercase label */
.highlight-text {
  color: #8F6226;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* Heading styling */
.collection-background {
  /* ...existing code... */
}

/* Heading styling */
.collection-heading {
  font-size: 2.25rem; /* text-4xl mobile */
  line-height: 1.2;
  font-weight: 700;
  color: #E5E7EB; /* text-gray-200 */
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .collection-heading {
      font-size: 3.75rem; /* md:text-6xl */
  }
}

/* Description text */
.collection-description {
  font-size: 1rem; /* text-base mobile */
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.65;
}

@media (min-width: 768px) {
  .collection-description {
    font-size: 1.25rem; /* text-xl desktop */
  }
}

/* accomodation section */
/* -------------------------
   FILTER CONTAINER STYLING
----------------------------*/
.filter-box {
  background: #ffffff;
  border-radius: 16px;
}

/* -------------------------
 SLIDER STYLING (Matches Tailwind)
----------------------------*/
.price-range {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  background: rgba(166, 154, 50, 0.25);
  border-radius: 20px;
  outline: none;
}

.price-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  height: 16px;
  width: 16px;
  background: #ffffff;
  border: 2px solid #A69A32;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0 4px rgba(0,0,0,0.2);
  transition: 0.2s;
}

.price-range::-webkit-slider-thumb:hover {
  background: #F5F5F5;
}

/* -------------------------
 CHECKBOXES (Matches Tailwind UI)
----------------------------*/
.filter-check {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 300;
}

.custom-check {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  border: 1px solid rgba(139, 69, 19, 0.5);
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  position: relative;
}

.custom-check:checked {
  background: #A69A32;
  border-color: #A69A32;
}

.custom-check:checked::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 5px;
  width: 4px;
  height: 8px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* --------------------------------------
   STAR ICON (matches Tailwind gold star)
---------------------------------------*/
.star-icon {
  width: 16px;
  height: 16px;
  background: #A69A32;
  -webkit-mask: url('https://svgshare.com/i/13dq.svg') no-repeat center;
  mask: url('https://svgshare.com/i/13dq.svg') no-repeat center;
  display: inline-block;
}

/* --------------------------------------
 RATING BUTTONS
---------------------------------------*/
.rating-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  transition: 0.2s;
}

.rating-btn:hover {
  background: #f8f9fa;
}
/* Active checkbox style */
.active-check .custom-check {
  background-color: #A69A32;
  border-color: #A69A32;
}

.rating-active {
  background: #f2e9c3 !important;
  border: 1px solid #A69A32;
}
.rating-active:hover {
  background: #e8dfb7 !important;
}

.property-card {
  border: 1px solid #e5e5e5;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.4s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.property-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 35px rgba(0,0,0,0.12);
}

.property-image-wrapper {
  position: relative;
  height: 260px;
  overflow: hidden;
}

.property-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s ease;
}

.property-card:hover .property-image {
  transform: scale(1.05);
}

.image-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent 60%);
  z-index: 1;
}

/* Equal height cards */
.property-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.property-card .card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.property-card .property-desc {
  flex: 1;
}

.badge-top-right {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(255,255,255,0.95);
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 12px;
  color: #554532;
  font-weight: 600;
  z-index: 10;
}

.price-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: #A69A32;
  color: #fff;
  padding: 8px 16px;
  border-radius: 10px;
  font-size: 20px;
  font-weight: 700;
  z-index: 10;
}

.price-badge span {
  font-size: 12px;
  font-weight: 400;
  opacity: .9;
}

.top-left-buttons {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  gap: 8px;
  z-index: 10;
}

.icon-btn {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.95);
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.12);
  transition: all 0.3s ease;
  color: #693D22;
}

.icon-btn:hover {
  background: #fff;
}

.heart-btn {
  color: #554532;
}

.heart-btn:hover {
  color: #a85e4f;
}

.property-title {
  font-size: 22px;
  font-weight: 700;
  color: #36280F;
  margin-bottom: 6px;
}

.property-card:hover .property-title {
  color: #8F6226;
}

.location {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #26190F;
  font-size: 14px;
  margin-bottom: 10px;
}

.location-icon {
  color: #A69A32;
  font-size: 16px;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.property-desc {
  font-size: 14px;
  color: #26190F;
  line-height: 1.4;
  margin-bottom: 0;
}
.text-card-foreground{
  border-radius: 12px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.text-card-foreground > a {
  display: flex;
  flex-direction: column;
  flex: 1;
  text-decoration: none;
  color: inherit;
}

.text-card-foreground .p-4 {
  flex: 1;
  display: flex;
  flex-direction: column;
}
/* Animation Delay */
.animate-delay-210 {
  animation: slideUp .6s ease-out .21s both;
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-delay-220 {
  animation: slideUp .6s ease-out .22s both;
}
.animate-delay-230 {
  animation: slideUp .6s ease-out .23s both;
}
.animate-delay-0 { animation: slideUp .6s ease-out 0s both; }
.animate-delay-10 { animation: slideUp .6s ease-out .1s both; }
.animate-delay-20 { animation: slideUp .6s ease-out .2s both; }
.animate-delay-30 { animation: slideUp .6s ease-out .3s both; }
.animate-delay-40 { animation: slideUp .6s ease-out .4s both; }
.animate-delay-50 { animation: slideUp .6s ease-out .5s both; }
.animate-delay-60 { animation: slideUp .6s ease-out .6s both; }
.animate-delay-70 { animation: slideUp .6s ease-out .7s both; }
.animate-delay-80 { animation: slideUp .6s ease-out .8s both; }
.animate-delay-90 { animation: slideUp .6s ease-out .9s both; }
.animate-delay-100 { animation: slideUp .6s ease-out 1s both; }
.animate-delay-110 { animation: slideUp .6s ease-out 1.1s both; }
.animate-delay-120 { animation: slideUp .6s ease-out 1.2s both; }
.animate-delay-130 { animation: slideUp .6s ease-out 1.3s both; }
.animate-delay-140 { animation: slideUp .6s ease-out 1.4s both; }
.animate-delay-150 { animation: slideUp .6s ease-out 1.5s both; }
.animate-delay-160 { animation: slideUp .6s ease-out 1.6s both; }
.animate-delay-170 { animation: slideUp .6s ease-out 1.7s both; }
.animate-delay-180 { animation: slideUp .6s ease-out 1.8s both; }
.animate-delay-190 { animation: slideUp .6s ease-out 1.9s both; }
.animate-delay-200 { animation: slideUp .6s ease-out 2s both; }
.animate-delay-210 { animation: slideUp .6s ease-out .21s both; }
.animate-delay-220 { animation: slideUp .6s ease-out .22s both; }
.animate-delay-230 { animation: slideUp .6s ease-out .23s both; }
.animate-delay-240 { animation: slideUp .6s ease-out .24s both; }
.animate-delay-250 { animation: slideUp .6s ease-out .25s both; }
.animate-delay-260 { animation: slideUp .6s ease-out .26s both; }



.feature-badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 10px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  background: #ECE6DB;
  color: #693D22;
  border: 1px solid rgba(143, 98, 38, 0.3);
  transition: all .3s ease;
}

.feature-badge i {
  font-size: 13px;
}


.wishlist-btn {
  border: 1px solid #9B8F4B !important;
  color: #9B8F4B !important;
  background: white !important;
  border-radius: 8px !important;
  font-weight: 500;
  transition: 0.25s;
}
.wishlist-btn:hover {
  background: #f8f8f8 !important;
  color: #8B4513 !important;
}

.wishlist-secondary-btn {
  border: 1px solid #ddd !important;
  background: white !important;
  border-radius: 8px !important;
  font-weight: 500;
  transition: 0.25s;
}
.wishlist-secondary-btn:hover {
  background: #f8f8f8 !important;
}











/* FOOTER */
/* Footer wrapper */
.footer-wrapper {
  background: #26190F;
  color: white;
}

/* Logo */
.footer-logo {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #36280F;
}

.footer-logo-highlight {
  color: #A69A32;
}

/* Light paragraph */
.footer-text {
  color: rgba(236, 230, 219, 0.80);
  font-size: 14px;
  line-height: 1.7;
  max-width: 420px;
  font-weight: 300;
}

.footer-site {
  color: rgba(236, 230, 219, 0.60);
  font-size: 11px;
  letter-spacing: 0.1em;
}

/* Divider */
.footer-divider {
  border-color: rgba(236, 230, 219, 0.10) !important;
}

/* “Follow our adventures” */
.footer-follow {
  color: #ECE6DB;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: 0.1em;
  font-size: 13px;
}

/* Social icons */
.footer-social {
  width: 48px;
  height: 48px;
  background: rgba(236, 230, 219, 0.10);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
}

.footer-social:hover {
  background: #8F6226;
  transform: scale(1.10);
}

.footer-social-icon {
  width: 20px;
  height: 20px;
  color: #ECE6DB;
  transition: 0.3s;
}

.footer-social:hover .footer-social-icon {
  color: white;
}

/* Headings */
.footer-heading {
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ECE6DB;
  margin-bottom: 16px;
  font-weight: 600;
}

/* List */
.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-list li {
  margin-bottom: 10px;
}

/* Links */
.footer-link {
  font-size: 14px;
  color: rgba(236, 230, 219, 0.80);
  transition: 0.3s;
}

.footer-link:hover {
  color: #A69A32;
}

/* Bold links */
.footer-link-bold {
  color: rgba(236, 230, 219, 0.80);
  font-weight: 500;
  transition: 0.3s;
}

.footer-link-bold:hover {
  color: #A69A32;
}

/* Light text */
.footer-light {
  font-size: 14px;
  color: rgba(236, 230, 219, 0.80);
  font-weight: 300;
}

.footer-location {
  margin-top: 8px;
  font-size: 12px;
  color: rgba(236, 230, 219, 0.60);
}

/* Bottom row */
.footer-copy {
  color: rgba(236, 230, 219, 0.60);
  font-size: 13px;
}

.footer-bottom-links a {
  color: rgba(236, 230, 219, 0.60);
  font-size: 13px;
  transition: 0.3s;
}

.footer-bottom-links a:hover {
  color: #A69A32;
}
/* floating button */
/* Floating position */
.chat-floating-btn {
  position: fixed;
  bottom: 24px;   /* bottom-6 */
  right: 24px;    /* right-6 */
  z-index: 50;
}

/* Button styling */
.chat-btn {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  padding: 8px 16px;
  border: none;
  cursor: pointer;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  background: linear-gradient(to bottom right, #9B8F4B, #8B4513);
  box-shadow: 0px 25px 50px rgba(0,0,0,0.35); /* shadow-2xl */
  transition: 0.25s ease;
}

/* Hover gradient */
.chat-btn:hover {
  background: linear-gradient(to bottom right, #8B4513, #A0714F);
}

/* Icon color */
.chat-btn-icon {
  width: 28px;
  height: 28px;
  color: white;
  pointer-events: none;
}


@media (max-width: 475px) {
    .rotating-word {
  font-size: 35px;
  }
}

/* ============================================
   RESPONSIVE HERO SECTION TEXT - MOBILE ONLY
   ============================================ */

/* Mobile breakpoint: screens below 768px (Bootstrap md) */
@media (max-width: 767.98px) {
  
  /* accomodation.html - Hero section */
  .collection-heading {
    font-size: 1.75rem !important;
  }
  
  .collection-description {
    font-size: 0.9rem !important;
  }
  
  /* destination.html - Hero section */
  .hero-title {
    font-size: 1.75rem !important;
  }
  
  .hero-description {
    font-size: 0.9rem !important;
  }
  
  /* itnerary-builder.html - Hero section */
  .safari-heading {
    font-size: 1.75rem !important;
  }
  
  .safari-subheading {
    font-size: 0.9rem !important;
  }
  
  /* my-bookings.html - Hero section */
  .account-bg .display-6 {
    font-size: 1.75rem !important;
  }
  
  .account-bg .text-muted {
    font-size: 0.875rem !important;
  }
  
  /* safari-board.html - Hero section */
  .min-h-screen .display-6 {
    font-size: 1.75rem !important;
  }
  
  .min-h-screen .text-gray-600-custom {
    font-size: 0.875rem !important;
  }
  
  /* Hero sections with inline styles - using classes */
  .hero-title-mobile {
    font-size: 2rem !important;
  }
  
  .hero-description-mobile {
    font-size: 1rem !important;
  }
}


