/*!* Carousel Styling *!*/
/*.carousel-item img {*/
/*    max-height: 500px;*/
/*    object-fit: cover;*/
/*    border-radius: 15px;*/
/*    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);*/
/*}*/
/* Carousel Styling */
.carousel-item img {
    height: 500px; /* Set a fixed height for all images */
    width: 100%; /* Ensure the image takes the full width of the container */
    object-fit: cover; /* Ensure the image maintains a good aspect ratio and fills the container */
    border-radius: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
@media (max-width: 768px) {
    .carousel-item img {
        height: 300px; /* Reduce height for smaller screens */
    }
}


/* Button Styling */
.main-btn,
.btn-youtube {
    background-color: #343a40; /* Neutral dark color for main buttons */
    color: #fff;
    padding: 14px 30px; /* Uniform padding */
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}
.btn-outline-secondary {
    color: #6c757d;
    border-color: #6c757d;
    background-color: #f8f9fa;
}
.btn-outline-primary{
    color: #007bff;
    border-color: #007bff;
    background-color: #f8f9fa;
}

.main-btn:hover {
    background-color: #23272b; /* Darker shade on hover */
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
}

.btn-youtube {
    background-color: #FF3333; /* Bright red color */
}

/* YouTube Button Hover Styling */
.btn-youtube:hover {
    background-color: #cc0000; /* Darker red */
    transform: translateY(-3px);
}
.modal-header {
    background-color: #f1f1f1;
    border-bottom: none;
    padding: 20px;
    font-weight: bold;
    text-align: center;
    color: #212529;
}

.modal-body {
    padding: 20px;
    background-color: #ffffff;
}

/* Map Styling */
#mapUpdated {
    height: 400px;
    border-radius: 15px;
}

/* Section & Title Styling */
.section-title {
    font-size: 2rem;
    color: #343a40; /* Darker color */
    font-weight: 600;
    margin-bottom: 1.5rem;
}

/* Card Hover Effects */
.card {
    transition: all 0.3s ease;
    border: none;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.card-img-top {
    object-fit: cover;
    height: 200px;
    width: 100%;
}
.card-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}


/* Modal Content Styling */
.modal-header {
    background-color: #eff0f1;
    border-bottom: none;
    padding: 20px;
    font-size: 1.5rem;
    color: #495057;
}

/* Paths Modal */
.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    text-decoration: none;
    color: #495057;
    border-bottom: 1px solid #e5e9ef;
    border-radius: 10px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.category-list a:hover {
    background-color: #007bff; /* Bootstrap primary color */
    color: #fff; /* White color on hover */
}

/* Location Details Container */
.location-details-container {
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

/* Title styling */
.location-details-container h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #333;
}

/* Paragraph styling */
.location-details-container p {
    font-size: 1rem;
    color: #545454;
    margin: 5px 0;
}

/* Add hover effect on the container */
.location-details-container:hover {
    background-color: #e9ecef;
    transition: background-color 0.3s ease;
}

.footer {
    background-color: #000;
    color: white;

    /*.border-muted-foreground {*/
    /*    border-color: #444; // Adjust to match the muted color you want*/
    /*}*/

    /*.font-semibold {*/
    /*    font-weight: 600;*/
    /*}*/

    .text-white {
        color: white;
    }

    @media (max-width: 767px) {
        .footer {
            text-align: center;

            .col-12 {
                margin-bottom: 1rem;
            }

            .font-semibold {
                text-align: center;
            }
        }
    }
}
