/* ---- Page accueil ---- */
.head {
  padding: 10px 20px;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  font-family: var(--font-title);
  box-shadow: 2px 4px 9px rgba(0,0,0,0.2);
  background-color: rgb(255 255 255 / 20%);
}
.head h1 {
  font-size: clamp(20px, 4vw, 40px);
  text-align: center;
  font-family: var(--font-title);
  color: #000;
  margin: 1% auto;
}
.head p { font-size: 16px; color: #000; text-align: center; }
.head .logo-sym { font-size: 48px; color: var(--gold); }

/* ---- Flexbox de boîtes ---- */
.flexbox {
  display: flex;
  width: 95%;
  margin: 0 auto;
  gap: 0 1.5rem;
}
.box {
  width: 30%;
  height: 70vh;
  margin: 3.5% auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: rgb(255 255 255 / 20%);
  cursor: pointer;
  text-decoration: none;
}
.box h2 {
  font-size: 40px;
  font-family: var(--font-title);
  font-weight: 400;
  color: white;
  margin: 1% 0;
}
.box .arrow { font-size: 35px; color: #ffffff; }

@media (max-width: 768px) {
  .flexbox { flex-direction: column; }
  .box { width: 88%; height: auto; padding: 40px 20px; margin: 8px auto; }
  .head { flex-direction: column; }
  .head h1 { font-size: 20px; }
}
