/* ===== RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: #f5f7fa;
    color: #1a1a1a;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

/* ===== NAVBAR ===== */
header {
    background: #ffffff;
    padding: 15px 0;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 22px;
    font-weight: bold;
    color: #0066cc;
}

.logo img {
    width: 35px;
    margin-right: 8px;
}

nav a {
    margin: 0 12px;
    text-decoration: none;
    color: #333;
    font-size: 15px;
    transition: 0.3s;
}

nav a:hover {
    color: #007bff;
}

.btn-primary {
    background: #007bff;
    padding: 10px 20px;
    border: none;
    color: white;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
}

.btn-primary:hover {
    background: #005fcc;
}

/* ===== HERO WITHOUT OVERLAY (BUREAU NETTOYAGE) ===== */
.hero {
  position: relative;
  height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-image: url('net.jpeg'); /* Nouvelle image nettoyage bureaux */
  background-size: cover;
  background-position: center;
  border-bottom-left-radius: 50px;
  border-bottom-right-radius: 50px;
  overflow: hidden;
}

.hero-content {
  position: relative;
  max-width: 800px;
  color: white;
  padding: 20px;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.6);
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 30px;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.btn-secondary,
.btn-primary {
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 1.1rem;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn-primary {
  background-color: #fff;
  color: #0066cc;
  font-weight: 700;
}

.btn-primary:hover {
  background-color: #e6e6e6;
}

.btn-secondary {
  border: 2px solid white;
  color: white;
  font-weight: 600;
}

.btn-secondary:hover {
  background-color: white;
  color: #0066cc;
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-content p {
    font-size: 1.1rem;
  }

  .hero-buttons {
    flex-direction: column;
  }
}

/* ===== SERVICES ===== */
.services {
    text-align: center;
    padding: 60px 0;
}

.services h2 {
    font-size: 32px;
    margin-bottom: 40px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.service {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.service:hover {
    transform: translateY(-5px);
}

.value img,
.service img {
    width: 50px;
    margin-bottom: 10px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.value {
    text-align: center;
}

/* ===== ABOUT ===== */
.about {
    padding: 60px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border-left: 6px solid #007bff;
}

.about-card h2 {
    margin-bottom: 15px;
    font-size: 28px;
}

.image-box img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* ===== FOOTER ===== */
footer {
    background: #0b1a33;
    color: white;
    padding-top: 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

footer ul {
    list-style: none;
}

footer ul li a {
    color: #d8d8d8;
    text-decoration: none;
    transition: 0.3s;
}

footer ul li a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding: 15px 0;
    margin-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 14px;
}

/* Updated logo size */
.logo-img {
    width: 360px;
    height: auto;
}

/* ===== RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: #f5f7fa;
    color: #1a1a1a;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

/* ===== NAVBAR ===== */
header {
    background: #ffffff;
    padding: 15px 0;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 22px;
    font-weight: bold;
    color: #0066cc;
}

.logo img {
    width: 35px;
    margin-right: 8px;
}

nav a {
    margin: 0 12px;
    text-decoration: none;
    color: #333;
    font-size: 15px;
    transition: 0.3s;
}

nav a:hover {
    color: #007bff;
}

.btn-primary {
    background: #007bff;
    padding: 10px 20px;
    border: none;
    color: white;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
}

.btn-primary:hover {
    background: #005fcc;
}

/* ===== HERO WITHOUT OVERLAY (BUREAU NETTOYAGE) ===== */
.hero {
  position: relative;
  height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-image: url('https://images.pexels.com/photos/6195128/pexels-photo-6195128.jpeg');
  background-size: cover;
  background-position: center;
  border-bottom-left-radius: 50px;
  border-bottom-right-radius: 50px;
  overflow: hidden;
}

.hero-content {
  position: relative;
  max-width: 800px;
  color: white;
  padding: 20px;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.6);
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 30px;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.btn-secondary,
.btn-primary {
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 1.1rem;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn-primary {
  background-color: #fff;
  color: #0066cc;
  font-weight: 700;
}

.btn-primary:hover {
  background-color: #e6e6e6;
}

.btn-secondary {
  border: 2px solid white;
  color: white;
  font-weight: 600;
}

.btn-secondary:hover {
  background-color: white;
  color: #0066cc;
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-content p {
    font-size: 1.1rem;
  }

  .hero-buttons {
    flex-direction: column;
  }
}

/* ===== SERVICES ===== */
.services {
    text-align: center;
    padding: 60px 0;
}

.services h2 {
    font-size: 32px;
    margin-bottom: 40px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.service {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.service:hover {
    transform: translateY(-5px);
}

.value img,
.service img {
    width: 50px;
    margin-bottom: 10px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.value {
    text-align: center;
}

/* ===== ABOUT ===== */
.about {
    padding: 60px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border-left: 6px solid #007bff;
}

.about-card h2 {
    margin-bottom: 15px;
    font-size: 28px;
}

.image-box img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* ===== FOOTER ===== */
footer {
    background: #0b1a33;
    color: white;
    padding-top: 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

footer ul {
    list-style: none;
}

footer ul li a {
    color: #d8d8d8;
    text-decoration: none;
    transition: 0.3s;
}

footer ul li a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding: 15px 0;
    margin-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 14px;
}

/* Updated logo size */
.logo-img {
    width: 180px;
    height: auto;
}

/* ===== RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: #f5f7fa;
    color: #1a1a1a;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

/* ===== NAVBAR ===== */
header {
    background: #ffffff;
    padding: 15px 0;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 22px;
    font-weight: bold;
    color: #0066cc;
}

.logo img {
    width: 35px;
    margin-right: 8px;
}

nav a {
    margin: 0 12px;
    text-decoration: none;
    color: #333;
    font-size: 15px;
    transition: 0.3s;
}

nav a:hover {
    color: #007bff;
}

.btn-primary {
    background: #007bff;
    padding: 10px 20px;
    border: none;
    color: white;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
}

.btn-primary:hover {
    background: #005fcc;
}

/* ===== HERO WITHOUT OVERLAY (BUREAU NETTOYAGE) ===== */
.hero {
  position: relative;
  height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-image: url('net.jpeg');
  background-size: cover;
  background-position: center;
  border-bottom-left-radius: 50px;
  border-bottom-right-radius: 50px;
  overflow: hidden;
}

.hero-content {
  position: relative;
  max-width: 800px;
  color: white;
  padding: 20px;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.6);
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 30px;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.btn-secondary,
.btn-primary {
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 1.1rem;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn-primary {
  background-color: #fff;
  color: #0066cc;
  font-weight: 700;
}

.btn-primary:hover {
  background-color: #e6e6e6;
}

.btn-secondary {
  border: 2px solid white;
  color: white;
  font-weight: 600;
}

.btn-secondary:hover {
  background-color: white;
  color: #0066cc;
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-content p {
    font-size: 1.1rem;
  }

  .hero-buttons {
    flex-direction: column;
  }
}

/* ===== SERVICES ===== */
.services {
    text-align: center;
    padding: 60px 0;
}

.services h2 {
    font-size: 32px;
    margin-bottom: 40px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.service {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.service:hover {
    transform: translateY(-5px);
}

.value img,
.service img {
    width: 50px;
    margin-bottom: 10px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.value {
    text-align: center;
}

/* ===== ABOUT ===== */
.about {
    padding: 60px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border-left: 6px solid #007bff;
}

.about-card h2 {
    margin-bottom: 15px;
    font-size: 28px;
}

.image-box img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* ===== FOOTER ===== */
footer {
    background: #0b1a33;
    color: white;
    padding-top: 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

footer ul {
    list-style: none;
}

footer ul li a {
    color: #d8d8d8;
    text-decoration: none;
    transition: 0.3s;
}

footer ul li a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding: 15px 0;
    margin-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 14px;
}

/* Updated logo size */
.logo-img {
    width: 180px;
    height: auto;
}

/* ===== RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: #f5f7fa;
    color: #1a1a1a;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

/* ===== NAVBAR ===== */
header {
    background: #ffffff;
    padding: 15px 0;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 22px;
    font-weight: bold;
    color: #0066cc;
}

.logo img {
    width: 35px;
    margin-right: 8px;
}

nav a {
    margin: 0 12px;
    text-decoration: none;
    color: #333;
    font-size: 15px;
    transition: 0.3s;
}

nav a:hover {
    color: #007bff;
}

.btn-primary {
    background: #007bff;
    padding: 10px 20px;
    border: none;
    color: white;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
}

.btn-primary:hover {
    background: #005fcc;
}

/* ===== HERO WITHOUT OVERLAY (BUREAU NETTOYAGE) ===== */
.hero {
  position: relative;
  height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-image: url('https://images.pexels.com/photos/3184465/pexels-photo-3184465.jpeg');
  background-size: cover;
  background-position: center;
  border-bottom-left-radius: 50px;
  border-bottom-right-radius: 50px;
  overflow: hidden;
}

.hero-content {
  position: relative;
  max-width: 800px;
  color: white;
  padding: 20px;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.6);
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 30px;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.btn-secondary,
.btn-primary {
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 1.1rem;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn-primary {
  background-color: #fff;
  color: #0066cc;
  font-weight: 700;
}

.btn-primary:hover {
  background-color: #e6e6e6;
}

.btn-secondary {
  border: 2px solid white;
  color: white;
  font-weight: 600;
}

.btn-secondary:hover {
  background-color: white;
  color: #0066cc;
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-content p {
    font-size: 1.1rem;
  }

  .hero-buttons {
    flex-direction: column;
  }
}

/* ===== SERVICES ===== */
.services {
    text-align: center;
    padding: 60px 0;
}

.services h2 {
    font-size: 32px;
    margin-bottom: 40px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.service {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.service:hover {
    transform: translateY(-5px);
}

.value img,
.service img {
    width: 50px;
    margin-bottom: 10px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.value {
    text-align: center;
}

/* ===== ABOUT ===== */
.about {
    padding: 60px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border-left: 6px solid #007bff;
}

.about-card h2 {
    margin-bottom: 15px;
    font-size: 28px;
}

.image-box img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* ===== FOOTER ===== */
footer {
    background: #0b1a33;
    color: white;
    padding-top: 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

footer ul {
    list-style: none;
}

footer ul li a {
    color: #d8d8d8;
    text-decoration: none;
    transition: 0.3s;
}

footer ul li a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding: 15px 0;
    margin-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 14px;
}



/* === RESPONSIVE === */
@media(max-width: 900px) {
    .service-grid,
    .values-grid,
    .about,
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}
/* Mobile: services displayed 2 by 2 */
/* --- Nouvelle version responsive pour À propos --- */
@media (max-width: 600px) {
    .about {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .about-card {
        order: 1;
    }
    .image-box {
        order: 2;
    }
}

/* ===== MENU BURGER MOBILE ===== */

.burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.burger span {
    width: 28px;
    height: 3px;
    background: #0066cc;
    border-radius: 5px;
    transition: 0.3s;
}

/* Menu mobile caché par défaut */
nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* ========= MOBILE ========= */
@media(max-width: 768px) {

    .burger {
        display: flex;
    }

    nav {
        position: absolute;
        top: 75px;
        right: 0;
        background: #fff;
        width: 100%;
        flex-direction: column;
        padding: 20px 0;
        display: none; /* caché */
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        z-index: 999;
    }

    nav a,
    nav button {
        padding: 12px 0;
        font-size: 18px;
        width: 100%;
        text-align: center;
    }

    /* Quand ouvert */
    nav.active {
        display: flex;
    }

    /* Animation burger en X */
    .burger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }
    .burger.active span:nth-child(2) {
        opacity: 0;
    }
    .burger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }

}
