/* Ligne horizontale : photo + boutons */


/* Photos */
.photo-block img {
    width: 320px;
    border-radius: 12px;
}

/* Colonne droite */
.contact-right {
    flex: 1;               /* ← prend toute la largeur disponible */
    display: flex;         /* ← colonne verticale */
    flex-direction: column;
    gap: 22px;             /* ← même espacement que tes lignes */
}

/* Introduction */
.contact-intro {
    font-size: 40px;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Ligne main → bouton */
.contact-line {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 22px 0;
	
}

/* Icône main */
.hand-icon {
    width: 45px;
    height: 45px;
}

/* Bouton */
.contact-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 18px;
    background: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(6px);
    border-radius: 12px;
    text-decoration: none;
    color: #1a3a78;
    font-size: 34px;
    font-weight: bold;
    transition: 0.2s ease;
}

.btn-icon {
    width: 40px;
    height: 40px;
}

.contact-btn:hover {
    background: rgba(255, 255, 255, 0.55);
    transform: translateY(-2px);
}

/* ===== INTRODUCTION ===== */
.intro-block {
    margin-bottom: 35px;
    width: 100%;
}


.intro-title {
    font-size: 40px;
    font-weight: bold;
    color: #1a3a78;
    margin-bottom: 20px;
    line-height: 1.3;
}

.intro-text {
    font-size: 34px;
    color: #1a3a78;
    line-height: 1.6;
}

/* ===== FORMULAIRE DE CONTACT ===== */

.form-title {
    font-size: 40px;
    font-weight: bold;
    color: #1a3a78;
    margin-top: 50px;
    margin-bottom: 10px;
    text-align: center; /* ← centré */
}

.form-desc {
    font-size: 30px;
    color: #1a3a78;
    margin-bottom: 25px;
    line-height: 1.5;
    max-width: 700px;
    text-align: center; /* ← centré */
    margin-left: auto;
    margin-right: auto;
}

/* ===== CONTENEUR DU FORMULAIRE ===== */

.contact-form {
    background: #f3e7d3;
    padding: 30px;
    border-radius: 15px;
    max-width: 700px;
    margin: 0 auto 60px auto;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

/* ===== LABELS ===== */

.contact-form label {
    display: block;
    font-size: 18px;
    font-weight: bold;
    color: #1a3a78;
    margin-top: 20px;
    margin-bottom: 5px;
}

/* ===== CHAMPS ===== */

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid #c9b8a5;
    background: #fff;
    font-size: 16px;
    color: #333;
    box-sizing: border-box;
}

.contact-form textarea {
    resize: vertical;
}

/* ===== BOUTON ENVOYER ===== */

.btn-submit {
    background: #5a3b2e;
    color: #fff;
    padding: 14px 25px;
    border: none;
    border-radius: 10px;
    font-size: 18px;
    font-weight: bold;
    margin-top: 25px;
    cursor: pointer;
    transition: 0.2s ease;
}

.btn-submit:hover {
    background: #3a241b;
    transform: translateY(-2px);
}

/* ===== WRAPPER GLOBAL ===== */
.contact-wrapper {
    width: 100%;        /* ← pleine largeur */
    max-width: none;    /* ← enlève la limite */
    margin: 40px auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    color: #1a3a78;
}


/* ===== EMAILS EN PLEINE LARGEUR ===== */
.email-full {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.email-title {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 20px;
}

.email-link {
    font-size: 34px;
    font-weight: bold;
    color: #1a3a78;
    text-decoration: underline;
}

/* PHOTO + COLONNE DE BOUTONS À DROITE */
.contact-block {
    display: flex;              /* ← place la photo et les boutons côte à côte */
    align-items: flex-start;    /* ← aligne en haut */
    gap: 40px;                  /* ← espace entre photo et boutons */
    width: 100%;                /* ← pleine largeur */
}

/* Colonne droite : les boutons */
.contact-content {
    display: flex;
    flex-direction: column;     /* ← les boutons s'empilent verticalement */
    gap: 22px;                  /* ← même espacement que tes lignes */
    flex: 1;                    /* ← prend toute la largeur disponible */
}
/* INTRODUCTION EN PLEINE LARGEUR */
.intro-full {
    width: 100%;
    text-align: center;
    margin-bottom: 40px;
}

.intro-full .intro-title {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 20px;
}

.intro-full .intro-text {
    font-size: 20px;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto; /* centre le texte */
}
/* CENTRAGE DU BLOC EMAIL */
.email-full {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;   /* ← centre tout le bloc */
    text-align: center;    /* ← centre le texte */
    gap: 22px;
}

/* CENTRER LES LIGNES MAIN → EMAIL */
.email-full .contact-line {
    display: flex;
    align-items: center;
    justify-content: center; /* ← centre main + lien */
    gap: 20px;
}

/* CENTRER LE TITRE */
.email-title {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center; /* ← centre le titre */
}

