/* =========================================
   CONTACT (contact.html)
   ========================================= */

.contact-section {
  margin-top: var(--space-xl);
}

.contact-info-centered {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  padding: 40px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-info-centered h2 {
  font-size: 32px;
  margin-bottom: var(--space-xl);
}

.info-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  margin-bottom: 40px;
  width: 100%;
}

.info-block {
  text-align: center;
  width: 100%;
  max-width: 400px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.info-block:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.info-block h4 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
  color: var(--color-accent);
  font-weight: 600;
}

.info-block a,
.info-block p {
  font-size: 1.2rem;
  color: #fff;
  text-decoration: none;
  line-height: 1.4;
  display: inline-block;
}

.info-block a {
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}

.info-block a:hover {
  border-bottom-color: rgba(255, 255, 255, 0.5);
}

/* Réseaux sociaux */
.social-section {
  margin-top: var(--space-xl);
  padding-top: var(--space-xl);
  border-top: 2px solid var(--color-border);
}

.social-section h3 {
  font-size: 24px;
  margin-bottom: var(--space-md);
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.social-links a {
  display: inline-block;
  padding: 12px 24px;
  color: var(--color-text);
  text-decoration: none;
  transition: all 0.3s;
}

.social-links a img {
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.social-links a:hover img {
  opacity: 0.75;
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .contact-info-centered { padding: 24px; }
  .info-grid { grid-template-columns: 1fr; gap: 24px; }
}
