/* styles.css */
:root {
    --primary-color: #29d9d5;
    --secondary-color: #1b1b1b;
    --text-color: #ffffff;
    --bg-color: #fff7d1;
    --hover-color: #0056b3;
}

.logo {
    width: 100px;
}

.logo img {
    width: 100%;
}

body {
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background: url('bg\ \(2\).jpg') no-repeat center center fixed;
    background-size: cover;
    color: var(--text-color);
    min-height: 100vh;
    position: relative;
    align-items: center;
    justify-content: center;

}

.wrapper {
    max-width: 1500px;
}

.wrapper .gallery {
    display: flex;
    flex-wrap: wrap;
}

.gallery span {
    display: flex;
    width: 100%;
    overflow: hidden;
}

.gallery {
    padding: 7px;
}

.gallery .imags {
    padding: 10px;
    width: calc(100% / 4);
}

.gallery .imags img {
    width: 100%;
    vertical-align: middle;
    transition: all 0.3s ease;
}

.gallery .imags:hover img {
    transform: scale(1.1);
}


nav.navbar {
    position: fixed;
    background-color: var(--secondary-color);
    width: 100%;
    padding: 10px 0;
    z-index: 12;
}

.menu {
    max-width: 1250px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
}

.logo a {
    text-decoration: none;
    color: var(--text-color);
    font-size: 35px;
    font-weight: bold;
}

.nav-links {
    display: inline-flex;
    list-style: none;
}

.nav-links li {
    margin: 20px;
}

.nav-links li:first-child {
    margin-left: 0;
}

.nav-links li a {
    text-decoration: none;
    color: var(--text-color);
    font-size: 18px;
    font-weight: 500;
    padding: 8px 15px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.nav-links li a:hover {
    background-color: var(--text-color);
    color: black;
}

.hamburger {
    display: none;
}


.hero-section {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    position: relative;
}

.image {
    background: url('hero1.jpg') no-repeat center center/cover;
    width: 100%;
    height: 100%;
    animation: changeBackground 20s infinite;
}

.image::before {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.4);
}

.center {
    position: absolute;
    text-align: center;
    padding: 0 20px;
}

.center .title {
    color: var(--text-color);
    font-size: 55px;
    font-weight: 600;
}

.center .sub-title {
    color: var(--text-color);
    font-size: 30px;
    font-weight: 500;
    margin-top: 20px;
}

.center .btns button {
    height: 55px;
    width: 170px;
    border-radius: 5px;
    border: 2px solid var(--text-color);
    background: none;
    color: var(--text-color);
    font-size: 20px;
    font-weight: 500;
    margin: 20px 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.center .btns button:hover {
    color: #000;
    background: var(--text-color);
}

.contact {
    position: relative;
    padding: 0 10%;
    height: 90vh;
    width: 800px;
}

.contact .btn {
    width: fit-content;
    padding: 8px 30px;
    margin: 0 10px;
    background-color: #24a3ec;
    border: 1px solid #999;
    color: #fff;
    cursor: pointer;
    transition: 0.5s;
    border-radius: 10px;
}

.contact .btn:hover {
    letter-spacing: 1px;
}

.form-group {
    margin: auto;
    display: flex;
    flex-direction: column;
    padding: 8px;
}

.form-control {
    font-size: 14px;
    padding: 8px 0;
    font-weight: 600;
    border-radius: 20px;
}

.form-control {
    padding: 8px;
    outline: 0;
    border: 1px solid #999;
}

textarea {
    height: 150px;
    resize: none;
    outline: 0;
    width: 100%;
}

#contact form input:focus,
textarea:focus {
    border: 1px solid #29d9d5;
}

.transition {
    animation: autoShowAnimation;
    animation-timeline: view(90% 5%);
}

@keyframes autoShowAnimation {
    from {
        opacity: 0;
        transform: translateY(200px) scale(0.3);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes changeBackground {
    0% {
        background-image: url('hero1.jpg');
    }

    14.50% {
        background-image: url('hero2.jpg');
    }

    29% {
        background-image: url('hero3.jpg');
    }

    45% {
        background-image: url('hero4.jpg');
    }

    63% {
        background-image: url('hero5.jpg');
    }

    75% {
        background-image: url('hero6.jpg');
    }

    100% {
        background-image: url('hero7.jpg');
    }

}

/* About Us Section CSS */
.a-propos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    padding: 100px 10%;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(8px);
    border-radius: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    flex-wrap: wrap;
  }
  
  .image-pro {
    flex: 1 1 400px;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
  }
  
  .image-pro img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    border-radius: 30px;
  }
  
  /* Effet au survol */
  .image-pro:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    transform: translateY(-5px) scale(1.02);
  }
  
  .image-pro:hover img {
    transform: scale(1.05);
  }
  
  
  .content_box {
    flex: 1 1 400px;
    padding: 30px;
    background: rgba(0, 0, 0, 0.45);
    border-radius: 30px;
    backdrop-filter: blur(15px);
    color: #ffffff;
    box-shadow: 0 8px 30px rgba(0,0,0,0.6);
  }
  
  .content_box p {
    font-size: 1rem;
    line-height: 1.6;
    margin: 20px 0;
    color: #eee;
  }
  
  .titles {
    font-size: 32px;
    margin-bottom: 15px;
    color: #f9ad4a;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  .titles::before {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: #f9ad4a;
    border-radius: 10px;
  }
  
  .white_btn {
    background: linear-gradient(45deg, #29d9d5, #24a3ec);
    color: white;
    border: none;
    padding: 10px 25px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 30px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
  
  .white_btn:hover {
    transform: scale(1.05);
    background: linear-gradient(45deg, #24a3ec, #29d9d5);
  }
  
#excursions {
    padding: 80px 10%;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(8px);
    border-top: 2px solid rgba(255, 255, 255, 0.1);
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
  }
  
  .excursions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
  }
  
  .excursion-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
  }
  
  .excursion-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
  }
  
  .card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    filter: brightness(90%);
  }
  
  .card-body {
    padding: 20px;
    text-align: center;
  }
  
  .card-body h3 {
    color: #ffffff;
    font-size: 22px;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
  }
  
  .card-body p {
    color: #ddd;
    font-size: 15px;
    line-height: 1.4em;
  }
  
  .card-btn {
    margin-top: 15px;
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(45deg, #29d9d5, #24a3ec);
    color: white;
    font-weight: bold;
    border: none;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
  }
  
  .card-btn:hover {
    transform: scale(1.05);
    background: linear-gradient(45deg, #24a3ec, #29d9d5);
    color: #fff;
  }
  

.big {
    margin: 290px 0;
    margin-bottom: 10px;
}

.big h2 {
    font-size: 50px;
    text-align: center;
    color: #ffffff;
}

/* services */
.services {
    display: flex;
    text-align: center;
    margin-top: 35px;
    color: #ffffff;

}

.services .box {
    width: 33.33%;
    margin: 0 35px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}


.box {
    backdrop-filter: blur(30px);
    box-shadow: 0 0 30px rgb(0, 0, 0, .6);
    border-radius: 30px;
}

.services .box i {
    font-size: 40px;
    color: #f9ad4a;
    background-color: #f7f0e6;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.services .box h2 {
    margin-top: 30px;
    margin-bottom: 15px;
}

.services .box p {
    color: #ffffff;


}

.titre {
    display: grid;
    place-items: center;
    align-content: center;
    min-height: 50vh;

}

.titre h2 {
    padding: 10px;
    font-size: 3.5rem;
    text-shadow: 0 5px 10px #141414;
}

.titre p {
    padding: 10px;
    margin: 0 30px;
    align-content: center;
    text-shadow: 0 5px 10px #141414;
}

.titre img {
    width: 90%;
    box-shadow: 0 0 30px rgb(0, 0, 0, .6);
    border-radius: 30px;
}

.image-pro:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  }
  



footer {
    background-color: var(--secondary-color);
    padding: 30px 0;
    text-align: center;
}

.footer-contact,
.footer-social {
    margin-bottom: 20px;
}

.footer-social a {
    margin: 0 10px;
    color: var(--text-color);
    font-size: 20px;
    transition: color 0.3s ease-in-out;
}

.footer-social a:hover {
    color: var(--primary-color);
}

main.container.mt-5 {
    padding: 80px 10%;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(8px);
    border-radius: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    color: #fff;
  }
  
  .titre {
    text-align: center;
    margin-bottom: 60px;
  }
  
  .titre h2 {
    font-size: 42px;
    color: #f9ad4a;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 1px;
  }
  
  .titre img {
    width: 100%;
    max-width: 900px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
    margin: 20px auto;
  }
  
  .titre p {
    font-size: 18px;
    color: #eee;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
  }
  
  /* Sections d’info */
  .my-5 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    padding: 60px 10%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(0, 0, 0, 0.2));
    backdrop-filter: blur(10px);
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    margin: 80px auto;
    flex-wrap: wrap;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .my-5:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
  }
  
  
  .content_bo {
    flex: 1 1 500px;
    padding: 20px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(6px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.25);
  }
  
  .content_bo h3 {
    font-size: 30px;
    color: #f9ad4a;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  .content_bo p {
    font-size: 17px;
    color: #eee;
    line-height: 1.7;
  }
  
  
  .content_bo ul {
    list-style: disc;
    padding-left: 20px;
  }
  
  /* Image bloc */
  .image-pro {
    flex: 1 1 450px;
    overflow: hidden;
    border-radius: 25px;
    position: relative;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
  }
  
  .image-pro::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.4), rgba(0,0,0,0));
    z-index: 1;
    border-radius: 25px;
    pointer-events: none;
  }
  
  .image-pro img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 25px;
    transition: transform 0.5s ease;
    filter: brightness(0.95) contrast(1.05);
  }
  
  .image-pro:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  }
  
  .image-pro:hover img {
    transform: scale(1.08);
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .my-5 {
      flex-direction: column;
      gap: 30px;
    }
  
    .content_bo, .image-pro {
      width: 100%;
    }
  
    .titre h2 {
      font-size: 32px;
    }
  
    .titre p {
      font-size: 16px;
    }
  }
  

.alert {
    margin-top: 1em;
}

.images {
    width: 400px;
}

/* Initialement caché pour les grandes résolutions */

/* WhatsApp Icon Styling */
.whatsapp-link i {
    color: #25D366;
    font-size: 24px;
    transition: transform 0.3s ease-in-out;
}

.whatsapp-link i:hover {
    transform: scale(1.2);
    color: #128C7E;
}

/* Custom Tooltip */
.whatsapp-link {
    position: relative;
}

.whatsapp-link::after {
    content: attr(title);
    position: absolute;
    bottom: 130%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #333;
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.whatsapp-link:hover::after {
    opacity: 1;
}

/* Style du bouton flottant WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 50%;
    right: 20px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    padding: 15px;
    font-size: 30px;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: transform 0.3s ease;
}

/* Effet au survol */
.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #128C7E;
}

/* Pour les petits écrans */
@media (max-width: 768px) {
    .whatsapp-float {
        right: 70px;
        /* Rapproche le bouton du bord sur les petits écrans */
        bottom: 60%;
        /* Ajuste la position en fonction de la hauteur de l'écran */
        font-size: 35px;
        /* Réduit la taille de l'icône */
        padding: 10px;
        /* Réduit la taille du bouton */
    }
}



@media (max-width: 1000px) {
    .gallery .imags {
        width: calc(100% / 2);
    }
}

@media (max-width: 600px) {
    .gallery .imags {
        padding: 4px;
        width: 100%;
    }
}

/* Disable Tooltip on Small Screens */
@media (max-width: 768px) {
    .whatsapp-link::after {
        display: none;
        /* Hide tooltip on mobile */
    }
}



/* Media Queries for Responsiveness */
@media (max-width: 750px) {

    .nav-links {
        display: flex;
        flex-direction: column;
        background-color: var(--secondary-color);
        position: absolute;
        top: 0;
        right: -100%;
        /* Menu hors de l'écran */
        height: 100vh;
        width: 100%;
        justify-content: center;
        align-items: center;
        opacity: 0;
        /* Menu totalement transparent */
        transition: right 0.3s ease-in-out, opacity 0.3s ease-in-out;
        /* Glissement + effet de fondu */
    }

    /* Quand le menu est ouvert */
    .nav-links.show {
        right: 0;
        /* Menu visible */
        opacity: 1;
        /* Pleine opacité */
    }


    .hamburger {
        display: flex;
    }

    .excursions-grid {
        grid-template-columns: 1fr;
        width: 100%;
    }

    /* Scaling down text sizes for mobile */
    .hero-section {
        width: 100%;
    }

    .hero-section .center .title {
        font-size: 35px;
        width: 95%;
    }

    .hero-section .center .sub-title {
        font-size: 20px;
        width: 95%;
    }

    .contact .col-md-6 {
        width: 95%;
    }

    .gallery .imags {
        padding: 4px;
        width: 100%;
    }

    .logo img {
        width: 70px;
    }


    .nav-links {
        flex-direction: column;
        top: 100%;
        right: 0;
        width: 0%;
        opacity: 0;
    }

    .services .box {
        width: 100%;
        margin-bottom: 30px;
    }

    body {
        transition: margin-left .5s;
    }

    .btn-reservation {
        display: none
    }

    .a-propos {
        flex-direction: column;
        height: fit-content;
        align-items: center;
        justify-content: center;
        margin: 20px 0;
        width: 100%;
    }

    .my-5 {
        flex-direction: column;
        height: fit-content;
        align-items: center;
        justify-content: center;
        margin: 20px 0;
        width: 95%;
    }

    .content_bo {
        margin-top: 40px;
        align-items: center;
        justify-content: center;
        margin-bottom: 30px;
        width: 95%;
    }

    img {
        width: 80%;
    }

    .image-pro {
        display: flex;
        flex-direction: column;
        width: 80%;
    }

    .content_box {
        flex-direction: column;
        margin-top: 40px;
        align-items: center;
        justify-content: center;
        width: 95%;
    }

    .services {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 0;
        width: 100%;
    }

    .contact {
        align-items: center;
        justify-content: center;
        width: 100%;
        padding: 0;
    }

    .titre {
        flex-direction: column;
        height: fit-content;
        align-items: center;
        justify-content: center;
        width: 80%;
    }

    .center {
        margin-bottom: 30px;
        width: 95%;
    }

    /* Smooth transition for hamburger menu */
    .hamburger {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 25px;
        cursor: pointer;
        transition: transform 0.3s ease;
    }

    .bar {
        height: 4px;
        width: 100%;
        background-color: var(--text-color);
        transition: all 0.3s ease;
        border-radius: 5px;
    }

    /* Quand le menu est ouvert (classe active sur le hamburger) */
    .hamburger.active .bar:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
        /* Cache la barre du milieu */
    }

    .hamburger.active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    /* Effet de transition sur le bouton au survol */
    .hamburger:hover .bar {
        background-color: var(--hover-color);
    }

    /* Navigation Links sliding down smoothly */
    .nav-links.show {
        display: flex;
        width: 100%;
        animation: slideDown 0.5s ease;
    }

    @keyframes slideDown {
        0% {
            opacity: 0;
            transform: translateY(-50px);
        }

        100% {
            opacity: 1;
            transform: translateY(0);
        }
    }

    footer {
        padding: 20px 0;
    }

    footer .footer-social a {
        margin: 0 10px;
        font-size: 1.8rem;
    }
}


/* Smooth fade-in effect for the hero section */
.hero-section .center {
    animation: fadeIn 1s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

* {
    box-sizing: border-box;
}


.carousel-container {
    width: 80%;
    max-width: 800px;
    margin: 50px auto;
    overflow: hidden;
    position: relative;
}

.carousel {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel img {
    width: 100%;
    max-height: 400px;
    object-fit: contain;

}

/* Boutons de navigation */
.prev,
.next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 18px;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

/* Dots / indicateurs */
.dots {
    text-align: center;
    margin-top: 20px;
}

.dot {
    height: 15px;
    width: 15px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
}

.active {
    background-color: #717171;
}

/* Bouton pour réactiver le défilement automatique */
#reactivateBtn {
    display: inline-block;
    padding: 12px 25px;
    margin-top: 20px;
    background-color: #4CAF50;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 16px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

#reactivateBtn:hover {
    background-color: #98ac99;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

#reactivateBtn i {
    margin-right: 8px;
}

/* Animation de secousse légère pour attirer l'attention */
#reactivateBtn:hover {
    animation: shake 0.3s;
}

@keyframes shake {
    0% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-5px);
    }

    50% {
        transform: translateX(5px);
    }

    75% {
        transform: translateX(-5px);
    }

    100% {
        transform: translateX(0);
    }
}
.excursion-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
  }
  
  .price {
    font-size: 18px;
    font-weight: bold;
    color: #29d9d5;
    background: rgba(255, 255, 255, 0.08);
    padding: 8px 15px;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  }
  .reserver {
    margin-top: 40px;
    padding: 20px 30px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.25);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .reserver .price {
    font-size: 24px;
    font-weight: bold;
    color: #f52f2f;
    background-color: rgba(255, 255, 255, 0.08);
    padding: 10px 20px;
    border-radius: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  }
  
  .reserver .card-btn {
    background: linear-gradient(45deg, #29d9d5, #24a3ec);
    color: white;
    padding: 10px 25px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  }
  
  .reserver .card-btn:hover {
    transform: scale(1.05);
    background: linear-gradient(45deg, #24a3ec, #29d9d5);
  }
    