* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #9EB7FC;
    --secondary-color: #FC6204;
    --dark-color: #404040;
    --light-color: #e5e9ef; /* #ADB9CA; */
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
}

img {
    max-width: 100%;
    height: auto;
}

ul {
    padding-inline-start: 40px;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar */
.navbar {
    background-color: white;
    box-shadow: var(--shadow);
    position: fixed;
    width: 100%;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
  display: flex;
  align-items: center;
  font-size: 0;
}

.logo-img {
  height: 60px;
  width: auto;
  margin-right: 10px;
}



.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 500;
    font-size: 16px;
}

.nav-links a.orange-text {
    color: var(--secondary-color);
    font-weight: bold;
}

.hamburger {
    display: none;
    cursor: pointer;
}

/* Sections */
section {
    padding: 50px 0;
}

section span {
    white-space: nowrap;
}

/* Hero Section */

/* Version simple */
.hero {
    background: var(--dark-color);
    color: white;
    text-align: center;
    padding: 150px 0 50px;
}

/* Version avec image en fond de banniere */
/*
.hero {
    background-image: url('images/img-industrie.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 300px;
    display: flex;
    align-items: center;
    text-align: center;
    color: black;
    padding: 150px 0 50px;
}
*/

.hero h1 {
    font-size: 40px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 16px;
    margin-bottom: 30px;
}

.hero span {
    white-space: nowrap;
}


.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.hero-text {
    flex: 1;
    max-width: 550px;
    text-align: left;
}

.hero-text h1 {
    margin-top: 20px;
    line-height: 1.2;
    font-size: 42px;
    margin-bottom: 20px;
}


.btn {
    display: inline-block;
    background: var(--secondary-color);
    color: white;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}



.btn:hover {
    background: white;
    color: var(--secondary-color);
    transform: translateY(-3px);
}

.mission p {
    padding: 20px 0 0 0;
}

.clients {
    background: var(--light-color);
    text-align: left
}

.clients h3 {
    padding: 20px 0;
}

.clients p {
    padding: 20px 0 0 0;
}


.clients .feature-card {
    background: white;
    width: 100%;
    max-width: 300px;
}

.clients .feature-card h3 {
    padding: 0;
}

.with-line {
    border-bottom: 1px solid var(--secondary-color);
    padding-bottom: 5px;
}

.clients .feature-grid {
    margin-top: 20px;
}

.clients .client-list {
    font-size: 20px;
    /*font-weight: bold;*/
}


/* Features */

.feature-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.feature-card {
    background: var(--light-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    width: 100%;
    max-width: 500px;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-card i {
    font-size: 40px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 20px;
    color: var(--secondary-color);
    margin-bottom: 5px;
}


.logo-title-card {
    display: flex;
    align-items: center;
    gap: 20px;
}

.feature-card p {
    padding: 0;
}


h3.orange {
    color: var(--secondary-color);
}

.image-list-container {
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    justify-content: center;
}


.techno p {
    padding: 20px 0 0 0;
}

.simple-list {
    margin: 0px;
    padding-left: 20px;
    flex: 1;
}

.simple-list li {
    margin-bottom: 15px;
}

 

/* CTA */
.cta {
    background: var(--dark-color);
    color: white;
    text-align: center;
}

.cta h2 {
    margin-bottom: 20px;
}

.cta p {
    margin-bottom: 30px;
}

/* Footer */
footer {
    background: var(--dark-color);
    color: white;
    text-align: center;
    padding: 20px 0;
}


/* Consolidated Responsive */
@media (max-width: 768px) {
    /* Global */
    section {
        padding: 32px 0;
    }
    section span {
        white-space: normal;
    }
    section br {
        display: none;
    }
    .container {
        width: 92%;
        padding: 0 16px;
    }
    /* Logo */
    .logo-img {
        height: 40px;
      }

    /* Nav */
    .hamburger {
        display: block;
    }
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: white;
        padding: 20px;
        box-shadow: var(--shadow);
    }
    .nav-links a {
        font-size: 15px;
        font-weight: bold;
        line-height: 1.3;
        padding: 10px 0;
    }
    .nav-links.active {
        display: flex;
    }
    .nav-links li {
        margin: 10px 0;
    }

    /* Hero */
    .hero {
        padding: 100px 0 10px 0;
    }
    .hero span {
        white-space: normal;
    }
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    .hero-text {
        max-width: 100%;
        margin-bottom: 30px;
    }
    .hero-text h1 {
        max-width: 100%;
        font-size: 25px;
        line-height: 1.3;

    }
    .hero-text p {
        font-size: 15px;
    }

    /* Layout */
    .image-list-container {
        flex-direction: column;
    }

    /* Center hero button on small screens only */
    .hero-text .btn {
        display: block;
        margin: 0 auto;
        text-align: center;
    }

    section h1 {
        font-size: 25px;
        line-height: 1.3;
    }
    section p {
        font-size: 15px;
        line-height: 1.3;
    }

    section h3 {
        font-size: 18px;
        line-height: 1.3;
    }
    section h3.with-line {
        font-size: 18px;
        line-height: 1.3;
    }

    section h3.orange{
        padding: 10px 0 0 0;
    }

    /* Features */
    .feature-grid {
        flex-direction: column;
        align-items: center;
    }
    .feature-card {
        padding: 20px;
        max-width: 100%;
        font-size: 15px;
        line-height: 1.3;
    }

    /* Clients */
    .clients .client-list {
        font-size: 15px;
        line-height: 1.3;
    }
    .clients .feature-card {
        max-width: 100%;
    }

    .techno span {
        white-space: normal;
    }
    .techno .simple-list {
        font-size: 15px;
        line-height: 1.3;
    }

    /* CTA */
    .cta {
        padding: 40px 0;
    }
    footer p {
        font-size: 12px;
    }
}

