/* ==========================================================================
   PAGE-SITEMAP.CSS — Styles du plan du site Sunshine Solar
   ========================================================================== */


/* =====================================================
   GRILLE PRINCIPALE DU PLAN DU SITE
   ----------------------------------------------------- */

.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

@media (max-width: 900px) {
  .sitemap-grid {
    grid-template-columns: 1fr;
  }
}


/* =====================================================
   CARTE DU SITEMAP
   ----------------------------------------------------- */

.sitemap-card {
  background: #ffffff;
  border-radius: 1.5rem;
  padding: 1.8rem;
  border: 1px solid #e5e7eb;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.04);
  transition: 0.25s ease;
}

/* Hover subtil premium */
.sitemap-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
}


/* =====================================================
   HEADER DE CHAQUE CARTE (icône + titre)
   ----------------------------------------------------- */

.sitemap-card-header {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1rem;
}

.sitemap-card-header h2 {
  margin: 0;
  font-size: 1.25rem;
  color: #111827;
}


/* Icône dans bulle */
.sitemap-card-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sitemap-card-icon img,
.sitemap-card-icon svg {
  width: 22px;
  height: 22px;
  opacity: 0.8;
}


/* =====================================================
   LISTE DES PAGES À L'INTÉRIEUR DES CARTES
   ----------------------------------------------------- */

.sitemap-pages {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}


/* Lien d'une page du sitemap */
.sitemap-page {
  display: flex;
  gap: 0.9rem;
  padding: 0.7rem 0.6rem;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.2s ease;
}

.sitemap-page:hover {
  background: #f9fafb;
}


/* Icône de chaque page */
.sitemap-page-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sitemap-page-icon svg,
.sitemap-page-icon img {
  width: 20px;
  height: 20px;
  color: #4b5563;
}


/* Texte de chaque page */
.sitemap-page-text {
  display: flex;
  flex-direction: column;
}

.sitemap-page-title {
  font-size: 0.98rem;
  font-weight: 600;
  color: #111827;
}

.sitemap-page-desc {
  font-size: 0.87rem;
  color: #6b7280;
  line-height: 1.45;
}


/* =====================================================
   CONSEIL ACCESSIBILITÉ (BLOC FINAL)
   ----------------------------------------------------- */

.sitemap-tip {
  margin-top: 3rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.1rem 1.3rem;
  border-radius: 1.2rem;
  background: #fff7ed;
  border: 1px solid #ffe9d5;
}

.sitemap-tip-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #ffedd5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sitemap-tip-icon img,
.sitemap-tip-icon svg {
  width: 22px;
  height: 22px;
  color: #f97316;
}

.sitemap-tip p {
  margin: 0;
  font-size: 0.95rem;
  color: #7c4512;
}
