* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

:root {
    --noir: #000000;
    --blanc: #FFFFFF;
    --rouge: #D32F2F;
    --gris-fonce: #1A1A1A;
    --gris-clair: #F5F5F5;
    --or: #FFD700;
}

body {
    background-color: var(--noir);
    color: var(--blanc);
    overflow-x: hidden;
}

/* Hero Section */
.hero-origines {
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), 
                url('https://images.unsplash.com/photo-1580476264440-92a5d56d91a0?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80') no-repeat center;
    background-size: cover;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
}

.hero-title {
    font-size: 3.5rem;
    color: var(--blanc);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px var(--noir);
    text-transform: uppercase;
}

.hero-subtitle {
    color: var(--rouge);
    font-size: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.hero-origines {
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), 
                url('IMAGE/OR1.png') no-repeat center;
    background-size: cover;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
}

.section-title {
    
    color: var(--rouge);
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    border-bottom: 2px solid var(--rouge);
    padding-bottom: 1rem;
    display: inline-block;
    text-transform: uppercase;
}

h2{
    color: var(--or);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
}
.origine-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Section Maroc */
.section-maroc {
    margin-bottom: 4rem;
}

.maroc-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.drapeau {
    font-size: 4rem;
}

.section-subtitle {
    color: var(--or);
    font-size: 2rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.villes-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.ville-card {
    background: linear-gradient(135deg, var(--noir), var(--gris-fonce));
    border: 2px solid var(--rouge);
    border-radius: 10px;
    padding: 2rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.ville-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(211, 47, 47, 0.3);
}

.ville-title {
    color: var(--or);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ville-description {
    color: var(--blanc);
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Section Paris */
.section-paris {
    margin-top: 4rem;
}

.paris-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 1000px;
    margin: 3rem auto;
    padding: 2rem 0;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 6px;
    background-color: var(--rouge);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -3px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
    box-sizing: border-box;
    margin: 2rem 0;
}

.timeline-item:nth-child(odd) {
    left: 0;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-content {
    padding: 20px;
    background-color: var(--noir);
    border: 2px solid var(--rouge);
    border-radius: 10px;
    position: relative;
}

.timeline-year {
    color: var(--rouge);
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.timeline-desc {
    color: var(--blanc);
    line-height: 1.6;
}

/* Membres Fondateurs */
.fondateurs-section {
    padding: 3rem 2rem;
    background-color: var(--noir);
}

.fondateurs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.fondateur-card {
    background: linear-gradient(135deg, var(--gris-fonce), var(--noir));
    border: 1px solid var(--rouge);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s;
}

.fondateur-card:hover {
    transform: scale(1.05);
}

.fondateur-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 3px solid var(--rouge);
    margin: 0 auto 1rem;
    background: linear-gradient(45deg, var(--noir), var(--gris-fonce));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.fondateur-name {
    color: var(--or);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.fondateur-role {
    color: var(--rouge);
    font-size: 1rem;
    margin-bottom: 1rem;
}

/* Footer */
.footer {
    background-color: var(--noir);
    padding: 2rem;
    border-top: 3px solid var(--rouge);
    text-align: center;
}

.footer-text {
    color: var(--blanc);
    margin-bottom: 1rem;
}

.moto-icon {
    color: var(--rouge);
    font-size: 2rem;
    margin: 0 10px;
}

/* Boutons */
.btn {
    background-color: var(--rouge);
    color: var(--blanc);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    font-weight: bold;
    display: inline-block;
    text-decoration: none;
}

.btn:hover {
    background-color: var(--blanc);
    color: var(--noir);
}

//* ================= ANIMS ================= */
@keyframes fadeInUp{ from{opacity:0; transform: translateY(30px);} to{opacity:1; transform: translateY(0);} }
@keyframes pulse{
  0%,100%{ transform:scale(1); box-shadow: 0 0 20px rgba(211,47,47,.3); }
  50%{ transform:scale(1.05); box-shadow: 0 0 30px rgba(211,47,47,.5); }
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px){
  .hero-title{ font-size: 3.5rem; }
  .hero-subtitle{ font-size: 1.5rem; }
}

/* ========== MOBILE MENU FULLSCREEN ========== */
@media (max-width: 768px){
  .hamburger{ display:flex; }


  .nav-menu{
    position: fixed;
    top: 0;
    right: -100vw;
    width: 100vw;
    height: 100vh;
    background: #0a0a0a;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 5.2rem 1.6rem 2rem;
    gap: 0;
    transition: right .35s ease;
    z-index: 1190; /* au dessus overlay */
    overflow-y: auto;
  }

  .nav-menu.active{ right: 0; }

  .nav-link{
    padding: 1.1rem 0;
    border-bottom: 1px solid #222;
    border-radius: 0;
  }

  /* Dropdown mobile en mode "accordion" */
  .dropdown-content{
    position: static;
    border: none;
    border-radius: 0;
    background: #111;
    margin: 0.2rem 0 0.8rem 1rem;
    min-width: auto;
  }

  .dropdown.active .dropdown-content{ display:block; }

  .dropdown-content a{
    padding: 1rem 0;
    border-bottom: 1px solid #222;
  }

  /* HERO */
  .hero-minimal{ padding: 1rem; }
  .hero-title{ font-size: 2.6rem; }
  .hero-subtitle{ font-size: 1.2rem; }
  .cta-buttons{ flex-direction: column; }
  .btn{ width:100%; max-width: 320px; justify-content:center; }
  .section-title-simple h2{ font-size: 2.2rem; }
  .features-grid-simple{ grid-template-columns: 1fr; }
}

@media (max-width: 576px){
  .hero-title{ font-size: 2.2rem; }
  .hero-subtitle{ font-size: 1.05rem; }
  .feature-item{ padding: 2rem; }
}