/* =============================================================
   ALTURO MERCH — FEUILLE DE STYLES
   -------------------------------------------------------------
   C'est le SEUL fichier que vous pouvez modifier.
 ============================================================ */

/* Conteneurs */
.section-inner,
.header-inner,
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
#produits .section-inner {
  max-width: 1800px;
}
.section {
  padding: 5rem 0;
}
.section-title {
  font-family: var(--police-titre);
  font-size: clamp(2.5rem, 3vw, 1.75rem);
  line-height: 3rem;
  color: var(--couleur-accent);
  margin-bottom: 2.5rem;
}


/* =============================================================
   4. EN-TÊTE (HEADER)
   ============================================================= */
.site-header {
  background-color: white;
  position: sticky;
  top: 0;
  z-index: 100;
  }

.header-inner {
  display: flex;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.header-logo {
  height: 48px;
  width: auto;
  display: block;
}



/* =============================================================
   5. HERO (BANNIÈRE PRINCIPALE)
   ============================================================= */
.section--hero {
  background-image: url('images/wallpapers-some-very-high-resolution-images-of-the-games-v0-6mn835327pxe1.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1800px;
  text-align: center;
  Color: white;
  h1 { font-size: 60px;
    Color: rgb(212, 170, 0);
text-shadow:
2px 0 #fff, -2px 0 #fff,
0 2px #fff, 0 -2px #fff,
1px 1px #fff, -1px -1px #fff,
1px -1px #fff, -1px 1px #fff;
  }
.hero-cta {
  display: inline-block;
  padding: 0.75rem 2rem;
  border-radius: 4px;
  font-weight: bold;
  letter-spacing: 0.05em;
  font-size: 0.95rem;
  background-color: #000000;
  Color: white
}
.hero-universe-link {
  color: rgb(255, 196, 0);
}

/* =============================================================
   6. SECTION À PROPOS
   ============================================================= */
.section--about .section-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  h2 {
  color: rgb(235, 217, 22)
  }
}



/* =============================================================
   7. SECTION COLLECTIONS
   ============================================================= */
/* Grille à 3 colonnes */
.collections-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
}
.collection-card {
  overflow: hidden;
}

/* Zone image / logo */
.collection-card-image {
  aspect-ratio:     16 / 9;
  overflow:         hidden;
  display:          flex;
  align-items:      center;
  justify-content:  center;
  background-color: #000;
}
.collection-logo {
  object-fit: cover;
}


/* =============================================================
   8. SECTION PRODUITS / MEILLEURS VENDEURS
   ============================================================= */
.products-intro {
  text-align: center;
  font-style: italic;
}

/* Grille des 5 cartes produits */
.bestsellers-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}
.product-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.product-card-rank {
  position:absolute;
}
.product-rank-number {
  display: block;
}
.product-card-image {
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Intérieur de la carte */
.product-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.5rem;
}
.product-card:nth-child(odd){
  background-color: #fff;
}
.product-card:nth-child(even){
  background-color: #f1f1f1;
}
.product-spec::before {
  content: "→";
  left: 0;
  color:red;
}


/* =============================================================
   9. SECTION MISSION
   ============================================================= */
.section--mission .section-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
  align-items: center;
}
.mission-text {
  max-width: 35ch;
}
.mission-placeholder{
  background-image: url('images/mission.jpg');
  min-height: 400px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  align-self: stretch;
}


/* =============================================================
   10. PIED DE PAGE (FOOTER)
   ============================================================= */
.site-footer {

}
.footer-inner {

.footer-copyright {
  text-align: center;
  Background-color: rgb(229, 168, 0)
}


/* =============================================================
   11. RESPONSIVE
   ============================================================= */
/* --- Tablette --- */
@media (max-width: 900px) {
  .section--about .section-inner,
  .section--mission .section-inner {
    grid-template-columns: 1fr;
  }
  .collections-grid {
    grid-template-columns: 1fr;
  }
  .bestsellers-grid {
    grid-template-columns: 1fr 1fr;
  }
  .section--hero {
    height: auto;
    min-height: 80vh;
  }
}

/* --- Mobile --- */
@media (max-width: 600px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .nav-list {
    gap: 1rem;
  }
  .section {
    padding: 3rem 0;
  }
  .bestsellers-grid {
    grid-template-columns: 1fr;
  }
  .product-rank-number {
    font-size: 1.75rem;
  }