/* Style spécifique pour ce formulaire */
.form-reservation {
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
}

.form-reservation label {
    display: block;
    margin-bottom: 1.5rem;
    font-weight: 500;
    color: #333;
    font-size: 20px;
}

.form-reservation br{
    display:none;
}

.form-reservation input[type="text"],
.form-reservation input[type="email"],
.form-reservation textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    transition: border-color 0.3s ease;
}

.form-reservation input[type="text"]:focus,
.form-reservation input[type="email"]:focus,
.form-reservation textarea:focus {
    outline: none;
    border-color: #046bd2; /* Couleur d'accent */
    box-shadow: 0 0 0 1px rgba(4, 107, 210, 0.1);
}

.form-reservation textarea {
    min-height: 150px;
    resize: vertical;
}

.form-reservation input[type="submit"] {
    background-color: #79B7A6;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.form-reservation input[type="submit"]:hover {
    background-color: #4DA1A9;
}

/* Messages d'erreur */
.form-reservation .wpcf7-not-valid-tip {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: -1rem;
    margin-bottom: 1rem;
}

.form-reservation .wpcf7-response-output {
    margin: 2rem 0 0;
    padding: 1rem;
    border-radius: 6px;
    text-align: center;
}

/* Animation au focus */
.form-reservation input,
.form-reservation textarea {
    transform: translateY(0);
    transition: transform 0.2s ease;
}

.form-reservation input:focus,
.form-reservation textarea:focus {
    transform: translateY(-2px);
}

.form-reservation span{
    margin-top: 10px;
}

/* POUR AFFICHAGE DES ACTIVITES  */
/* Style de la carte d'activité */
/* Carte principale - structure de base */
.activite-card {
    background: #f8f8f8;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Conteneur de l'image - taille fixe et centrage */
.activite-image {
    width: 100%;
    height: 250px; /* Hauteur fixe pour toutes les images */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Style de l'image elle-même */
.activite-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Garde les proportions sans déformation */
}

/* Zone de contenu avec flexbox pour centrer */
.activite-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center; /* Centre horizontalement */
    justify-content: center; /* Centre verticalement */
    gap: 15px; /* Espace entre le titre et l'adresse */
    text-align: center; /* Centre le texte */
}

/* Style du titre centré sans marges */
.activite-title {
    font-size: 18px;
    color: #1e293b;
    margin: 0;
    padding: 0;
    line-height: 1.4;
    width: 100%; /* Occupe toute la largeur */
}

.activite-title h3{
    margin:0 !important;
}

/* Style de l'adresse */
.activite-address {
    color: #64748b;
    text-decoration: none;
    font-size: 14px;
    width: 100%; /* Occupe toute la largeur */
    transition: color 0.3s ease;
}

/* Effet au survol de l'adresse */
.activite-address:hover {
    color: #046bd2;
}

.form-contact input[type="submit"] {
    background-color: #79B7A6;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

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

a#beds24-button {
    text-decoration: none;
}

a {
    text-decoration: none !important;
}