/* Import fonts from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@400;700&family=Roboto:wght@400;500&display=swap');

* {
    font-family: 'Lato', sans-serif !important;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', serif !important; /* Heading font */
}

p, input, textarea, button {
    font-family: 'Roboto', sans-serif !important; /* Easy-to-read font for forms and text */
}

.white-gradient-bg {
    background: linear-gradient(90deg, #00bfa6 0%, #009e8c 100%);
}
.bg-green {
    background-color: #00bfa6;
}

.paragraph {
    font-weight: 300;
    font-size: 1rem;
    text-align: justify;
}

.rejoigner {
    border-radius: 30px;
    width: 25%;
}

.f-sm {
    font-size: 16px;
}
.hidden-row {
    display: none;
}

/* Animations */
.scale-animation {
    transition: all 0.3s ease;
}
.scale-animation:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.Raduis {
    border-radius: 30px;
}

.inscription-form .form-control {
    border-radius: 30px;
    border-color: #00bfa6;
    font-size: 1rem;
    padding: 10px 20px;
    background-color: #fff; /* Light background for contrast */
    color: #333; /* Dark text for readability */
}

.inscription-form .form-label {
    font-weight: 200;
    color: #555; /* Subtle color for labels */
}

.inscription-form button.btn-green {
    background-color: #00bfa6;
    color: #fff;
    border: none;
    transition: background-color 0.3s ease;
}

.inscription-form button.btn-green:hover {
    background-color: #009f8c;
    color: #fff;
}

.choices__inner {
    border-radius: 30px;
    border-color: #00bfa6 !important;
    padding: 8px 15px;
    background-color: #fff !important;
}

.choices__list--dropdown {
    border-radius: 15px;
    border-color: #00bfa6;
    background-color: #ffffff !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.choices__list--multiple .choices__item {
    background-color: #00bfa6 !important;
    color: #ffffff;
    border-radius: 20px;
    padding: 5px 10px;
    font-size: 0.875rem;
}

.typeahead, .dropdown-menu {
    top: 0 !important;
}

.btn-small {
    padding: 4px 8px;
    font-size: 12px;
    border-radius: 4px;
}
.text-small {
    font-size: 10px;
    line-height: 1.2;
    font-weight: 600;
}
.text-md {
    font-size: 11px;
    line-height: 1.2;
    font-weight: 100;
}
.tr-small {
    padding: 4px 8px;
    /* margin: 4px 0px; */
}

/* Pc Secreem */
@media (min-width: 770px) {
    .search-section {
        position: relative;
        background-image: url('../imgs/img1.jpg');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        padding: 50px 0;
        color: #fff;
    }

    .search-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: #00bfa6;
        opacity: 0.2;
        z-index: 1;
    }

    .search-section * {
        position: relative;
        z-index: 1; /* Ensure content appears above the overlay */
    }

    .search-title {
        font-family: 'Merriweather', serif;
        font-size: 3rem;
        margin-bottom: 30px;
        margin-top: 100px;
        color: #fff;
    }
    .search-form {
        margin-bottom: 100px;
    }

    .search-section .row>* {
        padding-right: 0;
        padding-left: 0;
    }

    .search-search {
        border-bottom-left-radius: 30px !important;
        border-top-left-radius: 30px !important;
        margin-right: 0;
    }
    .search-button {
        border-bottom-right-radius: 30px !important;
        border-top-right-radius: 30px !important;
        margin-left: 0;
    }

    .search-form .form-control {
        border-radius: 0px;
        padding: 15px;
        font-size: 1rem;
        background-color: #fff;
    }

    .search-form .btn-primary {
        background-color: #00bfa6;
        border-color: #00bfa6;
        border-radius: 0px;
        font-size: 1rem;
        color: #fff;
        font-weight: bold;
        padding: 15px;
    }

    .search-form .btn-primary:hover {
        background-color: #009e8c;
        border-color: #009e8c;
    }

    .form-news {
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .form-news .form-control {
        border-radius: 0px;
        padding: 15px;
        font-size: 1rem;
        background-color: #fff;
    }

    .form-news .btn-primary {
        background-color: transparent;
        border-color: #fff;
        border-radius: 0px;
        font-size: 1rem;
        color: #fff;
        font-weight: bold;
        padding: 15px;
    }

    .form-news .btn-primary:hover {
        background-color: #fff;
        border-color: #fff;
        color: #009e8c;
    }

    .inscription {
        position: relative;
        background-image: url('../imgs/img2.jpg');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        padding: 50px 0;
        color: #fff;
        z-index: 1; /* Ensure content is above the overlay */
    }

    .inscription::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(180deg, #009e8c 0%, #fff 100%);
        opacity: 0.2;
        z-index: -1; /* Overlay is behind the content */
    }

}

/* Mobile Screen */
@media (max-width: 768px) {
    .search-section {
        background-image: url('../imgs/img1.jpg');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        padding: 50px 0;
        color: #fff;
    }

    .search-title {
        font-family: 'Merriweather', serif;
        color: #fff;
        font-size: 1.5rem;
        margin-bottom: 30px;
        margin-top: 30px;
        font-weight: bold;
    }

    .search-form .form-control {
        background-color: #fff;
        border-radius: 30px;
        padding: 15px;
        font-size: 1rem;
        margin-bottom: 15px;
    }

    .search-form .btn-primary {
        background-color: #00bfa6;
        border-color: #00bfa6;
        border-radius: 30px;
        font-size: 1rem;
        color: #fff;
        font-weight: 400;
        padding: 15px;
    }

    .search-form .btn-primary:hover {
        background-color: #009e8c;
        border-color: #009e8c;
    }

    .form-news .form-control {
        background-color: #fff;
        border-radius: 30px;
        padding: 15px;
        font-size: 1rem;
        margin-bottom: 15px;
    }

    .form-news .btn-primary {
        background-color: #fff;
        border-color: #fff;
        border-radius: 30px;
        font-size: 1rem;
        color: #000;
        font-weight: 400;
        padding: 15px;
    }

    .form-news .btn-primary:hover {
        background-color: #009e8c;
        border-color: #009e8c;
    }
    .rejoigner {
        border-radius: 30px;
        width: 100%;
    }
    .inscription {
        position: relative;
        background-image: url('../imgs/img2.jpg');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        padding: 50px 0;
        color: #fff;
        z-index: 1; /* Ensure content is above the overlay */
    }

    .inscription::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(180deg, #fff 0%, #009e8c 100%);
        opacity: 0.2;
        z-index: -1; /* Overlay is behind the content */
    }
}

/* Services Section */
.services-section {
    background-color: #f7f9fa;
}

.section-title {
    font-family: 'Merriweather', serif;
    font-weight: bold;
    color: #00bfa6;
}

.card {
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 30px;
    /* padding: 20px; */
    height: 250px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: #00bfa6;
}

.card-text {
    line-height: 1.6;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
}

/* About */
.about-image {
    width: 100%;
    /* height: 100%; */
}

