/**
* Theme Name: Iconique Child
* Description: This is a child theme of Iconique.
* Author: <a href="https://cmsmasters.net/">cmsmasters</a>
* Template: iconique
* Version: 1.1.0
* Tested up to: 6.6
* Requires PHP: 7.4
* License:
* License URI:
* Text Domain: iconique-child
* Copyright: cmsmasters 2025 / All Rights Reserved
*/


/* Importer la police Alexandria */
@import url('https://fonts.googleapis.com/css2?family=Alexandria:wght@400;700&display=swap');

.wpcf7 {
  font-family: 'Alexandria', sans-serif;
  color: #fff;
  margin-left: 7px;
	
}

/* Colonnes */
.form-columns {
  display: flex;
 gap: 20px; 
 /* gap: 250px;	*/
  flex-wrap: wrap;
}

.form-columns .column {
  flex: 1;
  min-width: 200px;
}

.full-width {
  /* margin-top: 20px; */
  min-width: 200px;
}

/* Labels */
.wpcf7 label {
  display: block;
  margin-bottom: 0px;
  color: #fff;
  font-weight: 700;
  text-align: left;
}

/* Champs */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 textarea {
  width: 100%;
  padding: 10px 40px 10px 40px; /* espace pour icône */
  margin-bottom: 0px;
  background-color: #111 !important;
  border: 1px solid #555;
  border-radius: 8px;
  color: #fff;
  font-family: 'Alexandria', sans-serif;
}

/* Icônes */
.wpcf7 .icon-user {
  background: url('https://cdn.jsdelivr.net/gh/feathericons/feather/icons/user.svg') no-repeat 10px center !important;
  background-size: 20px !important;
}

.wpcf7 .icon-whatsapp {
  background: url('https://upload.wikimedia.org/wikipedia/commons/6/6b/WhatsApp.svg') no-repeat 10px center !important;
  background-size: 20px !important;
}

.wpcf7 .icon-instagram {
  background: url('https://upload.wikimedia.org/wikipedia/commons/a/a5/Instagram_icon.png') no-repeat 10px center !important;
  background-size: 20px !important;
}

.wpcf7 .icon-email {
  background: url('https://cdn.jsdelivr.net/gh/feathericons/feather/icons/mail.svg') no-repeat 10px center !important;
  background-size: 20px !important;
}

.wpcf7 .icon-of {
  background: url('https://upload.wikimedia.org/wikipedia/commons/3/3f/OnlyFans_logo_2020.svg') no-repeat 10px center !important;
  background-size: 20px !important;
}

/* Bouton */
.submit-container {
  text-align: center;
  margin-top: 20px;
}

.wpcf7 input[type="submit"] {
  background-color: #f1b4a6; /* or gold #FFD700 */
  color: #000;
  padding: 12px 30px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-size: 16px;
  font-family: 'Alexandria', sans-serif;
  transition: background-color 0.3s;
}

.wpcf7 input[type="submit"]:hover {
  background-color: #f3a998;
}
