/* GLOBAL STYLES */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    box-sizing: border-box;
}

header {
    background: #333;
    color: #fff;
    padding: 10px 20px;
    position: relative;
    z-index: 10;
}

header h1 {
    margin: 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 15px;
}

nav ul li {
    margin: 0;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    padding: 5px 10px;
}

.burger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: #fff;
}

nav ul.mobile-hidden {
    display: none;
    flex-direction: column;
    gap: 10px;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #333;
    padding: 20px 0;
    z-index: 9;
}

.hero {
    background: linear-gradient(to bottom, #f0f0f0, #dcdcdc);
    height: 80vh;
    color: #000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.hero h2 {
    font-size: 3rem;
    margin: 0;
}

.hero p {
    font-size: 1.2rem;
    margin: 20px 0;
}

.hero button {
    padding: 10px 20px;
    background: #f04;
    border: none;
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 5px;
}

section {
    padding: 40px 20px;
    text-align: center;
    border-top: 1px solid #ccc;
}

section:nth-of-type(even) {
    background: #f9f9f9;
}

section:nth-of-type(odd) {
    background: #ffffff;
}

section h3 {
    margin-bottom: 20px;
    font-size: 2rem;
}

section p {
    margin-bottom: 20px;
    color: #555;
}

/* NOS SERVICES: BOX STYLE */
#services {
    background-color: #f9f9f9;
    padding: 60px 20px;
    text-align: center;
}

#services h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #333;
}

.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-box {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

.service-box i {
    font-size: 2.5rem;
    color: #f04;
    margin-bottom: 15px;
}

.service-box h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 10px;
}

.service-box p {
    font-size: 1rem;
    color: #666;
    line-height: 1.5;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .services-container {
        grid-template-columns: 1fr;
    }
}


/* FORMULAIRE DE CONTACT */
form {
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

form input,
form textarea,
form button {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

form textarea {
    resize: vertical;
    min-height: 150px;
}

form button {
    background: #f04;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
}

form button:hover {
    background: #c03;
}

footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 20px;
}

footer p {
    margin: 0;
}

.sommaireliens {
    display: none;
    list-style: none;
}

/* MEDIA QUERIES */
@media (max-width: 768px) {
    .burger {
        display: flex;
    }

    nav ul {
        display: none;
    }

    nav ul.mobile-visible {
        display: flex;
    }


}
