.logo {

    position: fixed;
    top: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
    height: 35mm; 
    display: flex;
    align-items: center;
  text-decoration: none;  
  text-align: center;
    justify-content: center;
    font-family: "Bowlby One", sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: #111;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  }
  



  /* Base */
  body {
    margin: 0;
    font-family: Arial, sans-serif;
  background: linear-gradient(to bottom right, #D66D75, #FFA0DC);
    color: #333;
  
    padding-top: 132px; /* hauteur du header */
  }

/* ============================= */
/* CONTENEUR GLOBAL */
/* ============================= */
.contact-container {
  max-width: 1100px;
  margin: 80px auto;
  padding: 0 20px;
  font-family: 'Segoe UI', sans-serif;
}

/* ============================= */
/* INTRO */
/* ============================= */
.contact-intro {
  text-align: center;
  margin-bottom: 50px;
}

.contact-intro h2 {
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}

.contact-intro p {
  font-size: 15px;
  color: #fffefe;
  max-width: 600px;
  margin: auto;
}

/* ============================= */
/* CONTENU */
/* ============================= */
.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

/* ============================= */
/* FORMULAIRE */
/* ============================= */
#contactForm {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

#contactForm label {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #333;
}

#contactForm input,
#contactForm select,
#contactForm textarea {
  width: 90%;
  padding: 12px 14px;
  margin-bottom: 18px;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-size: 14px;
  background: #fff;
  transition: border 0.3s, box-shadow 0.3s;
}

#contactForm textarea {
  min-height: 120px;
  resize: vertical;
}

#contactForm input:focus,
#contactForm select:focus,
#contactForm textarea:focus {
  outline: none;
  border-color: #ff7bbd;
  box-shadow: 0 0 0 3px rgba(255, 123, 189, 0.2);
}

/* ============================= */
/* BOUTON */
/* ============================= */
#contactForm button {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(135deg, #ff7bbd, #ff4fa0);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

#contactForm button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 79, 160, 0.4);
}

/* ============================= */
/* INFOS */
/* ============================= */
.contact-info {
  background: rgba(255, 255, 255, 0.85);
  border-radius: 12px;
  padding: 22px 24px;
  max-width: 420px;
  color: #2c2c2c;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  justify-content: center; /* vertical */
 

}

/* Texte principal */
.contact-info h5 {
  font-size: 14px;
  font-weight: normal;
  line-height: 1.6;
  text-align: justify;
  margin-bottom: 18px;
}

/* Titre Informations */
.contact-info h3 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
  border-bottom: 2px solid #ff7fbf; /* rappel du rose du site */
  display: inline-block;
  padding-bottom: 4px;
}

/* Paragraphes info */
.contact-info p {
  font-size: 13px;
  line-height: 1.5;
  margin-bottom: 8px;
}

/* Email mis en valeur */
.contact-info p strong {
  color: #ff4fa0;
  font-weight: bold;
}

/* Texte de conclusion */
.contact-info h4 {
  margin-top: 16px;
  font-size: 13px;
  font-weight: normal;
  line-height: 1.5;
  text-align: justify;
  color: #444;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-info {
    max-width: 100%;
    padding: 18px;
  }

  .contact-info h5,
  .contact-info h4 {
    font-size: 13px;
  }

  .contact-info h3 {
    font-size: 15px;
  }
}

/* Footer */
.footer {
  text-align: center;
  padding: 20px;
  font-size: 13px;
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */
@media (max-width: 900px) {
  .contact-content {
    grid-template-columns: 1fr;
  }

  .contact-intro h2 {
    font-size: 26px;
  }
}