 /* General styles for all tours and events */
.all-tours {
    padding: 4rem 0;
    background-color: #f0f4f8; /* Matches background from the index sections */
}

.all-privacy{
    padding:25px;
}

.all-privacy h2, .all-privacy h1 {
    color: #ff7f00;
}

body {
    margin: 0 !important;
}

.all-tours h1 {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 2rem;
    color: #ff7f00; /* Matching design color from the tours section */
}

/* Grid layout for tours and events */
.tour-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); /* Responsive grid */
    gap: 20px;
    padding: 20px;
}

/* Tour and Event cards */
.tour-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Similar shadow effect */
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
    height: 100%; /* Ensure consistent height */
}

.tour-card:hover {
    transform: translateY(-5px); /* Matches the hover effect from index */
}

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

/* Tour and Event info */
.tour-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1; /* Make sure content fills the card */
}

.tour-info h2 {
    margin-top: 0;
    font-size: 1.5rem;
    color: #ff7f00; /* Consistent text color */
}

.tour-info p {
    color: #4a5568; /* Subdued color for secondary text */
    margin: 10px 0;
}

/* Price and duration styling */
.tour-info .price, 
.tour-info .duration {
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: bold;
}

/* Buttons */
.tour-info .button {
    background-color: #ff7f00; /* Matching button color */
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1rem;
    padding: 10px;
    text-align: center;
    transition: background-color 0.3s ease;
}

.tour-info .button:hover {
    background-color: #e67300; /* Darker shade on hover */
}

/* Responsive Design */
@media (max-width: 768px) {
    .tour-grid {
        grid-template-columns: 1fr; /* Single column on smaller screens */
    }
}

@media (max-width: 500px) {
    .all-privacy h2{
        font-size: 1.1rem;
    }
    .all-privacy h1{
        font-size: 1.1rem;
    }
    .all-privacy p{
        font-size: 14px;
    }
    .all-tours h1{
        font-size: 2rem;
    }
    .tour-info h2{
        font-size: 1.3rem;
    }
}

/* Search bar */
.search-bar {
    margin-bottom: 20px;
    text-align: center;
}

.search-bar input {
    padding: 10px;
    width: 50%;
    max-width: 400px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.search-bar button {
    padding: 10px;
    font-size: 16px;
    background-color: #ff7f00;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.search-bar button:hover {
    background-color: #e67300;
}

/* Styles for the filter layout */
.filter-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
    margin-left: 20px;  /* Add margin to the left */
    margin-right: 20px; /* Add margin to the right */
}

.province-filter, .duration-filter {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    flex: 1; /* Allow filters to grow evenly */
    max-width: 48%; /* Adjust the max width for a more compact design */
    min-width: 300px; /* Set a minimum width for smaller screens */
}

.province-filter label, .duration-filter label {
    font-size: 1rem;
    font-weight: bold;
    color: #4a5568;
    margin-bottom: 10px;
    display: block;
    text-align: center;
}

/* Province filter select styling */
.province-filter select {
    width: 100%;
    padding: 10px;
    font-size: 1rem;
    border-radius: 5px;
    border: 1px solid #ccc;
}

/* Duration filter slider and input styling */
.duration-filter {
    text-align: center;
}

#durationSlider {
    width: 100%;
    max-width: 350px;
    margin: 10px auto;
}

.duration-inputs {
    display: flex;
    justify-content: center; /* Center the inputs */
    align-items: center; /* Align them vertically */
    gap: 5px; /* Reduce the gap between the elements */
    margin-top: 5px; /* Reduce margin above the inputs */
}

.duration-inputs input {
    width: 50px;
    padding: 5px;
    font-size: 1rem;
    text-align: center;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.duration-inputs span {
    margin: 0 5px;
    font-size: 1rem;
    color: #4a5568;
}

/* Slider styles */
.noUi-connect {
    background-color: #ff7f00!important;  /* Slider fill color matching button and accent */
}

.noUi-handle {
    background-color: white;  /* White handle for contrast */
    border: 2px solid #ff7f00;  /* Matching border color for handles */
    width: 16px;
    height: 16px;
    border-radius: 50%;  /* Make the handle round */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);  /* Light shadow for the handle */
}

.noUi-horizontal {
    height: 10px;  /* Height of the slider track */
    background-color: #ff7f00;  /* Orange track to match the style */
    border-radius: 5px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .filter-container {
        flex-direction: column; /* Stack filters on smaller screens */
        margin-left: 15px;  /* Add smaller margin on the left for mobile */
        margin-right: 15px; /* Add smaller margin on the right for mobile */
    }

    .province-filter, .duration-filter {
        max-width: 100%; /* Ensure they take up full width on smaller screens */
    }
}



/* province */

.province-filter div {
    flex: 1; /* Each checkbox takes equal width */
    text-align: center; /* Center the text labels under the checkboxes */
}

.province-filter .province-checkboxes {
    display: flex;
    justify-content: space-around; /* This will space them evenly */
    padding: 10px 0; /* Adds padding inside the container */
}