/* Couleurs */
:root {
    --navy-blue: #1b2a41;
    --turquoise: #1abc9c;
    --gold-sand: #c2a772;
    --light-gray: #f8f8f8;
    --charcoal: #333333;
}

body {
    font-family: Arial, sans-serif;
    background-color: var(--light-gray);
    color: var(--charcoal);
    margin: 0;
    padding: 0;
}

header {
    background-color: var(--navy-blue);
    color: white;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 50px;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-part {
    height: 60px;
    margin: 0 5px;
}

.separator {
    width: 2px;
    height: 40px;
    background-color: #ccc;
    margin: 0 5px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links a {
    color: var(--turquoise);
    text-decoration: none;
    font-weight: bold;
}

.nav-links a:hover {
    color: var(--gold-sand);
}

.hero {
    background-image: url('societe.webp');
    background-size: cover;
    background-position: center;
    height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

.hero-content {
    max-width: 80%;
}

h1, p {
    font-size: 36px;
}

h2 {
    font-size: 28px;
    margin-bottom: 20px;
    text-align: center;
}

.btn {
    background-color: var(--turquoise);
    padding: 10px 20px;
    border: none;
    color: white;
    cursor: pointer;
}

.btn:hover {
    background-color: var(--gold-sand);
}

/* Services Section */
#services {
    margin-top: 60px;
}

.service-container {
    display: flex;
    justify-content: space-between;
    margin: 40px 0;
}

.service {
    width: 30%;
    text-align: center;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
    padding: 20px;
}

.service img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

.description {
    margin-top: 15px;
    text-align: justify;
}
.intro-text {
    font-size: 14px;
    color: #444;
    margin-bottom: 8px;
  }

/* About Section */
#about {
    background-color: var(--light-gray);
    padding: 60px 50px;
    text-align: center;
}

#about-title {
    font-size: 32px;
    margin-bottom: 30px;
}

.about-container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: 30px;
}

.about-item {
    width: 30%;
    background-color: white;
    padding: 20px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    text-align: center;
}

.about-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--navy-blue);
}

.about-item p {
    font-size: 14px;
    color: var(--charcoal);
    line-height: 1.5;
}

/* Footer Section */
.footer {
    background-color: var(--navy-blue);
    color: white;
    padding: 50px 30px;
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.footer-left, .footer-right {
    width: 45%;
}

.footer-left p {
    font-size: 14px;
    line-height: 1.6;
}

.footer-right p {
    font-size: 14px;
}

.social-links {
    margin-top: 20px;
}

.social-links a {
    color: white;
    margin: 0 10px;
    font-size: 16px;
    text-decoration: none;
}

.social-links a:hover {
    color: var(--turquoise);
}

.footer-bottom {
    font-size: 12px;
}

.footer-bottom a {
    color: var(--turquoise);
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}
