.filter-bg{
    background-color: rgba(104, 137, 255, 0.121);
    border-radius: 6px;
    height: 500px;
    /* box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.1); */
    border-style: groove;

}

.after-filter-bg{
    background-color: white;
    border-radius: 6px;
    padding-bottom: 10px;
    padding: 6px;
    
    
}

.text-justify {
    text-align: justify;
}



/* package page css */

.blog-Breadcrumb-bg{
    background-color: rgba(220, 220, 220, 0.277);
    border-radius: 2px;
    
}

.bokking-form{
    width: 80%;
    background-color: rgb(227, 227, 227);
    border-radius: 6px;
    border-color: black;
    border-width: 1px;
    border-style: outset;
    box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.1);
}

.fee-position{
    margin-left: 200px;
}

.bg-for-user-list{
    background-color: rgb(255, 255, 255);
    padding: 10px;
    padding-bottom: 20px;
    border-radius: 6px;
    width: 100%;
    /*box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.1);*/
    
  }

  .bg-for-user-tourPlane{
    background-color: rgb(255, 255, 255);
    padding: 20px;
    padding-bottom: 30px;
    border-radius: 2px;
    width: 100%;
    box-shadow: 5px 5px 50px #b9b9b9;
  }

  .bg-for-btn{
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.5);
  }

  
  .travelPackage-bg {
    padding: 10px; 
    margin-bottom: 15px; 
    height: 450px; 
    width: 270px;
    border-radius: 10px;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.5);
    
  }

 .dolphin-wrapper {
    position: relative;
    background-color: #fff; /* Or your container bg */
}

.dolphin-deco-left {
    position: absolute;
    bottom: 31px;
    left: -383px;
    width: 379px;
    height: 100%;
    background: url('/image/help-tools/dolphin.png') no-repeat left center;
    background-size: contain;
    z-index: 0;
    pointer-events: none;
}

.dolphin-wrapper > .container-content {
    position: relative;
    z-index: 1;
    margin-left: 320px; /* adjust spacing from dolphin */
}

.dive_mask-container {
    position: relative;
}

.divemask-image-right {
    position: absolute;
    top: 0;
    right: 0;
    width: 280px;
    height: 100%;
    background: url('/image/help-tools/gear-dive-masks.png') no-repeat right center;
    background-size: contain;
    opacity: 0.15;
    pointer-events: none;
    z-index: 0;
}

.dive_mask-container .container {
    z-index: 1;
    position: relative;
}
  /* Custom CSS for Elegant and Vibrant Travel Guide Layout */
  :root {
    --primary-color: #2c3e50; /* Dark blue for headings */
    --accent-color: #e74c3c; /* Red for highlights */
    --text-color-light: #ecf0f1; /* Light gray for hero text */
    --text-color-dark: #34495e; /* Dark text for body content */
    --card-hover-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    --border-radius: 1rem;
  }

  body {
    background-color: #f8f9fa; /* A clean, off-white background */
    font-family: 'Poppins', sans-serif;
    color: var(--text-color-dark);
  }
  
  .travel-guide-hero {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    padding: 10rem 0;
    color: var(--text-color-light);
  }

  .travel-guide-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Dark overlay */
  }

  .hero-content {
    position: relative;
    z-index: 2;
  }

  .hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
  }

  .hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
  }

  .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 3rem;
    position: relative;
  }
  
  .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--accent-color);
    border-radius: 2px;
  }
  
  .feature-card, .recommended-card {
    border: none;
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .feature-card:hover, .recommended-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--card-hover-shadow);
  }

  .feature-card img {
    height: 250px;
    object-fit: cover;
  }
  
  .recommended-card img {
      height: 675px;
      object-fit: cover;
      border-radius: var(--border-radius) var(--border-radius) 0 0;
  }

  .feature-card-body {
    padding: 1.5rem;
  }
  
  .recommended-card-body {
      padding: 1rem;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
  }
  
  .feature-card-title, .recommended-card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
  }
  
  .recommended-card-title {
      font-size: 1.25rem;
      margin-bottom: 0.5rem;
  }

  .attraction-card {
    background-color: #fff;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    padding: 2rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
  }
  
  .attraction-card.reverse {
    flex-direction: row-reverse;
  }
  
  .attraction-card img {
    max-width: 100%;
    border-radius: var(--border-radius);
    object-fit: cover;
  }
  
  .attraction-content {
    padding: 0 2rem;
  }
  
  .attraction-title {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-color);
  }

  .cta-background {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    padding: 5rem 0;
  }

  .cta-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
  }

  .cta-content {
    position: relative;
    z-index: 2;
  }

  .btn-accent {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: #fff;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
  }
  
  .btn-accent:hover {
    background-color: #c0392b;
    border-color: #c0392b;
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }
  .inclusion-list ul, .inclusion-list ol {
        list-style: none;
        padding-left: 0;
    }
 /*   .inclusion-list li::before {
        content: "✔️";
        margin-right: 0.5rem;
        color: var(--bs-primary);
    }*/
    .booking-summary {
        font-size: 0.95rem;
    }
    .input-group-text {
        font-size: 0.95rem;
    }
    .churaumi-video,
.churaumi-overlay-image {
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 120%; /* Taller for parallax scroll movement */
  object-fit: cover;
}

.churaumi-overlay-image {
  background-image: url("/image/DSC_0204.webp");
  background-size: cover;
  background-position: center;
  opacity: 0.5;
  z-index: 2;
}
.churaumi-video-overlay-container {
    position: relative;
    width: 100vw;
    height: 100vh;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    overflow: hidden;
}
.american-tour-video {
  z-index: 1;
}
.american-tour-video,
.americanvillage-overlay-image {
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 120%; /* Taller for parallax scroll movement */
  object-fit: cover;
}

.americanvillage-overlay-image{
  background-image: url("/image/american_village_at_night.webp");
  background-size: cover;
/*  background-position: center;*/
  opacity: 1;
  z-index: 2;
}
.american-video-overlay-container {
     position: relative;
  width: 60vw;          
  height: 70vh;         
  left: 50%;             /* Shift to middle */
  transform: translateX(-50%); /* Pull it back by half width for true center */
  margin: 0;
  overflow: hidden;
}


/*******************Events CSS****************/
.summernote-content h1, 
.summernote-content h2, 
.summernote-content h3 {
  margin-top: 1rem;
  margin-bottom: 0.75rem;
}

.summernote-content p {
  margin-bottom: 1rem;
}

.summernote-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}
.subtitle {
    position: relative;
    display: inline-block;
    padding-bottom: 20px;
    top: 18px;
}
.nav-tabs .nav-item {
    flex: 1 1 auto;
    text-align: center;
  }
  .nav-tabs .nav-link {
    white-space: normal;
    line-height: 1.4;
    padding: 0.75rem;
    font-weight: 600;
  }

 .standout-card-hover {
    transition: transform 0.3s ease-in-out;
    border: 1px solid transparent;
  }
  .standout-card-hover:hover {
    transform: translateY(-5px);
    border-color: var(--bs-primary);
  }
  .icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
  }

  /********Kumejima css**********/
 
  .kumejima-hero-card .card-img-overlay {
    transition: background-color 0.3s ease-in-out;
  }
  .kumejima-hero-card:hover .card-img-overlay {
    background-color: rgba(0, 0, 0, 0.4);
  }
  .kumejima-hero-card .text-shadow {
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
  }
  .kumejima-small-card {
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  }
  .kumejima-small-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
  }
  .kumejima-small-card .card-img-top {
    height: 200px; /* Consistent height for top images */
  }
  .kume-background {
    background-color: #f0f8ff;
  }

  /***************************Gyukosendo**********************/
  #gyokusendo-layout {
background-color: #0b0c10;
}
.gyokusendo-block {
margin-bottom: 2rem;
}
.gyokusendo-image img {
width: 100%;
height: 450px;
object-fit: cover;
display: block;
}
.gyokusendo-text-container {
padding: 2rem;
}
.gyokusendo-text {
background-color: rgba(255, 255, 255, 0.05);
border: 1px solid rgba(255, 255, 255, 0.1);
backdrop-filter: blur(10px);
border-radius: 8px;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 991px) {
.gyokusendo-image img {
height: 300px;
}
}
#kingdom-village-layout {
background-color: #f8f9fa; /* Light gray background for a clean look */
}
.kingdom-card {
transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}
.kingdom-card:hover {
transform: translateY(-5px);
box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}
.kingdom-card .card-img-top,
.kingdom-card .card-img-bottom {
height: 250px;
object-fit: cover;
}
.kingdom-card .list-unstyled li {
font-weight: 500;
}