/* Styles pour le corps de la page */
html {
    font-size: 16px;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #e2e2e2;
    margin: 0;
    padding: 0;
    color: #333;
}

/* Styles pour l'en-tête */
header {
    background-color: #ffffff;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    height: 200px;
}

header p {  
    font-size: 3rem;
    color: #74458a;
    font-family: 'Futura', sans-serif;
}

header img {
    max-width: 200px;
    height: auto;
}

.containerHorizontal {
    display: flex;
    align-items: flex-end; /* Aligne les items en haut (peut être ajusté selon vos besoins) */
    justify-content: space-between; /* Espace les items de manière égale (peut être ajusté selon vos besoins) */
    gap: 10px;
}

.logoAlignH {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logoAlignH > div > img {
    margin-right: 40px;
}

/* Styles pour les titres */
h1, h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
    font-family: 'Futura', sans-serif;
}

h2 {
    font-size: 2rem;
    color: #333;
    margin-top: 20px;
}

h5 {
    font-size: 1rem;
    text-decoration: underline;
}

/* Styles pour la navigation */
nav {
    background-color: #663399;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    font-size: 1.5rem;
}

nav ul {
    list-style: none;
    padding: 0;
}

nav li {
    display: inline;
    margin: 0 10px;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

/* Styles pour le contenu principal */
main {
    max-width: 80%; 
    margin: 3% auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    color: #333;
    text-align: justify;
    display: flex;
}

/* Styles pour les contenus */
.margeParagraphe, .imgPortrait {
    flex: 1;
    margin: 10px;
}

.imgPortrait img {
    max-width: 100%;
}

/* Styles spécifiques pour la page "presentation" */
.imageContenu {
    max-width: 300px;
    height: auto;
}

.imageContenuAlignG {
    max-width: 300px;
    height: auto;
    float: left;
    margin-right: 20px;
}

.TextAlignD {
    width: 66%;
    float: right;
    margin-top: 3%;
}

.imageContenuLong {
    height: auto;
    width: 100%;
}

/* Styles pour les boutons en ligne */
.presentation-links {
    list-style: none;
    padding: 0;
    text-align: center;
}

.presentation-links li {
    display: inline;
    margin-right: 10px;
}

.button-link {
    padding: 10px 20px;
    background-color: #6c3586;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.button-link:hover {
    background-color: #912ac0;
}

/* Styles pour le pied de page */
footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    text-align: center;
    padding: 10px;
    background-color: #74b385;
    color: #333;
    padding: 20px;
}

/* Styles spécifiques à la page du formulaire */
.contact-page {
    padding: 20px; /* Ajoute du padding à l'ensemble de la section main */
    display: flex;
    flex-direction: column;
}

.contact-page .contact-form {
    max-width: 100%;
    width: 100%;
    margin-top: 20px;
}

.contact-page .contact-map {
    width: 100%;
    max-width: 100%;
    text-align: center;
}

.contact-page .contact-global {
    flex-direction: column;
}

/* Styles pour le formulaire de contact */
.contact-global {
    display: flex;
    justify-content: space-between;
}

.contact-form {
    flex: 1;
    max-width: 45%;
    margin-top: 20px;
}

.contact-map {
    flex: 1;
    max-width: 45%;
    text-align: center;
    position: relative;
    padding-bottom: 75%; /* Ceci est le ratio d'aspect */
    height: 0;
    overflow: hidden;
    margin: 10px;
}

#google-map {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
}

#google-map iframe {
    width: 100% !important;
    height: 100% !important;
}

.contact-form label {
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
    color: #333;
    text-align: left;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: calc(100% - 40px); /* Ajuste la largeur pour inclure la marge */
    padding: 10px;
    margin-bottom: 20px;
    margin-left: 20px; /* Ajoute une marge à gauche */
    margin-right: 20px; /* Ajoute une marge à droite */
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
    box-sizing: border-box; /* Inclut le padding et la bordure dans la largeur totale */
}

.contact-form textarea {
    resize: vertical;
}

.contact-form input[type="submit"] {
    background-color: #FF6B6B;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 1.2rem;
    border-radius: 5px;
    cursor: pointer;
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
}

.contact-form input[type="submit"]:hover {
    background-color: #FF4F4F;
}

/* Styles pour l'image d'en-tête */
.header-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}


.tarif {
    display: flex;
    justify-content: space-between;
    margin: 20px;
}

.text-tarif, .imag-tarif {
    width: 50%;
}

.text-tarif {
    margin-right: 10px;
}

.image-tarif {
    margin-left: 10px;
}
.diamond {
    color: #74b385;
}
.insecable {
    white-space: nowrap;
}