﻿/* =========================
   STYLE GÉNÉRAL
========================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background-color: #f4f4f4;
  color: #222;
  line-height: 1.6;
  padding: 20px;
}
html {
    scroll-behavior: smooth;
}

/* =========================
   TITRES
========================= */

h1 {
  text-align: center;
  margin: 50px 0;
  font-size: 40px;
  letter-spacing: 2px;
  color: #BFBFBF
}

h2 {
  margin-top: 40px;
  margin-bottom: 15px;
  font-size: 28px;
  border-bottom: 3px solid #1c69d4; /* bleu BMW */
  display: inline-block;
  padding-bottom: 5px;
}

/* =========================
   LOGO BMW
========================= */

#BMW {
  text-align: center;
  margin-top: 20px;
}

#BMW img {
  width: 180px;
  height: auto;
}
img {
  max-width: 75%;
  height: auto;
}


/* =========================
   SOMMAIRE
========================= */

ul {
  margin-left: 40px;
  margin-top: 15px;
}

ul li {
  margin: 8px 0;
  font-size: 18px;
}

/* =========================
   CONTENU TEXTE
========================= */

p {
  margin: 50px 0;
  font-size: 17px;
  text-align: justify;
}

/* =========================
   SECTIONS
========================= */

section {
  background-color: white;
  padding: 25px;
  margin: 30px auto;
  max-width: 900px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* =========================
   LIENS
========================= */

a {
  color: #1c69d4;
  text-decoration: none;
  font-weight: bold;
}

a:hover {
  text-decoration: underline;
}
