/* ------------------------------ */
/*        PALETTE GLOBALE         */
/* ------------------------------ */

:root {
  --bg: #000;
  --text: #fff;
  --text-dim: rgba(255,255,255,0.75);
  --pink: #ff2bd6;
  --pink-glow: 0 0 12px #ff2bd6, 0 0 24px #ff2bd6;
  --radius: 10px;
  --transition: 0.25s ease;
  font-family: 'Poppins', sans-serif;
}

body {
  background: var(--bg);
  color: var(--text);
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
}

/* ------------------------------ */
/*            HEADER              */
/* ------------------------------ */

/* HEADER GLOBAL */
header {
  width: 100%;
  padding: 20px 0;
  background: rgba(15, 15, 15, 0.6);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}

/* LOGO CENTRÉ */
.header-top {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}

.logo {
  height: 90px;
  width: auto;
}

/* NAVIGATION CENTRÉE */
.header-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

nav {
  display: flex;
  gap: 22px;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  opacity: 0.85;
  transition: 0.25s ease;
}

nav a:hover {
  opacity: 1;
}

/* HAMBURGER */
.hamburger {
  display: none;
  font-size: 2rem;
  cursor: pointer;
  position: absolute;
  right: 20px;
}

/* MOBILE */
@media (max-width: 800px) {
  nav {
    display: none;
  }

  .hamburger {
    display: block;
  }
}


/* ------------------------------ */
/*             HERO               */
/* ------------------------------ */

.hero {
  text-align: center;
  padding: 80px 20px;
}

.hero img {
  width: 100%;
  max-width: 900px;
  height: auto;
  display: block;
  margin: auto;
}

/* ------------------------------ */
/*           PICTO GRID           */
/* ------------------------------ */

.picto-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 40px;
  max-width: 900px;
  margin: auto;
  padding: 60px 20px;
  text-align: center;
}

.picto {
  width: 60px;
  height: 60px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin: auto;
  filter: drop-shadow(0 0 8px #ff2bd6);
}

.picto-label {
  margin-top: 12px;
  font-size: 0.95rem;
  color: var(--text-dim);
}

/* ------------------------------ */
/*             BUTTONS            */
/* ------------------------------ */

.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: var(--radius);
  background: var(--pink);
  color: #000;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: var(--pink-glow);
}

.btn:hover {
  transform: scale(1.05);
}

/* ------------------------------ */
/*             CARDS              */
/* ------------------------------ */

.card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 24px;
  transition: var(--transition);
}

.card:hover {
  border-color: var(--pink);
  box-shadow: var(--pink-glow);
}

/* ------------------------------ */
/*             FOOTER             */
/* ------------------------------ */

footer {
  text-align: center;
  padding: 40px 20px;
  color: var(--text-dim);
  font-size: 0.85rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

/* ------------------------------ */
/*           RESPONSIVE           */
/* ------------------------------ */

@media (max-width: 700px) {
  header {
    flex-direction: column;
    gap: 20px;
  }

  nav a {
    margin: 0 12px;
  }
}
