/* Jumbotron Container */
.jumbotron {
    position: relative;
    width: 100%;
    height: 80vh; /* Adjust as needed */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

/* Video Background */
.jumbotron-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensure video covers entire section */
}

/* Overlay Content */
.jumbotron-overlay {
    position: relative;
    z-index: 2; /* Ensure content is above video */
    text-align: center;
    color: white;
    background: rgba(0, 0, 0, 0.4); /* Subtle dark overlay */
    padding: 20px;
    border-radius: 10px;
}

/* CTA Button */
/* Entertainment Introduction Section */
/* Entertainment Introduction Section */
.entertainment-intro {
    width: 100%; /* Full width */
    padding: 40px 20px; /* Adds comfortable spacing */
    text-align: center;
    font-size: 1.2rem; /* Readable text size */
    color: #333;
    background: rgba(255, 255, 255, 0.9); /* Light background */
}

/* Ensure responsiveness */
@media (max-width: 768px) {
    .entertainment-intro {
        font-size: 1rem; /* Slightly smaller font on mobile */
        padding: 30px 15px; /* Adjust spacing */
    }
}

/* Container for the Filters and Lists Section */
.entertainment-container {
    display: flex;
    flex-direction: row; /* Side-by-side layout */
    gap: 20px; /* Space between columns */
    padding: 20px;
   
}
/* Filter Column: Keep Fixed Height */
.filter-column {
    flex: 0 0 30%; /* Set width to 30% */
    max-width: 30%;
    background-color: #f9f9f9;
    padding: 20px; /* Internal spacing for the content */
    margin-left: 80px; /* Space from the left edge */
    margin-top: 135px; /* Space from the navbar */
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    font-family: 'League Spartan', sans-serif;
    align-self: flex-start; /* Align the column to the top */
    height: auto; /* Ensure it only grows based on its content */
    position: sticky; /* Make it stick while scrolling */
    top: 135px; /* Offset from the top during scrolling */
}


.filter-column h2 {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #0e323b;
}

.filter-section h3 {
    font-size: 1.2em;
    color: #2a9d8f;
    margin-bottom: 10px;
}

.filter-section ul {
    list-style: none;
    padding: 0;
}

/* Checkbox Styling */
.filter-section li {
    display: flex;
    align-items: center;
    gap: 12px; /* Adds space between the checkbox and label */
    margin-bottom: 10px; /* Space between list items */
    font-family: 'League Spartan', sans-serif; /* League Spartan font for labels */
    font-size: 1em;
    color: #555;
}

.filter-section input[type="checkbox"] {
    cursor: pointer;
    transform: scale(1.2); /* Makes the checkbox slightly larger for better visuals */
}

.filter-section label {
    cursor: pointer;
    line-height: 1.4; /* Improves readability */
}


/* Apply Filters Button */
.apply-filters-btn {
    display: block;
    width: 100%;
    padding: 10px 15px;
    font-size: 1.2em;
    color: #fff;
    background-color: #2a9d8f;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    margin-top: 20px;
    text-align: center;
}

.apply-filters-btn:hover {
    background-color: #21867a;
}

@media (max-width: 768px) {
    .filter-column {
        flex: 0 0 100%;
        max-width: 100%;
    }
}
/* Main Section: Lists Column */
/* Main Section: Lists Column */
.lists-column {
    width: 100%; /* Full width */
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 119px;
}
.entertainment-card {
    display: flex;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.card-image {
    flex: 0 0 30%;
    max-width: 30%;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-content {
    flex: 0 0 70%;
    padding: 15px;
}

.card-content h3{
    color:#2a9d8f;
}

@media (max-width: 768px) {
    .retreats-container {
        flex-direction: column;
    }

    .filter-column,
    .lists-column {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .entertainment-card {
        flex-direction: column;
    }

    .card-image,
    .card-content {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

.check-availability-btn {
    display: inline-block; /* Makes it look like a button */
    padding: 10px 20px; /* Adds some internal spacing */
    background-color: #2a9d8f; /* Button background color (blue) */
    color: white; /* Text color */
    text-decoration: none; /* Removes underline */
    border-radius: 30px; /* Rounded corners */
    font-size: 16px; /* Font size */
    font-weight: bold; /* Makes the text bold */
    border: 2px solid #0e323b; /* Adds a border with a darker shade */
    transition: all 0.3s ease; /* Smooth hover effect */
    cursor: pointer; /* Changes cursor to pointer when hovering */
}

/* Hover Effect */
.check-availability-btn:hover {
    background-color: #0056b3; /* Slightly darker shade on hover */
    color: white; /* Keeps the text color white */
    border-color: #003f7f; /* Darker border on hover */
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2); /* Adds a shadow effect */
}


/* Modal Styles */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    top: 0;
    left: 20px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Dim background with opacity */
    justify-content: center;
    align-items: center; /* Center the modal vertically and horizontally */
    z-index: 3000; /* Sit on top */
}




/* Modal Content */
.modal-content {
    background: #ffffff; /* White background */
    width: 90%; /* Take up most of the screen width */
    max-width: 600px; /* Limit width for larger devices */
    max-height: 80%; /* Limit height to avoid overflow */
    padding: 20px;
    border-radius: 20px; /* Rounded corners for a sleek look */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Add a shadow for depth */
    overflow-y: auto; /* Enable vertical scrolling */
    overflow-x: hidden; /* Prevent horizontal scrolling */
    text-align: left;
    position: relative; /* For proper positioning of close button */
    animation: slideIn 0.4s ease-in-out; /* Add smooth animation */
    margin-top: 50px;
}

/* Hide the scrollbar but keep the scrolling functional */
.modal-content::-webkit-scrollbar {
    width: 0; /* Hide scrollbar width */
    background: transparent; /* Optional: Transparent background */
}

.modal-content {
    scrollbar-width: none; /* Hide scrollbar for Firefox */
    -ms-overflow-style: none; /* Hide scrollbar for Internet Explorer */
}


/* Close Button */
.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.5em;
    font-weight: bold;
    color: rgb(14, 50, 59);
    cursor: pointer;
    transition: color 0.3s ease; /* Smooth hover transition */
}

.close-btn:hover,
.close-btn:focus {
    color: #000; /* Darker color on hover or focus */
}

/* Modal Header and Content Styling */
.modal-content h2 {
    font-size: 1.8em;
    color: #333;
    margin-bottom: 20px;
    border-bottom: 2px solid #5cabb9;
    padding-bottom: 10px;
}

.modal-content ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.modal-content ul li {
    margin-bottom: 10px;
    font-size: 1em;
    color: #555;
}

/* Button Inside Modal */
.modal-content .apply-filters-btn {
    display: inline-block;
    padding: 12px 20px;
    margin-top: 20px;
    background-color: #21867a;
    color: white;
    font-size: 1.2em;
    
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease; /* Smooth transitions */
}

.modal-content .apply-filters-btn:hover {
    background-color: #007b8a; /* Darker shade on hover */
    transform: scale(1.1); /* Enlarge slightly on hover */
}

/* Toggle Button for Filters on Small Devices */
.filter-toggle-btn {
    display: none; /* Hidden by default */
    position: fixed;
    bottom: 20px; /* Position it at the bottom */
    left: 50%; /* Center horizontally */
    transform: translateX(-50%); /* Adjust for exact centering */
    padding: 15px 30px;
    font-size: 1.2em;
    background-color: #2a9d8f;
    color: #fff;
    border: none;
    border-radius: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Subtle shadow */
    cursor: pointer;
    z-index: 999; /* Ensure it stays above other elements */
    transition: background-color 0.3s ease, transform 0.3s ease; /* Smooth transitions */
}

.filter-toggle-btn:hover {
    background-color: #21867a; /* Darker shade on hover */
    transform: translateX(-50%) scale(1.05); /* Slightly enlarge on hover */
}

/* Responsive Styles for Small Devices */
@media (max-width: 768px) {
    .entertainment-container {
        flex-direction: column; /* Stack elements vertically */
    }

    .filter-column {
        display: none; /* Hide filter column on smaller screens */
    }

    .lists-column {
        flex: 0 0 100%; /* Take full width */
        max-width: 100%;
    }

    .service-card {
        flex-direction: column; /* Stack service cards vertically */
    }

    .card-image,
    .card-content {
        flex: 0 0 100%;
        max-width: 100%; /* Ensure card content takes full width */
    }

    .filter-toggle-btn {
        display: block; /* Show toggle button for filters */
    }
}

/* Modal Animation */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-20px); /* Slide in from above */
    }
    to {
        opacity: 1;
        transform: translateY(0); /* Settle into position */
    }
}
