html {
    scroll-behavior: smooth;
    /* Enables smooth scrolling */
}

body {
    font-family: 'Lexend Deca', sans-serif;
    background-color: #F9F5F3;
}

h1 {
    font-weight: 700;
    /* Bold */
    font-family: 'Lexend Deca', sans-serif;
}

h3 {
    font-weight: 600;
    /* Bold */
    font-family: 'Lexend Deca', sans-serif;
}

h4 {
    font-weight: 400;
    /* Semi Bold */
    font-family: 'Lexend Deca', sans-serif;
}

h5 {
    font-weight: 400;
    /* Semi Bold */
    font-family: 'Lexend Deca', sans-serif;
}

p,
li {
    font-weight: 200;
    /* Thin */
    font-family: 'Lexend Deca', sans-serif;
}

small {
    font-weight: 200;
    /* Thin */
    font-family: 'Lexend Deca', sans-serif;
}

a {
    font-weight: 200 !important;
    /* Thin */
    font-family: 'Lexend Deca', sans-serif;
}

/* BUTTONS CSS */
.blue-button {
    background-color: #4874CF;
    color: #FFFFFF;
    border-radius: 5px;
    border: none;
    padding: 8px 20px !important;
    text-decoration: none;
    transition: background-color 0.3s ease;
    font-weight: 600 !important;
    font-family: 'Lexend Deca', sans-serif;

    a {
        color: #FFFFFF !important;
        font-weight: 600 !important;
        font-family: 'Lexend Deca', sans-serif;
    }
}

.blue-button:hover {
    background-color: #3b65b1;
    color: #FFFFFF;
}

.white-button {
    background-color: transparent;
    color: #171717;
    border: 1px solid #171717;
    border-radius: 5px;
    padding: 8px 20px !important;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
    font-weight: 600 !important;
    font-family: 'Lexend Deca', sans-serif;

    a {
        color: #171717 !important;
        font-weight: 600 !important;
        font-family: 'Lexend Deca', sans-serif;
    }
}

.white-button:hover {
    background-color: #171717;
    color: #FFFFFF;

    a {
        color: #FFFFFF !important;
    }
}

.yellow-button {
    background-color: #F1DC5A;
    color: #171717;
    border-radius: 5px;
    border: none;
    padding: 8px 20px !important;
    text-decoration: none;
    transition: background-color 0.3s ease;
    font-weight: 600 !important;
    font-family: 'Lexend Deca', sans-serif;

    a {
        color: #171717 !important;
        font-weight: 600 !important;
        font-family: 'Lexend Deca', sans-serif;
    }
}

.red-button {
    background-color: #DD5253;
    color: #ffffff;
    border-radius: 5px;
    border: none;
    padding: 8px 20px !important;
    text-decoration: none;
    transition: background-color 0.3s ease;
    font-weight: 600 !important;
    font-family: 'Lexend Deca', sans-serif;

    a {
        color: #ffffff !important;
        font-weight: 600 !important;
        font-family: 'Lexend Deca', sans-serif;
    }
}

.grey-button {
    background-color: #F0EFF0;
    color: #171717;
    /* Adjusted to ensure contrast */
    border-radius: 5px;
    border: none;
    padding: 8px 20px !important;
    text-decoration: none;
    transition: background-color 0.3s ease;
    font-weight: 200 !important;
    font-family: 'Lexend Deca', sans-serif;

    a {
        color: #171717 !important;
        font-weight: 400 !important;
        font-family: 'Lexend Deca', sans-serif;
    }
}

.grey-button:hover {
    background-color: #d9d8d9;
    /* A slightly darker shade for hover effect */
    color: #171717;
}


/* INPUTS */
input,
select {
    display: none;
    font-weight: 200 !important;
    font-family: 'Lexend Deca', sans-serif !important;
    background-color: #F0EFF0 !important;
}

/* CARDS */
.black-card-active {
    border: 1px solid #171717;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(23, 23, 23, 1);
    background-color: white;
}

.black-card {
    border: 1px solid #171717;
    padding: 20px;
    border-radius: 10px;
    background-color: white;
    transition: box-shadow 0.1s ease;
    /* Specify the property and duration */

}

.black-card:hover {
    box-shadow: 0 4px 8px rgba(23, 23, 23, 1);
}

.guide-card {
    border: 1px solid #171717;
    border-radius: 10px;
    transition: box-shadow 0.1s ease;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 250px;
    color: #fff;
    position: relative;
    overflow: hidden;
    /* Ensure the overlay fits within the card's boundaries */
}

.guide-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(23, 23, 23, 0.4);
    /* #171717 with 40% opacity */
    border-radius: 10px;
    /* Match border-radius of the card */
    z-index: 1;
    /* Place the overlay above the background image */
}

.guide-card .detail-info {
    position: relative;
    z-index: 100;
    /* Ensure the text appears above the overlay */
    height: 250px;
}

.guide-card:hover {
    box-shadow: 0 4px 8px rgba(23, 23, 23, 1);
}

.yellow-chip {
    background-color: #FFD700;
    color: #171717;
    padding: 5px 10px;
    border-radius: 5px;
}

/* OTHER STYLES */

/* TOURGUIDE DETAILS PAGE */
.detail-section {
    height: 90vh;
    /* Adjust height as needed */
    overflow-y: auto;
    /* Enable vertical scrolling */
    overflow-x: hidden;
    /* Prevent horizontal scrolling */
}

/* Hide scrollbar for Webkit browsers (Chrome, Safari) */
.detail-section::-webkit-scrollbar {
    display: none;
    /* Hides the scrollbar */
}

/* Hide scrollbar for Firefox */
.detail-section {
    scrollbar-width: none;
    /* Firefox */
}

.payment-footer {
    border-radius: 10px;
    border: 1px solid #171717;
    background-color: #ffffff;
    padding: 30px 15px;
    color: #171717;
}

/* FOOTER */
.footer-section {
    border-radius: 50px 50px 0px 0px !important;
    border: 1px solid #171717 !important;
}

/* PAGNIATION */
.pagination-container {
    display: flex;
    justify-content: center;
    /* Center the pagination links */
    margin: 20px 0;
    /* Add spacing above and below */
}

.pagination-container .pagination {
    display: flex;
    list-style: none;
    padding: 0;
}

.pagination-container .pagination li {
    margin: 0 5px;
}

.pagination-container .pagination li a {
    text-decoration: none;
    padding: 10px 15px;
    border: 1px solid #4874CF;
    /* Change the border color as needed */
    border-radius: 5px;
    /* Rounded corners */
    color: #4874CF;
    /* Change text color */
    transition: background-color 0.3s, color 0.3s;
    /* Smooth transitions */
}

.pagination-container .pagination li a:hover {
    background-color: #4874CF;
    /* Background color on hover */
    color: white;
    /* Text color on hover */
}

.pagination-container .pagination .active a {
    background-color: #4874CF;
    /* Background for active page */
    color: white;
    /* Text color for active page */
    border-color: #4874CF;
    /* Border color for active page */
}

/* Form Group */
.form-group {
    margin-bottom: 15px;
}

textarea {
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 10px;
    font-size: 1rem;
    resize: none;
}


.say-hi-container {
    position: fixed;
    bottom: 16px;
    /* Margin from the bottom */
    left: 0;
    right: 0;
    z-index: 1050;
    padding: 10px
    /* Ensure it appears above other content */
}