@import url(https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap);
/* General Styles */


:root {
    --primary-color: #062c4cff;  /* Deep Corporate Blue */
    
    --highlight-color: #4cbcffff;  /* Medium-Dark Blue for Highlights */
    --background-color: #f4f7fc;  /* Soft Light Blue-Grey Background */
    --text-color: #222;  /* Dark Grey for Readability */
    --muted-text-color: #555;  /* Slightly Lighter Grey for Less Important Text */
    --border-color: #c0cadb;  /* Soft Blue-Grey for Borders */
   
    --input-background: #ffffff;  /* Clean White for Input Fields */
    --success-color: #28a745;  /* Green for Success Messages */
    --error-color: #d9534f;  /* Red for Error Messages */

    --colorone: #276087ff;
    --dark-blue:#041423ff;
    
    --colorquatre:#ddeffaff;
    --colorcinq: #386d94ff;
}


*{
    margin: 0;
    padding: 0;
}
body {
    margin: 0;
    padding: 0;
    font-family:"Open Sans", sans-serif;
}
body, ul {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

ul, OL{
    list-style-position: inside;
    padding-left: 10px;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Navigation Bar */
nav{
    max-width: 1200px;
    
    margin: 0 auto;
    padding: 0 20px;

}
.header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 56px;
    padding: 1rem 5%;
    background-color: #ffffff;
    position: relative;
    z-index: 10;
}



.logo img{
    height: 30px;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 1rem;
}

.nav-links li {
    font-size: 16px;
}

.nav-links a {
    font-size: 16px;
    
    color: var(--dark-blue);
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--highlight-color);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}
#language {
    font-weight: bold;
    display: block;
    font-size: 16px; /* Move font size here since there’s no <a> */
    color: #333;
    cursor: pointer; /* Makes it clear it's clickable */
    transition: color 0.3s ease;
}

#language:hover {
    color: var(--highlight-color);
}
.burger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.burger img {
    height: 20px;
}
/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5)), url('/images/business.webp') center/cover no-repeat;
    
    height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-left: 50px;
    color: white;    
}

.hero h1 {
    font-size: 48px;
    font-weight: bold;
    font-family: "Inter";
    text-transform: uppercase;
}

.hero p {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 24px;
}

.btn {
    background-color: var(--primary-color);
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease-in-out;
}

.btn:hover{
    background-color: var(--colorone);
}

/* ----------------------main page content----------------*/
.leTitre{
   text-align: center;
   margin-top: 64px;
   margin-bottom: 36px;  
   
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    
    
}
.section img {
    width: 50%;
    height: auto;
    margin-bottom: 64px;
    
}
.section .text {
    width: 45%;
}
.section:nth-child(even) {
    flex-direction: row-reverse;
}
/*------------------------------------------------*/
.leContainer{
    position: relative;
    text-align: center;
    margin-bottom: 56px;
}
.titre{
    position:absolute;
    bottom: 32px;
    left: 32px;
    font-size: 42px;
    line-height: 60px;
    color: white;

}
.header-image {
    width: 100%;
    height: 400px;
    object-fit: cover;    
    filter:contrast(110%);
    filter:brightness(50%);
    
}
/* About (or content)*/

.maine{
margin-bottom: 72px;
}
main{
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1{
    font-size: 27px;    
    font-weight: 700;
    line-height: 29px;
}

h2{
    color: var(--primary-color);
    font-size: 22px;
    font-weight: 700;
    line-height: 29px;
    margin-top: 36px;
    margin-bottom: 4px;
}
h3{
    font-size: 20px;
    font-weight: 700;
    line-height: 26px;
    margin-top: 36px;
    margin-bottom: 4px;
}

p, li{
    font-size: 18px;
    font-weight: 400;
    line-height: 36px;
}
p.after-list{
    margin-top: 8px;;
}


  
 


/*----------------- Footer--------------------------------- */

footer {
    background-color: #000;
    color: #ffffff;
    padding: 30px 0;
    font-family: Arial, sans-serif;
    
  }
  
  .footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
   
    border-bottom: 1px solid #444;
    padding-bottom: 15px;
  }
  
  .footer-brand {
    font-weight: bold;
    font-size: 1.2em;
    letter-spacing: 1px;
  }
  
  .navfoot nav a {
    color: rgb(255, 255, 255);    
    margin: 0 15px;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
  }
  
  .navfoot nav a:hover {
    color: var(--highlight-color);
  }
  
  .footer-language {
    font-weight: bold;
    cursor: pointer;
  }
  
  .footer-bottom {
    text-align: center;
    margin-top: 15px;
    
  }
  .contact-us{
    text-align: center;
  }
  .contact-us h3 {
    color: var(--highlight-color); /* Gold-like color */
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: bold;
}

.contact-us ul {
    list-style: none;
    padding: 0;
}

.contact-us li {
    margin: 5px 0;
}

.contact-us a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-us a:hover {
    color: var(--highlight-color);
}

.contact-us img {
    width: 20px;
    margin-right: 10px;
}

  .footer-bottom p{
    font-size: 14px;
    
    color: #bdc3c7; /* Light grey for copyright text */
    font-weight: 300;
  }

  .footTrans{
    color: white;
  }

  .logo-bottom img{
    height: 24px;
    width: auto;
}


/*-----GLOSSARY-----------------------------------*/

.glossary h2 {
    color: var(--primary-color);
  }
.glossary h3 {
    margin-top: 40px;
    border-bottom: 2px solid #ccc;
    padding-bottom: 5px;
    color: var(--colorone);
  }
  .glossary p {
    margin: 10px 0;
  }
  .term {
    font-weight: bold;
  }











/* Responsive Design */


/*-------------------------------------------------------------------------------*/

@media (max-width: 1024px) {
    nav {
       
    }

    .nav-links {
       
    }
}

/* Mobile Styles 768 px*/
@media (max-width: 920px) {
    
    .logo img{
        height: 28px;
    }
    .nav-links {
        
        display: none;
        flex-direction: column;
        position: absolute;
        padding: 20px;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--primary-color);
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    }

    .nav-links a{
        color: white;
        font-size: 14px;
    }

    .lang-switch{
        display: flex;
    }
    .nav-links.active {
        display: flex;
        
    }
    .burger {
        display: block;
    }
    
    .hero {
        padding-left: 20px;
        height: 500px;
        
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .btn {
        padding: 8px 16px;
        border-radius: 4px;
    }
    .section {
        flex-direction: column;
        text-align: center;
    }
    .section img {
        width: 80%;
        margin: 0 auto 20px;
        display: block;
    }
    .section .text {
        width: 100%;
        margin-bottom: 40px;
    }
    .section:nth-child(even) {
        flex-direction: column;
    }

    .main-contact {
        width: 100%;  /* Full width on mobile */
        padding: 25px;
        margin: 0;  /* Removes margins for edge-to-edge layout */
        border-radius: 0;  /* Optional: removes rounded edges for a clean mobile look */
    }

    .headerz h1 {
        font-size: 28px;
    }

    .contact-info h2,
    .contact-form h2 {
        font-size: 22px;
    }

    .contact-form input,
    .contact-form textarea {
        font-size: 15px;
        padding: 12px;
    }

    .contact-form button {
        font-size: 16px;
        padding: 12px;
    }

    
    .navfoot nav {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 5px; /* Adds spacing between links */
    }

    .navfoot nav a {
        margin: 5px 0; /* Reduce horizontal spacing, add vertical spacing */
        font-size: 14px;
    }
}
