/* RESET */
* {
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background:#0b1120;
  color:#e5e7eb;
  line-height:1.6;
}



/* LAYOUT */
.container {
  max-width:1100px;
  margin:auto;
  padding:60px 20px;
}

/* NAV */
.nav {
  display:flex;
  justify-content:space-between;
  padding:20px;
  border-bottom:1px solid rgba(255,255,255,0.08);
}

.nav a {
  color:#cbd5f5;
  margin-left:20px;
  text-decoration:none;
}

.pied a {
  color:#888888;
  margin-left:10px;
  text-decoration:none;
  font-size:0.8em;
}

/* HERO */
/*
.hero {
  position:relative;
  padding:120px 20px;
  text-align:center;
  background:url('../images/bg-hero.jpg') center/cover no-repeat;
}

.hero::after {
  content:"";
  position:absolute;
  inset:0;
  background:rgba(11,17,32,0.75);
}

.hero * {
  position:relative;
}

.hero h1 {
  font-size:2.8rem;
}

.hero p {
  margin-top:20px;
  color:#9ca3af;
}
*/
.hero {
  position: relative;
  padding:120px 20px;
  text-align:center;
  background:url('../images/bg-hero.jpg') center/cover no-repeat;
}

/* overlay */
.hero::after {
  content:"";
  position:absolute;
  inset:0;
  background:rgba(11,17,32,0.65);
  z-index:1;
}

/* contenu */
.hero .content {
  position:relative;
  z-index:2;
}

/* GRID */
.grid {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:20px;
}

/* CARD */
.card {
  background:#111827;
  border:1px solid rgba(255,255,255,0.08);
  padding:20px;
  border-radius:12px;
}
.card img {
  /*width:100%;*/  
  max-height:120px;
  width:auto;
  border-radius:8px;
  margin-bottom:10px;
}

/* TITRES */
h2 {
  margin-bottom:20px;
}

/* FOOTER */
footer {
  border-top:1px solid rgba(255,255,255,0.08);
  padding:40px;
  color:#9ca3af;
}