/* CSS Document */


/*  janvier 2026  nouvelle version */

  :root {
    --bg: #f6f7fb;
    --text: #1f1f25;
    --muted: #6b6b76;
    --primary: #5a3fd4;
    --primary-dark: #3e2a9c;
    --card: #ffffff;
    --border: rgba(0,0,0,0.08);
    --shadow: 0 12px 30px rgba(0,0,0,0.08);
    --radius: 18px;
	--primary-Violet: #9595FF;
  }

  * { box-sizing: border-box; margin: 0; padding: 0; }
  body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
  }

  /* ===== Navbar ===== */
 #menu {
    position: fixed;
    top: 0; left: 0; right: 0;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
	margin: auto;
  }

  .logo {
    font-weight: 800;
    color: var(--primary);
    font-size: 1.2rem;
    letter-spacing: 0.5px;
  }


  /* ===== Hero ===== */
  .hero {
    margin-top: 0px;
    background: linear-gradient(135deg, rgba(90,63,212,0.25), rgba(255,255,255,0.7));
    padding: 4rem 1.2rem 2rem;
  }
  
    .hero-R {
    margin-top: 0px;
    background: linear-gradient(135deg, rgba(153, 49, 52, 0.4), rgba(187, 176, 236, 0.7));
    padding: 4rem 1.2rem 2rem;
  }
  
     .hero-N {
    margin-top: 0px;
    background: linear-gradient(135deg, rgba(153, 49, 52, 0.4), rgba(187, 176, 236, 0.7));
    padding: 4rem 1.2rem 2rem;
  }
  
  .hero-inner {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
  }
  .hero h1 {
    font-size: 2.6rem;
    margin-bottom: 1rem;
  }
  .hero p {
    color: var(--muted);
    margin-bottom: 1.2rem;
  }
  .btn {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    padding: 0.9rem 1.4rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
  }
  .btn:hover { background: var(--primary-Violet); }

  .hero-img {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
  }
  .hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* ===== Sections ===== */
  .section {
    padding: 3rem 1.2rem;
  }
  .section-inner {
    max-width: 1200px;
    margin: auto;
  }
  .section-title {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  .section-subtitle {
    color: var(--muted);
    margin-bottom: 1.5rem;
  }

  /* ===== Grid ===== */
  .grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.8rem;
  }
  .card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.6rem;
    box-shadow: var(--shadow);
  }
  .card h3 {
    margin-bottom: 0.8rem;
  }
  .card p { color: var(--muted); }

  .img-card img {
    width: 100%;
    border-radius: var(--radius);
    object-fit: cover;
  }

  /* ===== Lists ===== */
  ul {
    margin-left: 1.2rem;
    color: var(--muted);
  }

   /* ===== Responsive ===== */
  @media (max-width: 900px) {
    .hero-inner, .grid { grid-template-columns: 1fr; }
    .hero h1 { font-size: 2.2rem; }

}