/* ===== Reset & base ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  background: #0a0a0a;
  color: #f2f2f2;
  line-height: 1.6;
}

/* ===== Header minimal ===== */
header {
  text-align: center;
  padding: 40px 20px;
  background: #0a0a0a;
}
header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 10px;
}
header p {
  font-size: 1.1rem;
  color: #bbb;
  margin-bottom: 20px;
}
.btn {
  display: inline-block;
  padding: 10px 18px;
  background: #e50914;
  color: #fff;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s, transform 0.2s;
}
.btn:hover {
  background: #b00610;
  transform: scale(1.05);
}

/* ===== Sections ===== */
main {
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
}
section {
  margin-bottom: 60px;
}
section h2 {
  font-size: 1.6rem;
  margin-bottom: 25px;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  border-bottom: 1px solid #222;
  padding-bottom: 8px;
}

/* ===== Texte "À propos" ===== */
.about p {
  font-size: 1.1rem;
  color: #ccc;
  max-width: 800px;
  margin: auto;
  text-align: center;
  line-height: 1.8;
}

/* ===== Galerie ===== */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
}
.grid img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  cursor: pointer;
  object-fit: cover;
  transition: transform 0.4s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.6);
}
.grid img:hover {
  transform: scale(1.04);
  box-shadow: 0 0 25px rgba(229, 9, 20, 0.6); /* glow rouge */
}

/* ===== Contact ===== */
.contact {
  text-align: center;
}
.contact p, .contact a {
  font-size: 1.1rem;
  color: #bbb;
}
.contact a {
  color: #e50914;
  text-decoration: none;
  font-weight: 600;
}
.contact a:hover {
  text-decoration: underline;
  color: #ff1f1f;
}

/* ===== Footer ===== */
footer {
  text-align: center;
  padding: 25px;
  background: #0a0a0a;
  font-size: 0.9rem;
  color: #666;
  border-top: 1px solid #111;
}