/* style.css */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    direction: rtl;
    background-color: #f9f9f9;
    color: #333;
}

pre {
    white-space: pre-wrap;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;

}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

header .container {
    display: flex;
    justify-content: center;
}

header {
    background-color: white;
    padding: 10px 0;
}

.logo {
    /*max-height: 60px;*/
    height: 40px;
    margin: 10px 0;
}

.link {
    color: var(--main);
    font-weight: bold;
}

nav {
    display: none;
}

nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 20px;
    justify-content: flex-end;
}

nav ul li a {
    color: #333;
    text-decoration: none;
    font-weight: bold;
}

.hero {
    background-color: #e6f2ff;
    padding: 60px 0;
    text-align: center;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 0;
}

.hero::before {
    content: "";
    z-index: -1;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--background);
    opacity: 0.5;
}

.hero h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
    color: white;
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 20px;
    color: white;
}

.cta {
    background-color: var(--main);
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    display: block;
    max-width: fit-content;
    margin: 16px auto 0;
}

.about, .services, .contact {
    padding: 40px 0;
}

.services ul {
    list-style: none;
    padding: 0;
}

.services ul li {
    background: #fff;
    margin-bottom: 10px;
    padding: 10px;
    border-right: 4px solid var(--main);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.gallery {
    padding: 40px 0;
    background-color: #fff;
}

.gallery-stream {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding: 10px 0;
    scroll-behavior: smooth;
}

.gallery-stream img {
    height: 200px;
    border-radius: 10px;
    flex-shrink: 0;
    object-fit: cover;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.suppliers {
    padding: 40px 0;
    background-color: #fff;
}

.suppliers-stream {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 10px 0;
}

.suppliers-stream img {
    width: 48%;
    padding: 12px;
    margin: 12px 1%;
    border-radius: 10px;
    flex-shrink: 0;
    object-fit: contain;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.line {
    height: 1px;
    background-color: #ccc;
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.contact_flex {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}

iframe {
    width: 100%;
    max-height: 205px;
    margin-left: 20px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    margin-top: 20px;
}

.contact-form label {
    font-weight: bold;
}

.contact-form input,
.contact-form textarea {
    padding: 10px;
    font-size: 1em;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 100%;
}

.contact-form button {
    width: fit-content;
    padding: 10px 20px;
    background-color: var(--main);
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

footer {
    background-color: #000;
    color: white;
    text-align: center;
    padding: 15px 0;
    margin-top: 40px;
}

@media (min-width: 600px) {
    .suppliers-stream img {
        width: 23%;
    }

    header .container {
        justify-content: space-between;
    }

    nav {
        display: block;
    }

    iframe {
        width: 50%;
        max-height: 365px;
        margin-left: 20px;
    }

    .contact-form {
        margin-top: 0;
        width: 50%;
    }

    .contact_flex {
        flex-direction: row;
    }
}
