/* Base header style: positioned over top section */
.elementor-location-header {
  position: absolute !important;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 9999;
  transition: opacity 0.4s ease;
}

/* Fade out the header after scroll */
body.header-hidden .elementor-location-header {
  opacity: 0;
  pointer-events: none;
}

/* KEEP header always visible on mobile (under 768px) */
@media (max-width: 767px) {
  body.header-hidden .elementor-location-header {
    opacity: 1;
    pointer-events: auto;
  }
}
/* Override body text color ONLY on page 2989 */
body.page-id-2989 {
  color: #111 !important;   /* dark text */
  background-color: #fff;   /* optional: ensure white background if needed */
}







.tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.tour-card {
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
    background: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tour-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.tour-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.loading-spinner {
    text-align: center;
    padding: 40px;
    color: #666;
    font-size: 16px;
}













/* Change 404 error text color */
.error404 .ast-404-layout-1 .page-content,
.error404 .ast-404-layout-1 .page-header .page-title {
  color: #ffffff; /* Replace with your desired color */
}



















/*----------------------------------------------------------------
Edit The Template Styles Below
----------------------------------------------------------------*/

:root {
  /* Edit Link Colors */
  --color-link: #1391ff;
  --color-link-hover: #06BCC1;
	
	/* Edit Quote */
  --color-quote-border: #06BCC1;
	--width-quote-border: 3px;
  --bg-quote: #F4F8FC;
	
	/* Edit Code */
  --color-code-text: #89E3E4;
	--bg-code: #0B0515;

  /* Edit Spacing */
  --space-s: 0.25rem;
  --space-m: 0.75rem;
  --space-l: 1.25rem;
  --space-xl: 2.25rem;
  --space-xxl: 2.5rem;
	
	/* Edit Image Border Radius */
  --radius-m: 0.75rem;
	
	/* Edit Link Transition */
  --transition-default: 0.2s ease-in-out;

  /* Edit Typography */
  --font-weight-light: 300;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-bold: 700;
  --font-size-xs: .85rem;
  --font-size-p: 1.15rem;
	--mobile-font-size-p: 1.15rem;
  --font-size-m: 1.5rem;
	--mobile-font-size-m: 1.5rem;
  --font-size-l: 2rem;
	--mobile-font-size-l: 2rem;
  --line-height-body: 1.75em;
  --line-height-heading: 1.25em;
  --line-height-list: 1.2em;
}