/* =========================================
   PAGE: CONTACT
   SECTIONS:
   1) Section globale
   2) Conteneur
   3) Colonnes
   4) Texte / Titre / Email
   5) Icônes sociales (Instagram, TikTok, Facebook, YouTube)
   6) Formulaire
   7) Responsive
   8) Layout 2 colonnes (desktop) / 1 (mobile)
   NOTE: règles copiées telles quelles depuis ton CSS
   ========================================= */

/* 1) Section globale */
.contact-page .contact-section {
  padding: 4rem 1rem;
  background: url('/assets/images/contact-fond.jpg') no-repeat center/cover;
  color: #333;
}

/* 2) Conteneur */
.contact-page .contact-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

/* 3) Colonnes */
.contact-page .contact-text,
.contact-page .contact-form {
  flex: 1 1 460px; /* 2 colonnes, s’empile en mobile */
  min-width: 280px;
}

/* 4) Texte / Titre / Email */
.contact-page .contact-text h1 {
  font-size: 2.2rem;
  line-height: 1.2;
  margin: 0 0 1rem;
  color: #b30000;
}
.contact-page .contact-text p {
  font-size: 1.05rem;
  line-height: 1.6;
  margin: 0 0 1rem;
}
.contact-page .contact-email {
  margin-top: .5rem;
  font-weight: 600;
  color: #555;
}

/* 5) Icônes sociales (Instagram, TikTok, Facebook, YouTube) */
.contact-page .social-links.icons {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 12px;
}
.contact-page .social-links.icons a {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  text-decoration: none;
  color: #333;                 /* icône monochrome par défaut (currentColor) */
  background: #fff;            /* pastille douce */
  border: 1px solid #e6e6e6;
  transition:
    transform .18s ease,
    box-shadow .18s ease,
    color .18s ease,
    background .18s ease,
    border-color .18s ease;
}
.contact-page .social-links.icons a:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,.08);
  border-color: #d8d8d8;
}
/* Hovers teinte “marque” */
.contact-page .social-links.icons a.instagram:hover { color: #E4405F; }
.contact-page .social-links.icons a.tiktok:hover    { color: #000; }
.contact-page .social-links.icons a.facebook:hover  { color: #1877F2; }
.contact-page .social-links.icons a.youtube:hover   { color: #FF0000; }
/* Option compact mobile */
@media (max-width: 480px) {
  .contact-page .social-links.icons a { width: 40px; height: 40px; }
  .contact-page .social-links.icons svg { width: 22px; height: 22px; }
}

/* 6) Formulaire */
.contact-page .contact-form form {
  display: flex;
  flex-direction: column;
}
.contact-page .contact-form label {
  font-weight: 600;
  margin: 0 0 .5rem;
}
.contact-page .contact-form input,
.contact-page .contact-form textarea {
  margin: 0 0 1rem;
  padding: .85rem 1rem;
  border: 1px solid #d6d6d6;
  border-radius: 10px;
  font-size: 1rem;
  outline: none;
  background: #fff;
}
.contact-page .contact-form input:focus,
.contact-page .contact-form textarea:focus {
  border-color: #b30000;
  box-shadow: 0 0 0 3px rgba(179,0,0,.12);
}
.contact-page .contact-form button {
  align-self: start;
  background: #b30000;
  color: #fff;
  border: 0;
  padding: .9rem 1.4rem;
  border-radius: 10px;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s ease, transform .15s ease;
}
.contact-page .contact-form button:hover {
  background: #930000;
  transform: translateY(-1px);
}

/* 7) Responsive */
@media (max-width: 900px) {
  .contact-page .contact-content {
    gap: 1.5rem;
    padding: 1.25rem;
  }
  .contact-page .contact-text h1 {
    font-size: 2rem;
  }
}
@media (max-width: 600px) {
  .contact-page .contact-section { padding: 3rem 1rem; }
  .contact-page .contact-text h1 { font-size: 1.8rem; }
}
/* Centrage titre + icônes en mobile */
@media (max-width: 600px) {
  .contact-page .contact-text h1 { text-align: center; }
  .contact-page .social-links.icons { justify-content: center; }
}

/* 8) Layout 2 colonnes (desktop) / 1 (mobile) */
.contact-page .contact-content.two-col{
  display: grid;
  grid-template-columns: 1fr 1.25fr;   /* image | contenu */
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  background: rgba(255,255,255,0.95);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}
/* Colonne image */
.contact-page .contact-media img{
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}
/* Colonne contenu */
.contact-page .contact-main{
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
/* Titre */
.contact-page .contact-info h1{
  font-size: 2.2rem;
  line-height: 1.2;
  margin: 0 0 .75rem;
  color: #b30000;
}
/* Empilement mobile */
@media (max-width: 900px){
  .contact-page .contact-content.two-col{
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1.25rem;
  }
  .contact-page .contact-info h1{ text-align: center; }
  .contact-page .social-links.icons{ justify-content: center; }
}
