/* EL YAK Adventures - Carousel Custom Styles - Responsive Fixes */

/* Main carousel contaicner */
.elyak-carousel {
  position: relative;
  overflow: hidden;
  margin-bottom: 3rem;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Slide container */
.elyak-carousel .carousel-inner {
  min-height: 75vh;
}

/* Individual slide */
.elyak-carousel .carousel-item {
  position: relative;
  height: 80vh;
  background-size: cover;
  background-position: center;
}

/* Slide overlay for text readability - Enhanced gradient with blue tint */
.elyak-carousel .carousel-item:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 75%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0.1) 100%);
  z-index: 1;
}

/* Slide content - Fixed alignment and positioning */
.elyak-carousel .carousel-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2rem;
  text-align: left;
  z-index: 2;
}

/* Universal text styles for carousel captions */
.elyak-carousel .carousel-caption * {
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.8s ease-out;
}

/* Text formatting within carousel caption - using rich text markup */
.elyak-carousel .carousel-caption strong,
.elyak-carousel .carousel-caption b {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #fff;
  text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.8);
  transition-delay: 0.2s;
  line-height: 1.2;
}

/* Changed color to blue from the nav buttons */
.elyak-carousel .carousel-caption em,
.elyak-carousel .carousel-caption i {
  display: block;
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 1.2rem;
  color: #2a9fd6; /* Changed from #ff6a00 to match navigation buttons */
  text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.1);
  transition-delay: 0.3s;
  line-height: 1.3;
}

/* Regular paragraph text - slightly blue-tinted */
.elyak-carousel .carousel-caption p {
  font-size: 1.0rem;
  line-height: 1.5;
  max-width: 700px;
  margin-bottom: 1.5rem;
  color: #e8f4fc; /* Light blue-tinted white for better readability */
  text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.1);
  transition-delay: 0.4s;
}

/* Special handling for first paragraph if no bold/italic is present */
.elyak-carousel .carousel-caption p:first-child:not(:has(strong)):not(:has(em)) {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  color: #fff;
  text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.8);
}

/* Slide button - updated to match nav button color */
.elyak-carousel .carousel-btn {
  display: inline-block;
  padding: 12px 28px;
  background-color: #2a9fd6; /* Changed from #ff6a00 to match navigation buttons */
  color: white;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border: none;
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.8s ease-out 0.6s, opacity 0.8s ease-out 0.6s, background-color 0.3s ease;
  margin-top: 0.5rem;
  box-shadow: 0 3px 10px rgba(42, 159, 214, 0.3); /* Subtle glow effect */
}

.elyak-carousel .carousel-btn:hover {
  background-color: #1e87bb; /* Darker shade for hover state */
  transform: translateY(0) scale(1.05);
  box-shadow: 0 5px 15px rgba(42, 159, 214, 0.5);
}

/* Active slide animations - fixed for all screen sizes */
.elyak-carousel .carousel-item.active .carousel-caption * {
  transform: translateY(0);
  opacity: 1;
}

.elyak-carousel .carousel-item.active .carousel-btn {
  transform: translateY(0);
  opacity: 1;
}


/* Navigation arrows - enhanced styling */
.elyak-carousel .carousel-control-prev,
.elyak-carousel .carousel-control-next {
  width: 50px;
  height: 50px;
  background-color: rgba(42, 159, 214, 0.5); /* Lighter blue with transparency */
  border-radius: 50%;
  top: 45%;
  transform: translateY(-50%);
  opacity: 0.9;
  transition: all 0.3s ease;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.elyak-carousel .carousel-control-prev {
  left: 20px;
}

.elyak-carousel .carousel-control-next {
  right: 20px;
}

.elyak-carousel .carousel-control-prev:hover,
.elyak-carousel .carousel-control-next:hover {
  background-color: #2a9fd6; /* Full opacity on hover */
  opacity: 1;
  box-shadow: 0 0 15px rgba(42, 159, 214, 0.5); /* Glow effect on hover */
}

/* Indicators - improved styling */
.elyak-carousel .carousel-indicators {
  bottom: 0;
  margin-bottom: 0.8rem;
  z-index: 15;
}

.elyak-carousel .carousel-indicators li {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.6);
  margin: 0 5px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.elyak-carousel .carousel-indicators li.active {
  background-color: #2a9fd6; /* Changed from #ff6a00 to match navigation buttons */
  transform: scale(1.2);
  box-shadow: 0 0 8px rgba(42, 159, 214, 0.7);
}

/* Ken Burns effect - smoother animation with proper display */
.elyak-carousel .carousel-item img {
  animation: kenburns 25s ease-in-out infinite alternate;
  transition: opacity 1s ease;
  transform-origin: center center;
  object-fit: cover;
  width: 100%;
  display: block;
}

@keyframes kenburns {
  0% {
    transform: scale(1.05) translate(-1%, -1%);
  }
  100% {
    transform: scale(1.15) translate(1%, 1%);
  }
}

/* Improved Responsive adjustments */
/* For medium screens and above (tablets and up) */
@media (min-width: 768px) {
  /* Ensure the slide is the stacking context */
  .elyak-carousel .carousel-item {
    position: relative;
    overflow: hidden;            /* clips anything outside */
  }

  /* Lightened gradient overlay: image stays vibrant */
  .elyak-carousel .carousel-item:before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(
      to top,
      rgba(0, 0, 0, 0.6) 0%,
      rgba(0, 0, 0, 0.2) 50%,
      rgba(0, 0, 0, 0) 100%
    );
    z-index: 1;
    pointer-events: none;        /* let clicks through */
  }

  /* Keep the image above the gradient */
  .elyak-carousel .carousel-item img {
    position: relative;
    z-index: 0;
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
  }

  /* Caption container */
  .elyak-carousel .carousel-caption {
    position: absolute;
    bottom: 9%; left: 13%;
    max-width: 75%;             /* leaves breathing room */
    padding: 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px); /* blur behind caption */
    border-radius: 10px;
    overflow-wrap: break-word;
    word-break: break-word;
    z-index: 2;
  }

  /* Text styles inside caption */
  .elyak-carousel .carousel-caption * {
    color: #fff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7);
  }
}


/* Mobile sizes - with stacked caption below image */
@media (max-width: 576px) {
    

  .elyak-carousel .carousel-item {
    height: auto;
    min-height: 40vh;
  }
  
  .elyak-carousel .carousel-control-prev,
  .elyak-carousel .carousel-control-next {
    display: none !important;
  }
  
  .elyak-carousel .carousel-inner {
    min-height: auto;
  }
  
  /* Transform caption to stack below image rather than overlay */
  .elyak-carousel .carousel-caption.d-none {
    display: block !important;
    position: relative;
    bottom: auto;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    background-color: #000;
    border-top: 3px solid #2a9fd6;
  }
  
  /* Remove the gradient overlay since caption is now below */
  .elyak-carousel .carousel-item:before {
    display: none;
  }
  
  .elyak-carousel .carousel-caption strong,
  .elyak-carousel .carousel-caption b {
    font-size: 1.5rem;
    margin-bottom: 0.3rem;
  }
  
  .elyak-carousel .carousel-caption em,
  .elyak-carousel .carousel-caption i {
    font-size: 1rem;
    margin-bottom: 0.6rem;
  }
  
  .elyak-carousel .carousel-caption p {
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 0.8rem;
    max-width: 100%;
  }
  
  .elyak-carousel .carousel-control-prev,
  .elyak-carousel .carousel-control-next {
    width: 35px;
    height: 35px;
    opacity: 0.7; /* Reduced opacity on mobile for less interference */
  }
  
  .elyak-carousel .carousel-indicators {
    margin-bottom: 0.4rem;
  }
  
  .elyak-carousel .carousel-indicators li {
    width: 8px;
    height: 8px;
    margin: 0 3px;
  }
  
  .elyak-carousel .carousel-btn {
    padding: 8px 18px;
    font-size: 0.8rem;
    margin-top: 0.4rem;
  }
  
  /* Stronger text contrast for mobile with blue tint */
  .elyak-carousel .carousel-item:before {
    height: 90%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.7) 50%, rgba(0, 0, 0, 0.2) 100%);
  }
  
  /* Reposition indicators between image and caption */
  .elyak-carousel .carousel-indicators {
    bottom: auto;
    top: auto;
    position: relative;
    margin: 0;
    padding: 0.5rem 0;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
  }
  
  /* Adjust indicator styles to fit new position */
  .elyak-carousel .carousel-indicators li {
    width: 10px;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.6);
  }
  
  .elyak-carousel .carousel-indicators li.active {
    background-color: #2a9fd6;
  }
}

/* Extra small mobile devices */
@media (max-width: 375px) {
  .elyak-carousel .carousel-item img {
    min-height: 30vh; /* Ensure image has minimum height */
  }
  
  .elyak-carousel .carousel-caption {
    padding: 1rem 0.8rem;
  }
  
  .elyak-carousel .carousel-caption strong,
  .elyak-carousel .carousel-caption b {
    font-size: 1.3rem;
  }
  
  /* Fix for very small devices - ensure elements fit */
  .elyak-carousel .carousel-btn {
    padding: 6px 15px;
    font-size: 0.75rem;
  }
}

/* Fix for iOS Safari full height issues */
@supports (-webkit-touch-callout: none) {
  .elyak-carousel .carousel-item img {
    max-height: 70vh; /* Safer height for iOS */
  }
  
  @media (max-width: 576px) {
    .elyak-carousel .carousel-item img {
      max-height: 40vh;
    }
    
    /* Ensure caption animations work properly on iOS */
    .elyak-carousel .carousel-caption * {
      transform: none;
      opacity: 1;
    }
  }
}

/* ========== SMALL-SCREEN CAPTION OVERRIDE ========== */
@media (max-width: 576px) {
  /* Ensure captions always show (override .d-none) */
  .elyak-carousel .carousel-caption,
  .elyak-carousel .carousel-caption.d-none {
    display: block !important;
    position: relative !important;
    bottom: auto;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    background-color: #000;
    border-top: 3px solid #2a9fd6;
    opacity: 1 !important;
    transform: none !important;
  }

  /* Speed up text animations on mobile */
  .elyak-carousel .carousel-caption * {
    transition: none;
    transform: none;
    opacity: 1;
  }

  /* Bigger touch targets for arrows */
  .elyak-carousel .carousel-control-prev,
  .elyak-carousel .carousel-control-next {
    width: 60px;
    height: 60px;
    opacity: 1;
  }

  /* Swipe-hint overlay */
  .elyak-carousel .swipe-hint {
    position: absolute;
    bottom: 15%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.85rem;
    color: rgba(255,255,255,0.8);
    background: rgba(0,0,0,0.4);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    pointer-events: none;
    animation: fadeSwipeHint 3s ease-out 1;
    z-index: 5;
  }

  @keyframes fadeSwipeHint {
    0%   { opacity: 0; }
    10%  { opacity: 0.8; }
    70%  { opacity: 0.8; }
    100% { opacity: 0; }
  }
}

/* ========== TOUCH TARGET & UX IMPROVEMENTS (ALL SIZES) ========== */
/* Increase the clickable area of arrows without changing their visual size */
.elyak-carousel .carousel-control-prev,
.elyak-carousel .carousel-control-next {
  padding: 1rem;          /* invisible padding for easier tap */
  box-sizing: content-box;
}

/* Add a very subtle pulsing to active indicator to draw attention */
.elyak-carousel .carousel-indicators li.active {
  animation: pulseIndicator 1.5s ease-in-out infinite;
}

@keyframes pulseIndicator {
  0%,100% { transform: scale(1.2); }
  50%     { transform: scale(1.35); }
}



/* EL YAK Adventures – Enhanced Hero Styling for CodeRed CMS
   (Keeping heroEdits on the same wrapper as hero-bg) */

/* ———————————————————————————————
   Base Hero Container + Parallax Layers
   ——————————————————————————————— */
.hero-bg.heroEdits {
  position: relative;
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
  min-height: 80vh;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  /* we’re no longer using heroEdits for content layout */
}

/* Ken Burns background animation */
@keyframes kenburns {
  0%   { transform: scale(1.05) translate(-2%, -1%); }
  100% { transform: scale(1.15) translate(2%, 1%);  }
}

/* both pseudo-layers live behind everything now */
.hero-bg.heroEdits.parallax::before,
.hero-bg.heroEdits.parallax::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  /* push them behind the wrapper itself */
  z-index: -1;
}

/* animated background image */
.hero-bg.heroEdits.parallax::before {
  background-image: inherit;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  will-change: transform;
  animation: kenburns 25s ease-in-out infinite alternate;
  transform-origin: center center;
}

/* semi-transparent tint */
.hero-bg.heroEdits.parallax::after {
  background: linear-gradient(
    135deg,
    rgba(25, 34, 49, 0.6) 0%,
    rgba(25, 34, 49, 0.4) 50%,
    rgba(42, 159, 214, 0.2) 100%
  );
}

/* ———————————————————————————————
   Bring your .hero-fg content into view
   ——————————————————————————————— */
.hero-bg.heroEdits > .hero-fg {
  position: relative;
  z-index: 1;             /* sits above both ::before & ::after */
  min-height: 80vh;
  display: flex;          /* center your grid vertically */
  align-items: center;
  padding: 5rem 0;        /* adjust as needed */
}

/* ensure your text is legible */
.hero-bg.heroEdits .hero-fg h2,
.hero-bg.heroEdits .hero-fg p,
.hero-bg.heroEdits .hero-fg .btn {
  color: #fff !important;
  text-shadow:
    0 2px 3px rgba(0,0,0,0.6),
    0 4px 7px rgba(0,0,0,0.4);
}

/* keep button animations & styling */
.hero-bg.heroEdits .hero-fg .btn {
  opacity: 1;  /* remove any fade-in defaults if needed */
  transition: all 0.3s;
}
.hero-bg.heroEdits .hero-fg .btn:hover {
  transform: translateY(-3px);
}



/* EL YAK Adventures - Enhanced Gallery Styles */

/* Gallery Container Adjustments */
.crx-grid {
    padding-top: 60px;
    padding-bottom: 60px;
}

/* Gallery Image Thumbnails */
.lightbox-preview {
    display: block;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.lightbox-preview:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.img-thumbnail {
    border: none;
    padding: 0;
    border-radius: 8px;
    transition: transform 0.5s ease;
}

.lightbox-preview:hover .img-thumbnail {
    transform: scale(1.1);
}

/* Overlay Effect for Images */
.lightbox-preview::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 8px;
}

.lightbox-preview:hover::after {
    opacity: 1;
}

/* Zoom Icon on Hover */
.lightbox-preview::before {
    content: '🔍';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 24px;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox-preview:hover::before {
    opacity: 1;
}

/* Modal Lightbox Improvements */
.modal-lightbox {
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
    max-width: 90%;
    margin: 0 auto;
}

.modal-lightbox .modal-body {
    padding: 0;
    position: relative;
    text-align: center;
}

.modal-lightbox .img-fluid {
    max-height: 85vh;
    width: auto;
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Loading state for images */
.modal-lightbox .img-fluid.loading {
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

/* Enhanced Gallery Navigation Buttons CSS */
.gallery-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-color: rgba(42, 159, 214, 0.7);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 24px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1060;
    transition: background-color 0.3s, transform 0.2s;
    opacity: 0.8;
}

.gallery-prev-btn {
    left: 20px;
}

.gallery-next-btn {
    right: 20px;
}

.gallery-nav-btn:hover {
    background-color: rgba(42, 159, 214, 1);
    opacity: 1;
}

.gallery-nav-btn:active {
    transform: translateY(-50%) scale(0.95);
}

/* Modal Backdrop Enhancement */
.modal-backdrop.show {
    opacity: 0.85;
}

/* Improve Loading Experience */
.img-thumbnail {
    transition: opacity 0.3s ease;
    opacity: 1;
}

.img-thumbnail.loading {
    opacity: 0.6;
}

/* Animation for Image Loading */
@keyframes fadeIn {
    from { opacity: 0.6; }
    to { opacity: 1; }
}

.img-thumbnail {
    animation: fadeIn 0.5s ease-in-out;
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    .modal-lightbox {
        max-width: 100%;
    }
    
    .modal-lightbox .img-fluid {
        max-height: 80vh;
    }
    
    .gallery-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .gallery-prev-btn {
        left: 10px;
    }
    
    .gallery-next-btn {
        right: 10px;
    }
}

/* —————————————————————
   Booking Form Container
   ————————————————————— */
.booking-form,
#booking-form {
  max-width: 700px;
  margin: 2rem auto;
  padding: 2.5rem;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  font-family: 'Roboto', sans-serif;
}

/* Space out each form row */
.booking-form .row.mb-3 {
  margin-bottom: 1.75rem;
}

/* Labels */
.booking-form .col-form-label {
  font-weight: 600;
  color: #192231;
  padding-top: 0.4rem;
}

/* Text inputs, number inputs, date inputs, textareas */
.booking-form .form-control {
  width: 100%;
  padding: 0.7rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

/* Focus state */
.booking-form .form-control:focus {
  border-color: #2a9fd6;
  box-shadow: 0 0 0 3px rgba(42, 159, 214, 0.2);
  outline: none;
}

/* Helper / hint text */
.booking-form .form-text {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: #6b7280;
}

/* Checkbox groups */
.booking-form .form-check {
  margin-bottom: 0.5rem;
}

.booking-form .form-check-input {
  width: 1.2em;
  height: 1.2em;
  accent-color: #2a9fd6;
  margin-top: 0.15rem;
}

.booking-form .form-check-label {
  margin-left: 0.5rem;
  font-size: 0.95rem;
  color: #192231;
}

/* Submit button */
.booking-form .booking-submit.btn-primary {
  background-color: #2a9fd6;
  border: none;
  padding: 0.65rem 2rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  transition: background-color 0.2s, transform 0.2s, box-shadow 0.2s;
  margin-top: 1rem;
}

.booking-form .booking-submit.btn-primary:hover,
.booking-form .booking-submit.btn-primary:focus {
  background-color: #1e87bb;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(42, 159, 214, 0.3);
  outline: none;
}

/* Responsive tweaks */
@media (max-width: 576px) {
  .booking-form,
  #booking-form {
    padding: 1.5rem;
  }
  .booking-form .col-form-label {
    text-align: left;
    padding-top: 0;
    margin-bottom: 0.3rem;
  }
}


/* —————————————————————
   Booking Form – Dark Theme Overrides
   ————————————————————— */
.booking-form.dark-theme,
#booking-form.dark-theme {
  background: #192231;           /* deep navy/charcoal */
  color: #e5e7eb;                /* light gray text */
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
}

/* Labels in dark mode */
.booking-form.dark-theme .col-form-label {
  color: #f3f4f6;
}

/* Inputs & textarea background + text */
.booking-form.dark-theme .form-control {
  background: #2a2e3b;           /* slightly lighter than form bg */
  color: #e5e7eb;
  border: 1px solid #444d65;
}

.booking-form.dark-theme .form-control::placeholder {
  color: #9ca3af;
}

/* Adjust focus ring for dark */
.booking-form.dark-theme .form-control:focus {
  border-color: #2a9fd6;
  box-shadow: 0 0 0 3px rgba(42, 159, 214, 0.4);
}

/* Helper text */
.booking-form.dark-theme .form-text {
  color: #9ca3af;
}

/* Checkboxes */
.booking-form.dark-theme .form-check-input {
  background: #2a2e3b;
  border: 1px solid #444d65;
}

.booking-form.dark-theme .form-check-input:checked {
  accent-color: #2a9fd6;
}

.booking-form.dark-theme .form-check-label {
  color: #e5e7eb;
}

/* Submit button */
.booking-form.dark-theme .booking-submit.btn-primary {
  background-color: #2a9fd6;
  color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
}

.booking-form.dark-theme .booking-submit.btn-primary:hover,
.booking-form.dark-theme .booking-submit.btn-primary:focus {
  background-color: #1e87bb;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.8);
}

/* Ensure form-wide links or error texts (if any) stand out */
.booking-form.dark-theme a,
.booking-form.dark-theme .invalid-feedback {
  color: #2a9fd6;
}

/* — Checkbox tweaks for dark theme — */
.booking-form.dark-theme .form-check-input {
  /* dark box + bright border */
  width: 1.2em;
  height: 1.2em;
  background-color: #2a2e3b;
  border: 1px solid #444d65;
  border-radius: 0.2em;    /* match your theme’s border radius */
  accent-color: #2a9fd6;    /* color of the checkmark itself */
  transition: background-color 0.2s, border-color 0.2s;
}

.booking-form.dark-theme .form-check-input:checked {
  /* solid accent fill on check */
  background-color: #2a9fd6;
  border-color: #2a9fd6;
}

.booking-form.dark-theme .form-check-input:focus {
  /* optional focus ring */
  box-shadow: 0 0 0 3px rgba(42, 159, 214, 0.4);
}


