/* 🎯 Hero Image Settings */
.hero-img {
  max-height: 400px;
  object-fit: cover;
  object-position: center;
}

/* 🎯 Hero Section Styling - Slimmer Padding */
.hero-section {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  display: flex;
  align-items: center;
justify-content: center;
  min-height: 220px;
}

/* 🖼️ Full-width image container */
.hero-image-wrapper img {
  width: 100%;
  object-fit: cover;
  object-position: center;
  height: auto;
  max-height: none;
}

/* 💻 Desktop-specific adjustments */
@media (min-width: 992px) {
  .hero-image-wrapper img {
    height: 650px;
  }

  .hero-section {
    min-height: 220px;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    display: flex;
    align-items: center;
  }

  .sticky-top {
    position: sticky;
    top: 100px !important;
    z-index: 100;
  }

  body.admin-bar .sticky-top {
    top: 132px !important; /* 100 + 32px admin bar */
  }
}

/* 📱 Mobile Typography & Image Tweaks */
@media (max-width: 576px) {
  .hero-section h1,
  .hero-section h2 {
    font-size: 1.5rem;
  }

  .hero-section p.lead {
    font-size: 1rem;
  }

  .hero-image-wrapper img {
    height: 220px;
  }

  .hero-media-wrapper {
    max-height: 300px;
  }

  .lc_hero_text_wrapper {
    padding: 1rem;
  }
}

/* 🧭 Sticky Jump Menu Styling */
#minimenu {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start !important;
  gap: 0.75rem;
  font-size: 0.95rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 0;
  padding: 6px 1rem 6px 0.5rem;
  max-width: 100%;
  box-sizing: border-box;
  scroll-snap-type: x mandatory;
  scroll-padding-left: 0.5rem;
  scroll-behavior: auto;
  scrollbar-width: thin;
  scrollbar-color: #ccc transparent;
}

#minimenu::-webkit-scrollbar {
  height: 4px;
}

#minimenu::-webkit-scrollbar-thumb {
  background-color: #ccc;
  border-radius: 2px;
}

/* 🆙 Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1030;
  display: none;
  width: 40px;
  height: 40px;
  font-size: 20px;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0;
  transition: opacity 0.3s ease;
}

.back-to-top.show {
  display: flex;
  opacity: 1;
}

/* ✨ Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Prevent full-page horizontal scroll */
body {
  overflow-x: hidden;
}

/* 🖼️ Destination Featured Image & Text */
.hero-media-wrapper {
  width: 100%;
  max-height: 550px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-media-element {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.lc_hero_text_wrapper {
  position: relative;
  z-index: 1;
  padding: 2rem;
  text-align: center;
  width: 100%;
  margin: auto;
  color: white;
}

/* Set .lead text to 1.15rem only */
.lead {
  font-size: 1.15rem;
}

#minimenu .nav-link {
  font-size: 1.15rem;
}

.row, .container {
  overflow: visible !important;
}

/* Category Cards */
.card:hover {
  transform: scale(1.02);
  box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.card {
  display: flex;
  flex-direction: column;
}

.card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-img-top {
  max-height: 200px; /* optional: if images are inconsistent */
  object-fit: cover;
}

.navbar-nav .nav-link {
  font-weight: 600;
  color: #003366;
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
  transition: border-color 0.3s ease, color 0.3s ease;
}

.navbar-nav .nav-link.active {
  font-weight: 600;
  color: #5e56a0;
  border-bottom: 2px solid #5e56a0 !important;
}

.navbar-nav .nav-link:hover {
  color: #5e56a0;
  border-bottom: 2px solid #ccc;
}

.footer-social a {
    color: white !important;
    transition: color 0.3s ease;
  }

  .footer-social a:hover {
    color: #cfcfcf !important;
  }

  .footer-newsletter input.form-control {
    border: 1px solid rgba(255, 255, 255, 0.3);
    background-color: white;
    color: #333;
  }

  .footer-newsletter input.form-control:focus {
    outline: none;
    box-shadow: none;
    border-color: #ffffff;
  }

  .footer-newsletter .btn-light:hover {
    background-color: #e6e6e6;
    color: #5e56a0;
  }

  @media (max-width: 768px) {
    .footer-newsletter,
    .footer-links,
    .footer-about {
      margin-top: 2rem;
    }
  }

		/* Nav Order*/
	.zindex-ttd-nav {
  z-index: 1055;
}