/* style.css */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
    color: #333;
}

/* Reset CSS */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Header Styles */
#header {
    background-color: #fff;
    border-bottom: 1px solid #e5e5e5;
    padding: 10px 20px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar_logo img {
    height: 50px;
}

.navbar_links ul {
    list-style-type: none;
    display: flex;
    gap: 15px;
}

.navbar_links a {
    font-size: 16px;
    color: #333;
    padding: 8px 16px;
    transition: background-color 0.3s ease;
}

.navbar_links a:hover {
    background-color: #e5e5e5;
    border-radius: 4px;
}

.icon_collapse img {
    width: 30px;
    height: 30px;
    cursor: pointer;
}

/* Main Section Styles */
#main {
    margin-top: 80px; /* Reserve space for the fixed header */
    padding: 20px;
}

.search_engine {
    text-align: center;
    padding: 50px 0;
}

.search_engine .engine_logo {
    margin-bottom: 20px;
}

.search_engine .engine_logo img {
    width: 200px;
    height: auto;
}

.search_input {
    margin-top: 30px;
}

.search_input .input_form {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
}

.search_input .search {
    width: 80%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    outline: none;
    transition: border-color 0.3s ease;
    font-size: 16px;
}

.search_input .search:focus {
    border-color: #007bff;
}

.search_input .standard_button {
    background-color: #007bff;
    color: #fff;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
    margin-left: 10px;
    outline: none;
}

.search_input .standard_button:disabled {
    background-color: #aaa;
}

.search_input .standard_button:hover:not(:disabled) {
    background-color: #0056b3;
}

.search_options {
    margin-top: 20px;
}

.search_options .options {
    list-style-type: none;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.search_options .option_link {
    color: #007bff;
    font-size: 14px;
    transition: color 0.3s ease;
}

.search_options .option_link:hover {
    color: #0056b3;
}

/* Footer Styles */
.engine_footer {
    background-color: #f8f9fa;
    padding: 20px;
    text-align: center;
    border-top: 1px solid #e5e5e5;
}

.engine_footer .footer_texte {
    color: #555;
    font-size: 14px;
    line-height: 1.5;
}

.footer_nav {
    background-color: #fff;
    padding: 15px 0;
    border-top: 1px solid #e5e5e5;
}

.footer_nav .footer_items {
    list-style-type: none;
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.footer_nav .footer_item a {
    color: #007bff;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer_nav .footer_item a:hover {
    color: #0056b3;
}

/* Service Navigation */
.service-nav {
    margin-top: 30px;
}

.service-nav .services-home {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.service-nav .service-list {
    list-style-type: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.service-nav .list-item {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
    transition: border-color 0.3s ease;
}

.service-nav .service-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #333;
    font-size: 14px;
    font-weight: bold;
    transition: color 0.3s ease;
}

.service-nav .service-link:hover {
    color: #0056b3;
    border-color: #007bff;
}

.service-nav .service-link img {
    width: 28px;
    height: 28px;
}

.service-nav .title_service {
    display: block;
}

/* Modal Styles 
.modal_services {
    display: none;
    position: fixed;
    z-index: 1001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4);
    transition: display 0.3s ease;
}

.modal_content_services {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 600px;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}
*/
.content .products {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.content .product {
    width: 120px;
    text-align: center;
    transition: transform 0.3s ease;
}

.content .product:hover {
    transform: scale(1.05);
}

.content .product_image img {
    width: 80px;
    height: auto;
}

.content .product_name h4 {
    font-size: 14px;
    margin-top: 10px;
    color: #333;
    transition: color 0.3s ease;
}

.content .product_name a:hover h4 {
    color: #007bff;
}

.content .product_button .standard_button {
    display: block;
    margin: 20px auto 0;
    background-color: #007bff;
    color: #fff;
    text-align: center;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.content .product_button .standard_button:hover {
    background-color: #0056b3;
}
