body {
    font-family: 'Poppins', sans-serif;
}

/* You can also target specific elements if needed */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
}
.hero-image {
    width: 100%;
    height: 60vh; /* Adjust height as needed */
    object-fit: cover;
}

.hero-image-overlay {
    position: relative;
    color: white;
}

.hero-image-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Dark overlay for text readability */
    border-radius: 0.5rem;
}

.overlay-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.gallery-img {
    transition: transform 0.3s ease-in-out;
    cursor: pointer;
    height: 100%;
    object-fit: cover;
}

.gallery-img:hover {
    transform: scale(1.05);
}

.custom-list-icons li {
    position: relative;
    padding-left: 2rem;
}

.custom-list-icons li i {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
/* General style for the tab buttons */
.nav-tabs .nav-link {
    background-color: #f8f9fa; /* Light gray background */
    border: 1px solid #dee2e6;
    border-bottom: 0;
    margin-right: 0.25rem;
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
    transition: all 0.3s ease-in-out;
    color: #495057; /* Default text color */
}

/* Blue Tab (Active and Inactive states) */
.nav-tabs .nav-tab-blue.active {
    background-color: #0d6efd; /* Blue */
    border-color: #0d6efd;
    color: #fff; /* White text */
}
.nav-tabs .nav-tab-blue:not(.active):hover {
    border-color: #0d6efd;
    color: #0d6efd;
}

/* Yellow Tab (Active and Inactive states) */
.nav-tabs .nav-tab-yellow.active {
    background-color: #ffc107; /* Yellow */
    border-color: #ffc107;
    color: #343a40; /* Dark text for readability on yellow */
}
.nav-tabs .nav-tab-yellow:not(.active):hover {
    border-color: #ffc107;
    color: #ffc107;
}

/* Red Tab (Active and Inactive states) */
.nav-tabs .nav-tab-red.active {
    background-color: #dc3545; /* Red */
    border-color: #dc3545;
    color: #fff; /* White text */
}
.nav-tabs .nav-tab-red:not(.active):hover {
    border-color: #dc3545;
    color: #dc3545;
}

/* Custom styles for the tab content area (remains the same) */
.tab-content {
    background-color: #fff;
    border: 1px solid #dee2e6;
    border-top-right-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
    border-bottom-left-radius: 0.5rem;
    padding: 1.5rem;
}
/* custom carousel inside summernote editTravelPackage.blade.php*/
  /* Flickity container styles */
   /* Unique class for the main carousel container */
.package_tour_carousel_main {
    margin-bottom: 2rem;
}

/* Unique class for each slide cell */
.package_tour_carousel_cell {
    width: 150px;
    height: 150px;
    margin-right: 15px;
    position: relative;
    overflow: hidden;
    border-radius: 0.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

/* Unique class for the image inside the cell */
.package_tour_carousel_image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    transition: transform 0.3s ease, z-index 0.3s ease;
}

/* Hover effect with the new class names */
.package_tour_carousel_cell:hover .package_tour_carousel_image {
    transform: scale(3) translate(-10%, -10%);
    z-index: 10;
}

/* Flickity's navigation buttons (these are Flickity's own classes, so they are safe to use as-is) */
.flickity-button {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
}

.flickity-button:hover {
    background: #fff;
}

.flickity-button .flickity-button-icon {
    color: #ffffff;
}
/* Custom styles for the gradient hero header */
.gradient-tour-hero-header .hero-image-overlay {
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.gradient-tour-hero-header .hero-image-overlay img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    object-fit: cover;
    z-index: 1; /* Puts the image behind the overlay */
}

.gradient-tour-hero-header .overlay-content {
    position: relative;
    z-index: 3; /* Puts the content on top */
    min-height: 100%;
    min-width: 100%;
}

.gradient-tour-hero-header .hero-image-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2; /* Puts the overlay between the image and content */
    background: linear-gradient(
        to bottom, 
        rgba(0, 0, 0, 0.4), /* Starts with a slight darkness at the top */
        rgba(0, 0, 0, 0.7)  /* Becomes more opaque at the bottom */
    );
}

/* Optional: Make the text on the content overlay more visible */
.gradient-tour-hero-header .overlay-content h1,
.gradient-tour-hero-header .overlay-content p {
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}
#special-offer-highlight .offer-icon svg {
  transition: transform 0.3s ease;
}

#special-offer-highlight .offer-icon svg:hover {
  transform: scale(1.2);
  filter: drop-shadow(0 0 4px #28a745);
}
