@import url('https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.min.css');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Montserrat:wght@300;400;500;600&display=swap');

:root {
    /* Palette de couleurs */
    --color-gold: #D4AF37;       /* Or doux */
    --color-gold-light: #E9D087; /* Or doux clair */
    --color-cream: #F5F5F0;      /* Blanc cassé */
    --color-forest: #2C4A3C;     /* Vert forêt */
    --color-copper: #B87333;     /* Caramel cuivré */
    --color-dark: #1A1A1A;       /* Texte principal */
    --color-light: #FFFFFF;      /* Blanc pur */

    /* Espacement */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 2rem;
    --spacing-xl: 4rem;

    /* Border radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
}
.image-contact{
    background-image:url(../img/contact-image.jpg) ;
    width: 95%;
    height: 50vh;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    margin-top: 7%;
}
main{
    width: 95%;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    flex-direction: column;}

    .overlay-2 {
  position: absolute;
  display: flex;
    justify-content: center;
  top: 102px;
  left: 50px;
  width: 88%;
  height: 50vh;
  background-color: rgba(0, 0, 0, 0.338); /* Noir transparent */
  z-index: 1;
}
h1{
    color: var(--color-light);
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
}
body {
    font-family: 'Montserrat', sans-serif;
    color: var(--color-dark);
    background-color: var(--color-light);
    line-height: 1.6;
}
.titre-contact {
    text-align: center;
    position: relative;
    z-index: 2;
    margin-top: 20vh; /* Pour centrer verticalement approximativement */
}

.titre-contact h1,
.titre-contact p {
    color: var(--color-light);
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Ajoute une ombre pour meilleure lisibilité */
}

.titre-contact h1 {
    font-family: 'Playfair Display', serif;
    margin-bottom: var(--spacing-sm);
    font-size: 2.5rem;
}

.titre-contact p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
}
.sous-titre{
    display: flex;
    gap: 15px;
}
.sous-titre a {
    text-decoration: none;
    color: var(--color-gold);
    font-weight: bold;
}
/* Suppression de tout le CSS lié à la section de contact (formulaire, infos, etc.) */

.contact-section {
    padding: 80px 0;
    background-color: #f9f9f9;
    font-family: 'Segoe UI', Roboto, sans-serif;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.section-title {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg,#E9D087, #F5F5F0);
}

.contact-form-block {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
}

.form-group {
    position: relative;
    margin-bottom: 30px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px 0;
    font-size: 16px;
    border: none;
    border-bottom: 1px solid #ddd;
    outline: none;
    background: transparent;
    transition: all 0.3s;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group label {
    position: absolute;
    top: 10px;
    left: 0;
    color: #999;
    font-size: 16px;
    pointer-events: none;
    transition: all 0.3s;
}

.form-group input:focus ~ label,
.form-group input:valid ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:valid ~ label {
    top: -20px;
    font-size: 14px;
    color: #3498db;
}

.underline {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #E9D087, #F5F5F0);
    transition: all 0.3s;
}

.form-group input:focus ~ .underline,
.form-group textarea:focus ~ .underline {
    width: 100%;
}

.btn-send {
    background: linear-gradient(90deg, #D4AF37, #E9D087);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.btn-send:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}

.contact-infos-block {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
}

.contact-infos-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.contact-infos-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.info-icon {
    color: #3498db;
    margin-top: 3px;
}

.info-text h3 {
    margin: 0 0 5px 0;
    color: #2c3e50;
    font-size: 18px;
}

.info-text p {
    margin: 0;
    color: #7f8c8d;
}

.contact-socials {
    margin: 40px 0;
}

.contact-socials p {
    color: #7f8c8d;
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: white;
    background: #2c3e50;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

 /* a:hover {
    background: linear-gradient(90deg, #3498db, #2ecc71);
    transform: translateY(-3px);
} */

.contact-map {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.instagram-icon:hover {
    background: linear-gradient(
    45deg,
    #833AB4,  /* violet */
    #C13584,  /* rose */
    #E1306C,  /* rouge */
    #F77737,  /* orange */
    #FCAF45,  /* jaune */
    #FFDC80   /* clair */
  );
}
.twitter-icon:hover {
    background: linear-gradient(
    45deg,
    #1DA1F2,  /* bleu clair */
    #1B95E0,  /* bleu */
    #1A91DA   /* bleu foncé */
  );
}
.linkedin-icon:hover {
    background: linear-gradient(
    45deg,
    #0077B5,  /* bleu foncé */
    #00A0DC,  /* bleu clair */
    #00B0F0   /* bleu très clair */
  );
}
.facebook-icon:hover {
    background: linear-gradient(
    45deg,
    #3b5998,  /* bleu foncé */
    #4c69ba,  /* bleu */
    #5b7bd5   /* bleu clair */
  );
}
@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .contact-form-block,
    .contact-infos-block {
        padding: 30px;
    }
}