@font-face {
    font-family: 'Poppins';
    src: url('fonts/poppins/Poppins-Regular.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}
@font-face {
    font-family: 'Poppins';
    src: url('fonts/poppins/Poppins-Bold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}
body {
    font-family: 'Poppins', sans-serif;
}
body {
    margin: 0;
    padding: 0;
    background: #f2e8c4;
    color: #4b3f29;
}
main {
    margin-bottom: 0 !important;
}
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #7d5a4e;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    width: 100%;
    box-sizing: border-box; /* Assure que la largeur soit correcte */
}
.logo h1 {
    margin: 0;
    font-size: 28px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.2;
}
.desktop-menu {
    display: flex;
    justify-content: flex-end;
    width: 100%;
}
.desktop-menu ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}
.desktop-menu li {
    margin: 0 10px;
}
.desktop-menu a {
    text-decoration: none;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    white-space: nowrap;
    transition: color 0.3s ease;
}
.desktop-menu a:hover {
    color: #ffd700;
}
.mobile-menu-icon {
    display: none;
    font-size: 30px;
    cursor: pointer;
    color: #fff;
    transition: transform 0.3s ease;
}
.mobile-menu-icon:hover {
    transform: scale(1.1);
}
.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 10px;
    background-color: #7d5a4e;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2), 0 -4px 0 rgba(0, 0, 0, 0);
    padding: 10px 20px;
    opacity: 0;
    height: 0;
    overflow: hidden;
    transition: height 0.5s ease, opacity 0.5s ease;
    width: auto;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}
.mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: right;
}
.mobile-menu li {
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
}
.mobile-menu li:last-child {
    border-bottom: none;
}
.mobile-menu a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
}
.mobile-menu.show {
    display: block;
    height: auto;
    opacity: 1;
}
.hero {
    background: linear-gradient(rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.6)), 
                url('./images/treasure-map.webp') center/cover no-repeat;
    text-align: center;
    color: #000;
    padding: 100px 20px;
}
.hero h2, .hero p {
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
    color: black;
}
@media (max-width : 722px ){
    .desktop-menu {
        display: none;
    }
    .mobile-menu-icon {
        display: block;
    }
    .logo h1 {
        font-size: 24px;
    }
}
section {
    padding: 100px 20px;
    margin: 0 auto;
    max-width: 1200px;
    text-align: center;
}
.scroll-to-top {
    position: fixed;
    bottom: 65px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: #8B4513; /* Chocolat */
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 30px;
    cursor: pointer;
    opacity: 0; /* Caché par défaut */
    visibility: hidden; /* Invisible tant qu'il n'apparaît pas */
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}
@media (min-width : 768px ){
	.scroll-to-top {
		display: visible !important;;
	}
}

/* ======== TEXTE PRINCIPAL HERO ======== */
.hero h2 {
    position: relative;       /* À ajouter : permet au ::before de se positionner derrière */
    font-size: clamp(32px, 4vw, 48px); /* Ajuste la taille selon l’écran */
    text-align: center;       /* Garde ce que tu avais */
    margin: 40px auto;        /* Garde ce que tu avais */
    color: #7d5a4e;           /* Garde ce que tu avais */
    font-weight: bold;        /* Garde ce que tu avais */
    line-height: 1.5;         /* Garde ce que tu avais */
    z-index: 1;               /* À ajouter : texte au-dessus du contour */
}

/* ======== CONTOUR EXTERNE ======== */

@keyframes glitch {
  0%, 100% { transform: translate(0, 0); }
  20% { transform: translate(-2px, 1px); }
  40% { transform: translate(2px, -1px); }
  60% { transform: translate(-1px, 2px); }
  80% { transform: translate(1px, -2px); }
}

.hero h2::before {
    content: attr(data-text);         /* Duplique le texte */
    position: absolute;
    inset: 0;                         /* Même position que le texte */
    z-index: -1;                      /* Contour derrière le texte */
    color: transparent;               /* Texte invisible, seul le contour sera visible */
    -webkit-text-stroke: 4px white;   /* Contour externe (modifie l’épaisseur si besoin) */
    /* effet flou */
    text-shadow:
        0 0 5px white,
        0 0 7px white,
        0 0 11px white;
    -webkit-font-smoothing: antialiased; /* Lisibilité améliorée sur Chrome/Safari */
        /* animation */
    animation: glitch 9s infinite ease-in-out;
}

.intro p {
    font-size: 18px;
    line-height: 1.8;
    text-align: justify;
    max-width: 800px;
    margin: 0px auto;
    color: #4b3f29;
}
.animation p {
    text-align: center;
    font-size: 20px;
    color: #7d5a4e;
    margin: 0px auto;
    line-height: 1.6;
}
.links-etape {
    display: flex;
    justify-content: space-between;
    margin-top: 120px;
    margin-bottom: -50px; 
    padding-left: 20%; /* Ajuster l'espacement des côtés si nécessaire */
    padding-right: 20%; /* Ajuster l'espacement des côtés si nécessaire */
    flex-wrap: nowrap; /* Permet à la ligne suivante de se placer en dessous */
}
@media (max-width : 766px ){
	.links-etape {
		justify-content: space-between;
		padding-left: 3%;
		padding-right: 3%;
		display: flex;
		flex-wrap: nowrap
	}
}
.link-etape {
	margin-left: 3px;
	margin-right: 3px;
    text-align: center;
    display: flex;
    flex-direction: column; /* Permet d'empiler le lien et l'icône */
    align-items: center; /* Centre le lien et l'icône */
}
.link-etape a {
	background-color: #7d5a4e;
    color: white;
    text-decoration: none;
    padding: 10px 10px;
    border-radius: 5px;
    font-size: 16px;
    display: inline-block; /* Assure que le lien reste en ligne */
}
.link-etape a:hover {
    background-color: #9f7e74;
    color: white;
}
#base p {
    font-size: 18px;
    line-height: 1.8;
    text-align: justify;
    max-width: 800px;
    margin: 0px auto;
    color: #4b3f29;
}
#personnalisation p {
    font-size: 18px;
    line-height: 1.8;
    text-align: justify;
    max-width: 800px;
    margin: 0px auto;
    color: #4b3f29;
	}
#jourJ p {
    font-size: 18px;
    line-height: 1.8;
    text-align: justify;
    max-width: 800px;
    margin: 0px auto;
    color: #4b3f29;
	}
.btn-container.three-columns {
  display: grid ;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px; /* Espace entre les colonnes */
  justify-items: center; /* Centre les boutons dans chaque colonne */
  justify-content: center; /* Centre les boutons horizontalement */
}
@media (max-width: 766px) {
.btn {
    word-wrap: break-word; /* Permet de casser le texte dans les boutons s'il est trop long */
    white-space: normal; /* Autorise le retour à la ligne dans les boutons */
    text-align: center; /* Centre le texte à l'intérieur des boutons */
  }
}
.btn-container {
    text-align: center;
    margin: 20px 0;
}
.btn {
    text-decoration: none;
    padding: 15px 30px; /* Augmentation de la taille */
    font-size: 20px; /* Taille de texte plus grande */
    color: #fff;
    background-color: #7d5a4e;
    border-radius: 25px; /* Bords arrondis */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3); /* Ombre pour donner du volume */
    transition: all 0.3s ease;
    display: inline-block;
}
.btn:hover {
    background-color: #ffd700; /* Couleur au survol */
    color: #4b3f29; /* Couleur du texte au survol */
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.4); /* Augmentation de l'ombre au survol */
    transform: translateY(-2px); /* Légère remontée au survol */
}
.description p {
    font-size: 18px;
    text-align: justify;
    max-width: 800px;
    margin: 20px auto;
    color: #4b3f29;
    line-height: 1.8;
}
.mystory p {
    font-size: 18px;
    line-height: 1.8;
    text-align: justify;
    max-width: 800px;
    margin: 20px auto;
    color: #4b3f29;
}
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
    margin: 20px;
}
.gallery img {
    width: 100%;
    height: 150px; /* Hauteur fixe pour uniformiser */
    object-fit: cover; /* Coupe l'image pour remplir le cadre */
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.3s ease;
}
.gallery img:hover {
    transform: scale(1.1);
}
.modal-gallery {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    align-items: center;
    justify-content: center;
    z-index: 1000;
}
.modal-gallery img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 5px;
}
.modal-gallery .close {
    position: absolute;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    user-select: none;
	opacity: 0.1;
}

.modal-gallery .arrow {
    position: absolute;
    color: white;
    font-size: 6rem;  /* Augmenter la taille des flèches */
    cursor: pointer;
    user-select: none;
    z-index: 1000;  /* S'assurer que les flèches restent au-dessus des autres éléments */
    transition: opacity 0.3s;  /* Effet de transition pour plus de fluidité */
}

.modal-gallery .arrow:hover {
    opacity: 0.8;  /* Ajouter un effet au survol pour les rendre plus visibles */
}

.modal-gallery .arrow.left {
    left: 20px;
}

.modal-gallery .arrow.right {
    right: 20px;
}

.modal-gallery .arrow {
    top: 50%;
    transform: translateY(-50%);
}



.btn-container-message {
	align-content: center;
	justify-content: center;
	align-items: center;
}
.contact-info {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap; /* Permet de passer à la ligne si nécessaire */
	margin: 0 auto; /* Centrer la section sur l'écran */
	padding: 0 5%; /* Réduire l'espace sur les côtés gauche et droit */
}
.contact-item {
    display: flex;
    flex-direction: column;
    justify-content: center; /* Centrer le contenu verticalement */
    align-items: center; /* Par défaut, centrer horizontalement */
    margin: 10px 0;
    flex: 1; /* Chaque item occupe une portion égale de l'espace disponible */
}
.contact-item p {
    margin: 5px 0;
}
.contact-item.left {
    justify-content: flex-start; /* Aligner à gauche */
    align-items: flex-start; /* Aligner le texte à gauche */
}
.contact-item.center {
    justify-content: center; /* Garder le texte centré */
    align-items: center; /* Garder le texte centré */
}
.contact-item.right {
    justify-content: flex-start; /* Aligner à droite */
    align-items: flex-end; /* Aligner le texte à droite */
}
@media (max-width: 768px) {
    .contact-info {
        flex-direction: column;
        align-items: center;
    }
    .contact-item {
        align-items: center; /* Centrer toutes les colonnes sur mobile */
    }
	.contact-item.left {
    justify-content: center; /* Aligner à gauche */
    align-items: center; /* Aligner le texte à gauche */
}
.contact-item.center {
    justify-content: center; /* Garder le texte centré */
    align-items: center; /* Garder le texte centré */
}
.contact-item.right {
    justify-content: center; /* Aligner à droite */
    align-items: center; /* Aligner le texte à droite */
}
}
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}
main {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.main-footer {
    width: 100%;
}
.main-footer {
    background-color: #7d5a4e; /* Couleur chocolat */
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 20px;
    font-size: 15px; 
    bottom: 0;
    width: 100%;
    box-sizing: border-box;
    z-index: 0;
	box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.2);
}
@media (min-width: 768px) {
  footer {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 1000;
  }
}
@media (max-width: 767px) {
  footer {
    position: relative;
    margin-top: 20px;
  }
}
.footer-left {
    text-align: left;
}
.footer-link {
    color: #b0dff0;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}
.footer-link:hover {
    color: #fff;
}
.footer-center {
    text-align: center;
    font-size: 14px;
}
.footer-right {
    text-align: right;
}
.social-icon {
    text-decoration: none;
    font-size: 16px;
    color: #b0dff0;
    margin-left: 10px;
    transition: transform 0.3s ease, color 0.3s ease;
}
.social-icon:hover {
    transform: scale(1.2);
    color: #fff;
}
.faqtitre {
	margin-bottom: -100px;
}
.faq {
  max-width: 800px;
  margin: 20px auto;
  margin-bottom: 80px;
  padding: 20px 20px;
}
.faq-item {
  border: 1px solid #ddd;
  margin: 0; /* Supprime les marges entre les questions fermées */
  border-radius: 5px;
  overflow: hidden;
}
.faq-item + .faq-item {
  margin-top: 10px; /* Ajoute une marge uniquement entre les items pour les transitions */
}
.faq-question {
  background-color: #7d5a4e;
  cursor: pointer;
  padding: 15px;
  font-weight: normal;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 20px;
  color: antiquewhite;
}
.faq-question:hover {
  background-color: #9f7e74;
}
.faq-toggle-icon {
  margin-right: 10px;
  margin-top: -15px;
	margin-bottom: -15px;
  font-size: 40px;
  color: chocolate;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 15px; /* Initialement aucun padding vertical */
  background-color: #f9f9f9;
  color: #333;
  text-align: justify;
  margin: 0;
}
.faq-answer.open {
  max-height: 700px; /* Assurez-vous d'une hauteur suffisante pour l'animation */
  padding: 20px 50px; /* Ajoute du padding vertical */
}
.avis-container {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 10px;
    padding: 10px;
    white-space: nowrap;
}
.avis-tile {
    flex: 0 0 calc(25% - 20px); /* 4 tuiles par ligne sur PC */
    max-width: calc(25% - 20px);
    scroll-snap-align: start;
    background: #fff;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
    text-decoration: none;
    color: #333;
    height: 350px; /* Hauteur fixe pour uniformiser */
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* La date sera au bas de la tuile */
    overflow: hidden;
}
.avis-commentaire {
    font-size: 0.9em;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    margin-bottom: 10px; /* Espacement pour séparer le texte du "Voir plus" */
	white-space: normal;
}
.voir-plus {
    color: blue;
    font-size: 0.9em;
    text-decoration: none;
    display: inline-block;
    margin-top: 5px;
}
@media (max-width: 768px) {
    .avis-tile {
        flex: 0 0 calc(50% - 20px); /* 2 tuiles par ligne sur mobile */
        max-width: calc(50% - 20px);
    }
}
.avis-nom {
    font-weight: bold;
    font-size: 1.2em;
    margin-bottom: 5px;
}
.avis-note {
    color: gold;
    font-size: 1.5em;
    margin-bottom: 5px;
}
.avis-date {
    font-size: 0.8em;
    color: gray;
    margin-top: 10px; /* Espacement pour séparer la date du commentaire */
    margin-top: auto; /* Permet à la date de rester en bas */
}
#section-contact {
    width: calc(100% - 120px); /* 100% de la largeur moins 60px de chaque côté */
    max-width: 1200px; /* Limite la largeur pour ne pas trop agrandir sur grands écrans */
    margin: 0 auto; /* Centre la section */
    padding: 100px 20px;
    box-sizing: border-box; /* Assure que la marge et le padding n'affectent pas la largeur totale */
}
@media screen and (max-width: 768px) {
    #section-contact {
        width: 100%;
        padding: 100px 10px;
    }
}
#form-contact {
    width: 100%;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px; /* Espacement entre les groupes */
}
#form-contact label {
    font-size: 1rem;
    font-weight: bold;
}
#form-contact input,
#form-contact textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
}
.form-group {
    width: 100%;
}
.form-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}
.form-row .form-group {
    flex: 1;
}

#nom-contact, #email-contact, #telephone-contact {
    display: flex;
    flex-direction: column;
	gap: 10px;
}
@media (max-width: 767px) {
    .form-row {
        flex-direction: column;
        gap: 10px;
    }
    #nom-contact input,
    #email-contact input,
    #telephone-contact input {
        width: 90%;
    }
}
@media screen and (min-width: 768px) {
    #nom-contact input,
    #email-contact input,
    #telephone-contact input {
        width: 80%;
        margin: 15px; /* Ajouter un peu plus d'espace entre les champs */
    }
}
.contact-btn {
    flex: 1;
    padding: 15px;
    border: 2px solid #7B3F00; /* Chocolat */
    background-color: transparent;
    color: #7B3F00;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
}
#contact-mode {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 100%;
}
#contact label {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 5px;
    text-align: center;
}
.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    width: 100%;
}
.contact-btn:hover {
    background-color: #8B5A2B;
    color: white;
}
.contact-btn.selected {
    background-color: #8B5A2B;
    color: white;
}
@media (max-width: 768px) {
    .contact-buttons {
        flex-direction: row;
        justify-content: space-between;
    }
}
#objet-contact {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 90%;
    Padding: 20px;
}
#objet-contact input {
    flex: 1;
}
#message-contact textarea {
    width: 90%;
    height: 150px;
    min-height: 5rem;
    resize: vertical;
}
@media (max-width: 767px) {
    #objet-contact {
        flex-direction: column;
    }
    #objet-contact input {
        width: 90%;
    }
    #message-contact textarea {
        width: 90%;
    }
}
#form-contact button {
    width: 100%;
    max-width: 250px;
    padding: 12px;
    font-size: 1.1rem;
    color: white;
    background-color: #8B5A2B; /* Chocolat */
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}
#form-contact button:hover {
    background-color: #6B3E1D; /* Chocolat foncé */
}
.btn {
    font-size: 1rem;
    padding: 12px 20px;
    border-radius: 25px;
    text-align: center;
    cursor: pointer;
}
#form-avis {
    max-width: 600px;
    margin: 30px auto;
    padding: 0; /* Suppression du fond et des bordures */
}
#form-avis label {
    display: block;
    font-weight: bold;
    margin-bottom: 8px;
}
#avis-nom, #avis-message {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
}
#avis-message {
    min-height: 120px;
    resize: vertical;
}
@media (min-width: 768px) {
    #form-avis .form-row {
        display: flex;
        gap: 25px;
        margin-bottom: 20px;
    }
    #form-avis .form-row div {
        flex: 1;
    }
    #avis-message {
        max-width: 85%;
    }
}
#avis-note {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

#section-devis {
    width: calc(100% - 120px); /* 100% de la largeur moins 60px de chaque côté */
    max-width: 1200px; /* Limite la largeur pour ne pas trop agrandir sur grands écrans */
    margin: 0 auto; /* Centre la section */
    padding: 100px 20px;
    box-sizing: border-box; /* Assure que la marge et le padding n'affectent pas la largeur totale */
}
@media screen and (max-width: 768px) {
    #section-devis {
        width: 100%;
        padding: 100px 10px;
    }
}
#form-devis {
    width: 100%;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px; /* Espacement entre les groupes */
}
#form-devis label {
    font-size: 1rem;
    font-weight: bold;
}
#form-devis input,
#form-devis textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
	gap: 10px;
}
.devis-group {
    width: 100%;
}
.devis-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}
.devis-row .devis-group {
    flex: 1;
}
#nom-devis, #email-devis, #telephone-devis {
    display: flex;
    flex-direction: column;
	gap: 10px;
}
@media (max-width: 767px) {
    .devis-row {
        flex-direction: column;
        gap: 10px;
    }
    #nom-devis input,
    #email-devis input,
    #telephone-devis input {
        width: 90%;
    }
}
@media screen and (min-width: 768px) {
    #nom-devis input,
    #email-devis input,
    #telephone-devis input {
        width: 80%;
        margin: 15px;
    }
}
#date-devis input,
#lieu-devis input,
#nombre-devis input {
    width: 80%;
    max-width: 300px; /* Pour éviter qu'ils ne soient trop larges sur grand écran */
    margin: auto; /* Centre le champ */
	gap: 10px;
}
@media (max-width: 768px) {
    #date-devis input,
    #lieu-devis input,
    #nombre-devis input {
        width: 90%; /* presque pleine largeur sur mobile */
		gap: 10px;
    }
}
.devis-contact-btn {
    flex: 1;
    padding: 15px;
    border: 2px solid #7B3F00; /* Chocolat */
    background-color: transparent;
    color: #7B3F00;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
}
#contact-devis {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 100%;
}
#contact-devis label {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 5px;
    text-align: center;
}
.devis-contact-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    width: 100%;
}
.devis-contact-btn:hover {
    background-color: #8B5A2B;
    color: white;
}
.devis-contact-btn.selected {
    background-color: #8B5A2B;
    color: white;
}
@media (max-width: 768px) {
    .devis-contact-buttons {
        flex-direction: row;
        justify-content: space-between;
    }
}
#message-devis textarea {
    min-height: 150px;
    resize: vertical;
	width: 90%;
}
#form-devis .btn {
    background-color: #7B3F00; /* Chocolat */
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}
#form-devis .btn:hover {
    background-color: #8B5A2B;
}
.scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background-color: #7B3F00;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}
.scroll-to-top:hover {
    background-color: #8B5A2B;
}
