/* Fichier: contact.css */
/* Styles personnalisés pour la page de contact, basés sur Bootstrap */

body {
    font-family: 'Inter', sans-serif; /* Assurez-vous que cette police est chargée globalement */
    line-height: 1.6;
    color: #333; /* Couleur de texte générale */
}

/* Fond de la page */
.custom-page-bg {
    background-color: #f8f9fa; /* Très léger gris pour le fond */
}
.justified-text {
  text-align: justify;
}
/* Conteneur principal avec ombre */
.custom-container-shadow {
    max-width: 1000px; /* Largeur maximale pour le contenu */
    margin-left: auto;
    margin-right: auto;
    background-color: #ffffff; /* Fond blanc pour le contenu */
    border-radius: 12px; /* Coins arrondis */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08); /* Ombre douce */
}

/* Titre principal */
.main-title-color-green {
    color: #28a745; /* Vert Bootstrap success */
    font-weight: 700; /* Gras */
    font-size: 2.5rem; /* Taille de police adaptable */
}
@media (min-width: 768px) {
    .main-title-color-green {
        font-size: 3.5rem;
    }
}

/* Texte introductif */
.lead {
    color: #555;
}

/* Section "Envoyez-nous un message" */
.text-green {
    color: #28a745 !important; /* Vert Bootstrap */
}

.border-bottom-green {
    border-bottom: 2px solid rgba(40, 167, 69, 0.2); /* Bordure verte légère */
}

/* Labels de formulaire */
.form-label {
    font-weight: 600; /* Plus de gras pour les labels */
    color: #495057; /* Gris foncé */
}

/* Champs de formulaire et select */
.form-control {
    border-radius: 0.5rem; /* Coins légèrement arrondis pour les champs */
    border: 1px solid #ced4da; /* Bordure Bootstrap par défaut */
    padding: 0.75rem 1rem; /* Plus de padding */
    transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.form-control:focus {
    border-color: #80bdff; /* Couleur de focus Bootstrap */
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(0, 123, 255, 0.25); /* Ombre de focus Bootstrap */
}

/* Bouton d'envoi */
.btn-green {
    background-color: #28a745; /* Vert Bootstrap success */
    border-color: #28a745;
    color: #ffffff; /* Texte blanc */
}

.btn-green:hover, .hover-green-dark:hover {
    background-color: #218838; /* Vert plus foncé au survol */
    border-color: #1e7e34;
}

.btn-lg {
    padding: 0.8rem 1.5rem;
    font-size: 1.25rem;
}

.rounded-pill {
    border-radius: 50rem !important; /* Très arrondi */
}

.shadow-sm {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

/* Messages de l'application (JavaScript) */
#formMessage.alert {
    display: none; /* Initialement caché */
    margin-bottom: 1rem;
    border-radius: 0.5rem;
}

#formMessage.alert-success {
    background-color: #d4edda;
    border-color: #c3e6cb;
    color: #155724;
}

#formMessage.alert-danger {
    background-color: #f8d7da;
    border-color: #f5c6cb;
    color: #721c24;
}

#formMessage.alert-info {
    background-color: #d1ecf1;
    border-color: #bee5eb;
    color: #0c5460;
}


/* Bloc 3: Informations de contact */
.bg-light-green {
    background-color: #eafbea; /* Vert très clair personnalisé */
    border: 1px solid #c7e8cc; /* Bordure assortie */
}

.text-green-dark {
    color: #1b5e20; /* Vert foncé personnalisé pour les titres de blocs d'info */
}

.contact-list li i {
    font-size: 1.25rem; /* Taille des icônes */
}

.small-text {
    font-size: 0.9rem;
}

/* Bloc 4: Carte Google Maps */
.embed-responsive {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    overflow: hidden;
}
.embed-responsive-16by9::before {
    content: "";
    display: block;
    padding-top: 56.25%; /* 16:9 aspect ratio */
}
.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Utilitaires Bootstrap génériques */
.d-none { display: none !important; }
.my-5 { margin-top: 3rem !important; margin-bottom: 3rem !important; }
.py-5 { padding-top: 3rem !important; padding-bottom: 3rem !important; }
.p-4 { padding: 1.5rem !important; }
.p-md-5 { padding: 3rem !important; }
.mb-3 { margin-bottom: 1rem !important; }
.mb-4 { margin-bottom: 1.5rem !important; }
.mb-5 { margin-bottom: 3rem !important; }
.text-center { text-align: center !important; }
.text-muted { color: #6c757d !important; }
.mx-auto { margin-left: auto !important; margin-right: auto !important; }
.max-w-lg { max-width: 32rem; }
.transition { transition: all 0.3s ease-in-out; }
.h-100 { height: 100% !important; } /* Pour que les cartes aient la même hauteur dans la grille */
