/* Global Styles */
:root {
    --primary-color: #000000; /* Noir au lieu de vert */
    --secondary-color: #1a1a1a; /* Noir plus foncé */
    --accent-color: #d4af37; /* Or au lieu d'orange */
    --light-color: #f0f0f0;
    --dark-color: #121212;
    --text-color: #e0e0e0; /* Texte clair sur fond sombre */
    --text-light: #b0b0b0;
    --white: #ffffff;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    --transition: all 0.3s ease;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--dark-color);
    overflow-x: hidden;
  }
  
  a {
    text-decoration: none;
    color: var(--secondary-color);
    transition: var(--transition);
  }
  
  a:hover {
    color: var(--primary-color);
  }
  
  img {
    max-width: 100%;
    height: auto;
    display: block;
  }
  
  ul {
    list-style: none;
  }
  
  .btn {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.8rem 1.8rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
  }
  
  .btn:hover {
    background: #267349;
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    color: var(--white);
  }
  
  .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
  }
  
  .section-title {
    text-align: center;
    margin-bottom: 3rem;
  }
  
  .section-title h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
  }
  
  .section-title h2::after {
    content: '';
    position: absolute;
    width: 50%;
    height: 4px;
    background: var(--primary-color);
    bottom: -10px;
    left: 25%;
  }
  
  .section-title p {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
  }
  
  /* Header */
  header {
    background-color: var(--secondary-color);
    box-shadow: var(--shadow);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition);
    color: var(--white);
  }
  
  .header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
  }
  
  .logo span {
    color: #e6951a;
  }
  
  nav ul {
    display: flex;
    gap: 2rem;
  }
  
  nav a {
    font-weight: 600;
    position: relative;
    color: var(--text-light)
  }
  
  nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    bottom: -5px;
    left: 0;
    transition: var(--transition);
  }
  
  nav a:hover::after {
    width: 100%;
  }
  
  .hamburger {
    display: none;
    cursor: pointer;
  }
  
  /* Hero Section */
  .hero {
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    position: relative;
    margin-top: 80px;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6));
    color: var(--white);
    overflow: hidden;
  }
  
  .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover;
    z-index: -1;
  }
  
  .hero-content {
    max-width: 600px;
    z-index: 1;
  }
  
  .hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
  }
  
  .hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
  }
  
  .hero-btn {
    background: var(--accent-color);
  }
  
  .hero-btn:hover {
    background: #e6951a;
  }
  
  /* Hero Section - Version Noire Centrée */
.hero {
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    margin-top: 80px;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
                url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover;
    color: var(--white);
}

.hero-content {
    max-width: 800px;
    padding: 0 2rem;
    z-index: 1;
}

.logo-hero {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.logo-hero span {
    color: var(--accent-color);
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.hero-tagline {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    opacity: 0.9;
    font-weight: 300;
}

.hero-mission {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: var(--accent-color);
    font-style: italic;
}

.hero-btn {
    background: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    padding: 1rem 2.5rem;
    font-size: 1rem;
    letter-spacing: 2px;
}

.hero-btn:hover {
    background: var(--accent-color);
    color: var(--primary-color);
    border-color: var(--accent-color);
}
  /* Services Section */
  .services {
    padding: 6rem 0;
    background-color: var(--light-color);
  }
  
  .services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
  }
  
  .service-box {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
  }
  
  .service-box:hover {
    transform: translateY(-10px);
  }
  
  .service-box img {
    height: 200px;
    width: 100%;
    object-fit: cover;
  }
  
  .service-box h3 {
    padding: 1.5rem 1.5rem 0;
    font-size: 1.4rem;
    color: var(--secondary-color);
  }
  
  .service-box p {
    padding: 1rem 1.5rem;
    color: var(--text-light);
  }
  
  .service-link {
    display: inline-block;
    padding: 0 1.5rem 1.5rem;
    color: var(--accent-color);
    font-weight: 600;
    transition: var(--transition);
  }
  
  .service-link:hover {
    color: var(--accent-color);
  }

  .service-box, .contact-info {
    background-color: var(--secondary-color);
    color: var(--text-color);
}

.service-box p, .service-box h3 {
    color: var(--text-color);
}
  
  /* About Section */
  .about {
    padding: 6rem 0;
    background-color: var(--dark-color);
  }
  
  .about-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
  }
  
  .about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
  }
  
  .about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--light-color);
  }
  
  .about-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
  }
  
  .team-photos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
  }
  
  .team-photos img {
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 250px;
    object-fit: cover;
  }
  
  .team-photos img:hover {
    transform: scale(1.03);
  }
  
  /* Contact Section */
  .contact {
    padding: 6rem 0;
    background-color: var(--dark-color);
    
  }

    /* Contact Section - Titre blanc */
.contact .section-title h2 {
    color: var(--white) !important;
  }
  
  .contact .section-title h2::after {
    background: var(--accent-color) !important;
  }
  
  .contact .section-title p {
    color: var(--text-light) !important;
    opacity: 0.9;
  }
  
  .contact-info-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 3rem;
  }
  
  .contact-info {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    color: var(--dark-color)
  }
  
  .contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
  }
  
  .contact-item i {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-right: 1rem;
    width: 30px;
    text-align: center;
  }
  
  .social-links {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
  }
  
  .social-links a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--dark-color);
    font-weight: 600;
  }
  
  .social-links a:hover {
    color: var(--primary-color);
  }
  
  .contact-map {
    height: 300px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
  }
  
  .contact-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  /* Footer */
  footer {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 4rem 0 2rem;
  }
  
  .footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
  }
  
  .footer-col h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: var(--white);
  }
  
  .footer-col p {
    margin-bottom: 1rem;
    opacity: 0.8;
  }
  
  .footer-col ul li {
    margin-bottom: 0.8rem;
  }
  
  .footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
    color: var(--text-light)
  }
  
  .footer-col ul li a:hover {
    color: var(--white);
    padding-left: 5px;
  }
  
  .copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
  }
  
  /* Responsive Styles */
  @media (max-width: 992px) {
    .hero h1 {
      font-size: 3rem;
    }
    
    .section-title h2 {
      font-size: 2.2rem;
    }
  }
  
  @media (max-width: 768px) {
    .header-container {
      padding: 0 1rem;
    }
    
    nav {
      position: fixed;
      top: 80px;
      left: -100%;
      width: 80%;
      height: calc(100vh - 80px);
      background: var(--white);
      box-shadow: var(--shadow);
      transition: var(--transition);
      z-index: 999;
    }
    
    nav.active {
      left: 0;
    }
    
    nav ul {
      flex-direction: column;
      padding: 2rem;
      gap: 1.5rem;
    }
    
    .hamburger {
      display: block;
      font-size: 1.5rem;
    }
    
    .hero {
      margin-top: 70px;
      min-height: 500px;
    }
    
    .hero h1 {
      font-size: 2.5rem;
    }
    
    .hero p {
      font-size: 1.1rem;
    }
    
    .about-container {
      grid-template-columns: 1fr;
    }
    
    .team-photos {
      grid-template-columns: 1fr;
    }
  }
  
  @media (max-width: 576px) {
    .hero h1 {
      font-size: 2rem;
    }
    
    .hero p {
      font-size: 1rem;
    }
    
    .section-title h2 {
      font-size: 1.8rem;
    }
    
    .btn {
      padding: 0.6rem 1.5rem;
      font-size: 0.8rem;
    }
    
    .services-container {
      grid-template-columns: 1fr;
    }
    
    .footer-container {
      grid-template-columns: 1fr;
    }
  }
  
  /* Animation */
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .service-box, .about-container, .contact-info-container {
    animation: fadeIn 1s ease forwards;
  }
  
  .service-box:nth-child(2) {
    animation-delay: 0.2s;
  }
  
  .service-box:nth-child(3) {
    animation-delay: 0.4s;
  }
  
  .service-box:nth-child(4) {
    animation-delay: 0.6s;
  }


  @media (max-width: 576px) {
    /* Hero Section */
    .hero {
        min-height: 450px;
        margin-top: 60px;
    }
    
    .logo-hero {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .hero h1 {
        font-size: 1.8rem;
        letter-spacing: 1px;
        line-height: 1.2;
    }
    
    .hero-tagline {
        font-size: 1.1rem;
    }
    
    .hero-mission {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    /* Navigation */
    nav {
        top: 60px;
        height: calc(100vh - 60px);
        width: 100%;
    }
    
    /* Section Titles */
    .section-title h2 {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    
    .section-title p {
        font-size: 0.95rem;
        padding: 0 1rem;
    }
    
    /* Buttons */
    .btn {
        padding: 0.7rem 1.8rem;
        font-size: 0.85rem;
    }
    
    /* Services */
    .services {
        padding: 4rem 0;
    }
    
    .services-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* About Section */
    .about {
        padding: 4rem 0;
    }
    
    .about-content h2 {
        font-size: 2rem;
    }
    
    .about-content p {
        font-size: 1rem;
        padding: 0 0.5rem;
    }
    
    /* Contact Section */
    .contact {
        padding: 4rem 0;
    }
    
    .contact-info {
        padding: 1.5rem;
    }
    
    .contact-item {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 1rem;
    }
    
    .contact-item i {
        margin-bottom: 0.5rem;
        margin-right: 0;
    }
    
    .social-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    /* Footer */
    footer {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-col {
        margin-bottom: 1.5rem;
    }
    
    .footer-col h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    /* General Spacing Adjustments */
    .container {
        padding: 0 1rem;
    }
    
    .section-title {
        margin-bottom: 2rem;
    }
    
    /* Team Photos */
    .team-photos {
        grid-template-columns: 1fr;
    }
    
    .team-photos img {
        height: 200px;
    }
}

/* Extra Small Devices (below 400px) */
@media (max-width: 400px) {
    .hero h1 {
        font-size: 1.5rem;
    }
    
    .hero-tagline {
        font-size: 1rem;
    }
    
    .hero-btn {
        padding: 0.8rem 1.8rem;
        font-size: 0.8rem;
    }
    
    .section-title h2 {
        font-size: 1.7rem;
    }
    
    .service-box h3 {
        font-size: 1.2rem;
    }
    
    .service-box p {
        font-size: 0.95rem;
    }
}