/* ═══════════════════════════════════════════════════════
   CORRECTIONS PAGE À PROPOS - Layout photo + texte
   ═══════════════════════════════════════════════════════ */

/* Assurer que les grilles de valeurs s'affichent correctement */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.2rem;
  margin: 2rem 0;
}

.value-card {
  background: var(--dark3, #111626);
  border: 1px solid var(--border, #1c2437);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.value-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 169, 110, 0.3);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.value-card .icon {
  font-size: 2.5rem;
  margin-bottom: 0.8rem;
  display: block;
}

.value-card h3 {
  font-size: 1.1rem;
  color: var(--gold, #c9a96e);
  margin: 0 0 0.6rem;
  font-weight: 600;
}

.value-card p {
  color: #b8c7e0;
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 0;
}

/* Correction pour la section héro */
.hero {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  overflow: hidden;
  margin: 1rem 0 2rem;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--bg, none) center/cover no-repeat;
  filter: brightness(0.4);
  z-index: 0;
}

.hero-overlay {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 2rem;
  max-width: 800px;
}

.hero-overlay h1 {
  font-family: 'DM Serif Display', serif;
  font-size: 2.8rem;
  color: #fff;
  margin: 0 0 0.8rem;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
}

.hero-overlay p {
  font-size: 1.15rem;
  color: #e9eef7;
  margin: 0;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
}

/* Méthodes de paiement */
.payment-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.payment-method {
  background: rgba(201, 169, 110, 0.04);
  border: 1px solid rgba(201, 169, 110, 0.15);
  border-radius: 10px;
  padding: 1rem;
  text-align: center;
  transition: background 0.2s, border-color 0.2s;
}

.payment-method:hover {
  background: rgba(201, 169, 110, 0.08);
  border-color: rgba(201, 169, 110, 0.25);
}

.payment-method-icon {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.payment-method-name {
  font-size: 0.88rem;
  color: #b8c7e0;
  line-height: 1.4;
}

/* Badge VTC */
.vtc-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(201, 169, 110, 0.1);
  border: 1px solid rgba(201, 169, 110, 0.3);
  border-radius: 8px;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gold, #c9a96e);
}

.vtc-badge-icon {
  font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-overlay h1 {
    font-size: 2.2rem;
  }
  
  .hero-overlay p {
    font-size: 1rem;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .payment-methods {
    grid-template-columns: repeat(2, 1fr);
  }
}
