/* General Styles */
.flash-message {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  padding: 10px;
  border-radius: 5px;
  color: #fff;
  font-weight: bold;
  opacity: 0;
  animation: fadeIn 1s forwards;
  margin-bottom: 10px;
  z-index: 1000;
}

.flash-message.success {
  background-color: #4CAF50;
}

.flash-message.error {
  background-color: #f44336;
}

@keyframes fadeIn {
  from {
      opacity: 0;
  }
  to {
      opacity: 1;
  }
}
        form {
            background: #fff;
            padding: 20px 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            width: 100%;
            max-width: 500px;
        }

        h2 {
            text-align: center;
            color: #333;
            margin-bottom: 20px;
        }

        .form-group {
            position: relative;
            margin-bottom: 20px;
        }

        label {
            position: absolute;
            top: 12px;
            left: 15px;
            font-size: 14px;
            color: #aaa;
            pointer-events: none;
            transition: 0.3s;
        }

        input, textarea {
            width: 100%;
            padding: 12px 15px;
            font-size: 16px;
            border: 1px solid #ddd;
            border-radius: 5px;
            background: #f9f9f9;
            transition: 0.3s;
        }

        input:focus, textarea:focus {
            border-color: #f08300;
            background: #fff;
            outline: none;
        }

        input:focus + label,textarea:focus + label,
        input:not(:placeholder-shown) + label {
            top: -4px;
            font-size: 12px;
            color: #f08300;
        }

        textarea {
            resize: none;
            height: 100px;
        }

        .error-message {
            color: red;
            font-size: 12px;
            display: none;
            margin-top: 5px;
        }

        .btn-submit {
            width: 100%;
            padding: 12px;
            background: #f08300;
            color: white;
            border: none;
            border-radius: 5px;
            font-size: 16px;
            cursor: pointer;
            transition: background 0.3s;
        }

        .btn-submit:hover {
            background: #cc6f02;
        }

        @media (max-width: 600px) {
            form {
                padding: 15px;
            }
        }
        .jumbotron {
            background: #ffffff;
            border-radius: 10px;
            padding: 20px 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            max-width: 600px;
            margin: 20px auto;
        }

        .jumbotron h1 {
            font-size: 24px;
            color: black;
            margin-bottom: 20px;
            text-align: center;
        }
        p {
            font-size: 16px;
            line-height: 1.6;
            color: #555;
            margin: 10px 0;
        }

        p i {
            color: black;
            margin-right: 10px;
        }

        h1 i {
            color: black;
            margin-right: 10px;
        }

        .jumbotron a {
            color: #333;
            text-decoration: none;
        }

        a:hover {
            text-decoration: underline;
        }


.ftco-section {
  padding-top: 40px; /* Réduit l'espace en haut */
  padding-bottom: 40px; /* Réduit l'espace en bas */
}

.services-section {
  margin-bottom: 20px; /* Réduit l'espace entre cette section et la suivante */
}

.ftco-destination {
  margin-top: 10px; /* Réduit l'espace en haut de cette section */
}

.heading {
  margin-bottom: 10px; /* Ajuste l'espacement des titres si nécessaire */
}



/* Conteneur de la section */


/* Style du titre */
.title-tour {
  font-size: clamp(1.5rem, 4vw, 2.5rem); /* Taille adaptative */
  font-weight: bold; /* Texte en gras */
  color: #333; /* Couleur du texte */
  margin: 0; /* Supprime les marges par défaut */
  position: relative; /* Nécessaire pour le pseudo-élément */
}

/* Tiret avant le texte */
.title-tour::before {
  content: ""; /* Ajoute un tiret */
  color: #333; /* Couleur du tiret */
  font-size: 1.5rem; /* Taille du tiret */
  position: absolute; /* Positionnement absolu */
  left: -25px; /* Décalage horizontal */
  top: 50%; /* Aligne verticalement */
  transform: translateY(-50%); /* Ajuste l'alignement */
}











  
  /* Content Sections */
  .content-section {
    padding: 20px;
    max-width: 800px;
    margin: 20px auto;
  }
  
  .content-section h2 {
    margin-bottom: 10px;
  }
  
  .content-section ul {
    list-style: none;
    padding: 0;
  }
  
  .content-section li {
    background: #f9f9f9;
    margin: 5px 0;
    padding: 10px;
    border-radius: 5px;
  }
  
  /* Services */
  .services-section-incl {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 20px auto;
    max-width: 1000px;
  }
  
  .service-list {
    flex: 1;
    min-width: 350px;
    margin: 10px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 20px;
  }
  
  .service-list h3 {
    margin-bottom: 10px;
  }
  
  /* Buttons */
  .buttons-section {
    text-align: center;
    margin: 20px auto;
  }
  
  .btn {
    text-decoration: none;
    padding: 10px 20px;
    border: 2px solid #0073e6;
    color: #0073e6;
    border-radius: 5px;
    margin: 10px;
    display: inline-block;
    transition: all 0.3s ease;
  }
  
  .btn:hover {
    background: #0073e6;
    color: #fff;
  }
  

  
  /* Responsive Design */
  @media (max-width: 768px) {
    .services-section {
      flex-direction: column;
      align-items: center;
    }
  
    .content-section, .service-list {
      padding: 15px;
    }
  }


.gallery,
.gallery-item,
.overlay,
.btn

 {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

#contact_message {
    height: 200px !important;
}

.jumbotron {
    background-color: #f8f9fa; /* Couleur de fond douce */
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    text-align: left;
    max-width: 600px;
    margin: 20px auto;
    font-family: Arial, sans-serif;
  }
  
  .jumbotron h1 {
    font-size: 1.8rem;
    color: #007bff; /* Couleur bleue pour le titre */
    margin-bottom: 1rem;
  }
  
  .jumbotron p {
    font-size: 1rem;
    color: #333;
    margin-bottom: 0.5rem;
  }
  
  .jumbotron a {
    color: #007bff;
    text-decoration: none;
  }
  
  .jumbotron a:hover {
    text-decoration: underline;
  }


.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    background-size: cover;
    background-position: center;
    height: 300px;
    cursor: pointer;
    animation: fade-in 1s ease-in;
}

.overlay {
    position: absolute;
    bottom: -100%;
    left: 0;
    right: 0;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: bottom 0.5s ease;
}

.gallery-item:hover .overlay {
    bottom: 0;
}

.gallery-item:hover {
    filter: brightness(0.7);
}

.overlay h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #fff;
}

.overlay p {
    font-size: 1rem;
    margin-bottom: 15px;
}

.btn {
    padding: 10px 20px;
    border: 2px solid #ff7f50;
    border-radius: 5px;
    background: transparent;
    color: #ff7f50;
    font-size: 1rem;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.3s, color 0.3s;
}

.btn:hover {
    background: #ff7f50;
    color: white;
}

@keyframes fade-in {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .gallery {
        grid-template-columns: 1fr;
    }
}