/* Réinitialisation générale */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #333;
    background-color: transparent;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

/* Logo */
.logo img {
    max-width: 230px;
    height: auto;
}

/* Style pour le texte sous le logo */
.logo-text {
    font-size: 1.2rem; /* Ajuste la taille du texte */
    color: #003366; /* Couleur foncée */
    font-weight: bold; /* Mettre le texte en gras */
    margin-top: 5px; /* Espace entre le logo et le texte */
    text-align: center; /* Centrer le texte */
}
/* Navigation */
nav {
    display: flex;
    gap: 20px;
}

nav .nav-link {
    text-decoration: none;
    color: #333;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s;
}

nav .nav-link:hover {
    color: #4a90e2;
}

/* Ligne stylisée */
.separator {
    margin: 20px auto;
    width: 50%;
    height: 3px;
    background: linear-gradient(to right, #4a90e2, transparent);
    border-radius: 2px;
}

/* Zone des photos */
#photo-container {
    width: 100%;
    height: 40vh;
    margin: 0;
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

#photo-container img {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

#photo-container img.visible {
    opacity: 1;
}
#company-presentation {
    background-color: #f4f4f4;
    padding: 40px 20px;
    text-align: center;
    font-family: Arial, sans-serif;
    opacity: 0;
    animation: fadeIn 1s forwards;
}

#company-presentation .container {
    max-width: 1200px;
    margin: 0 auto;
}

#company-presentation h2 {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeIn 2s forwards 0.5s;
}

#company-presentation p {
    font-size: 1.1em;
    color: #555;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0;
    animation: fadeIn 2s forwards 1s;
}

#company-presentation h3 {
    font-size: 1.8em;
    color: #444;
    margin-bottom: 15px;
    opacity: 0;
    animation: fadeIn 2s forwards 1.5s;
}

#company-presentation ul {
    list-style-type: none;
    padding: 0;
}

#company-presentation ul li {
    font-size: 1.2em;
    margin-bottom: 10px;
    color: #666;
    opacity: 0;
    animation: fadeIn 2s forwards 2s;
}

#company-presentation ul li strong {
    color: #1e70bf; /* Accent color for important technologies */
}

#company-presentation ul li:hover {
    background-color: #e2f1fe;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.fade-in-text {
    opacity: 0;
    animation: fadeIn 2s forwards;
}

.fade-in-text:nth-child(odd) {
    animation-delay: 1s;
}

.fade-in-text:nth-child(even) {
    animation-delay: 2s;
}

/* Keyframes for fade-in effect */
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.dynamic-link {
    color: #1e70bf;
    text-decoration: none;
    font-weight: bold;
}

.dynamic-link:hover {
    text-decoration: underline;
    color: #1468b0;
}

#company-presentation a {
    color: #1e70bf;
    text-decoration: none;
}

#company-presentation a:hover {
    text-decoration: underline;
}

/* Style pour la section présentant Mohamad Matar */
#mohamad-matar {
    background-color: #ffffff;
    padding: 40px 20px;
    margin-top: 40px;
    text-align: center;
    font-family: Arial, sans-serif;
}

#mohamad-matar h3 {
    font-size: 2em;
    color: #333;
    margin-bottom: 20px;
}

#mohamad-matar p {
    font-size: 1.1em;
    color: #555;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto;
    text-align: justify;
}

#company-presentation ul {
    list-style-type: none;
    padding: 0;
    text-align: left;
}

/* Section Contact */
/* Style pour la section Contact */
/* Style pour la section Contact */
#contact {
    background-color: #f9f9f9;
    padding: 60px 20px;
    font-family: Arial, sans-serif;
    text-align: center;
}

#contact .container {
    max-width: 1000px;
    margin: 0 auto;
}

#contact h2 {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 20px;
    font-weight: bold;
}

#contact p {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 40px;
}

/* Formulaire de contact */
/* Style pour la section Contact */
#contact {
    background-color: #f9f9f9;
    padding: 60px 20px;
    font-family: Arial, sans-serif;
    text-align: center;
}

#contact .container {
    max-width: 1000px;
    margin: 0 auto;
}

#contact h2 {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 20px;
    font-weight: bold;
}

#contact p {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 40px;
}

/* Informations de contact */
.contact-info {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.contact-item {
    font-size: 1.1em;
    color: #333;
    margin-bottom: 15px;
}

.contact-item strong {
    color: #1e70bf;
}

/* Formulaire de contact */
/* Style pour la section Contact */
#contact {
    background-color: #f9f9f9;
    padding: 60px 20px;
    font-family: Arial, sans-serif;
    text-align: center;
}

#contact .container {
    max-width: 1000px;
    margin: 0 auto;
}

#contact h2 {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 20px;
    font-weight: bold;
}

#contact p {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 40px;
}

/* Informations de contact */
.contact-info {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.contact-item {
    font-size: 1.1em;
    color: #333;
    margin-bottom: 15px;
}

.contact-item strong {
    color: #1e70bf;
}

/* Animation de la section */
#contact {
    opacity: 0;
    animation: fadeIn 1.5s forwards 0.5s;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    font-size: 0.9em;
}

.footer-container p {
    margin: 5px 0;
}

footer a {
    color: white; /* Changer la couleur du texte en blanc */
    text-decoration: none; /* Enlever le soulignement du lien si tu veux */
}

footer a:hover {
    color: #ccc; /* Ajouter un effet au survol si tu le souhaites */
}
