
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Raleway', sans-serif;
}
a {
    text-decoration: none;
}
html {
    font-size: 62.5%;
    scroll-behavior: smooth;
    scroll-padding-top: 9px;
}
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-thumb {
    background-color: #ccc;
}
body {
    background-color: #111;
    color: white;
}
section {
    margin-top: 50px;
}

header {
    background-color: #222;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 50px;
    padding: 0 5%;
    flex-wrap: wrap;
}
header .logo a {
    font-size: 25px;
    color: #29d9d5;
}
header .logo a span {
    color: #fff;
}
.menu {
    display: flex;
    align-items: center;
}
.menu li {
    margin: 0 15px;
    list-style-type: none;
}
.menu li a {
    color: #fff;
    font-size: 14px;
}
.btn-reservation {
    color: #29d9d5;
    font-size: 14px;
    border: 2px solid #29d9d5;
    padding: 5px 20px;
    transition: 0.5s;
    font-weight: bolder;
}
.btn-reservation:hover {
    background-color: #29d9d5;
    color: #fff;
}
.menu-toggle {
    display: none;
    font-size: 24px;
    color: #fff;
    cursor: pointer;
}

/* Home section */
#home {
    background: linear-gradient(rgba(0,0,0,0.1),#333), url("images/img1.jpg");
    background-position: center;
    background-size: cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}
#home h4 {
    font-size: 50px;
    color: #fff;
    margin-bottom: 10px;
    text-transform: capitalize;
}
#home a.btn-reservation {
    padding: 10px 15px;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
    .menu {
        display: none;
        flex-direction: column;
        background-color: #222;
        position: absolute;
        top: 50px;
        right: 0;
        width: 100%;
        text-align: center;
    }
    .menu li {
        margin: 10px 0;
    }
    .menu.active {
        display: flex;
    }
    .menu-toggle {
        display: block;
    }
    header {
        padding: 10px;
    }
    .btn-reservation {
        margin-top: 10px;
        padding: 10px;
        width: 100%;
        text-align: center;
    }
    #home h4 {
        font-size: 28px;
        padding: 0 10px;
    }
}


/*A propos CSS*/
/* Section À propos */
#a-propos {
    margin: 100px 0 50px;
    padding: 0 10%;
    width: 100%;
}

.title {
    text-transform: capitalize;
    margin: 70px 0 30px 15px;
    font-weight: bold;
    color: #29d9d5;
    position: relative;
    font-size: 24px;
}

.title::after {
    content: "";
    position: absolute;
    left: -15px;
    top: 0;
    height: 100%;
    width: 5px;
    background-color: #fff;
}

.img-desc {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
    gap: 20px;
}

.img-desc .left {
    position: relative;
    width: 40%;
    height: 250px;
    margin-left: 10px;
}

.img-desc .left video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-shadow: 0 0 10px #29d9d5;
    border-radius: 8px;
}

.img-desc .left::after {
    content: "";
    position: absolute;
    bottom: -10px;
    right: 10px;
    width: 100%;
    height: 100%;
    background-color: #29d9d5;
    z-index: -1;
    border-radius: 8px;
}

.img-desc .right {
    width: 57%;
}

.img-desc .right h3 {
    color: #fff;
    font-size: 26px;
    margin-bottom: 20px;
}

.img-desc .right p {
    color: #ccc;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.img-desc .right a {
    display: inline-block;
    border: 1px solid #29d9d5;
    color: #29d9d5;
    font-size: 14px;
    padding: 8px 25px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s, color 0.3s;
}

.img-desc .right a:hover {
    background-color: #29d9d5;
    color: #fff;
}

.img-desc .left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 0 10px #29d9d5;
}



/*Destination CSS*/
#popular-destination {
    padding: 0 10% ;
    margin-bottom: 50px;
    
}
#popular-destination .content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px,1fr));
    gap: 32px;
}
#popular-destination .content .box {
    overflow: hidden;
    position: relative;
    height: 250px;
    transition: 0.5s;
}
#popular-destination .content .box img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.box .content {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: #0d0e0e;
    text-align: center;
    align-items: center;
    transform: translateX(100%);
    transition: 0.5s;
}
.box .content  h4 {
    font-size: 25px;
    margin-bottom: 10px;
}
.box .content p {
    padding: 2px;
    font-size: 12px;
}
.box .content p:nth-child(3){
    margin-bottom: 25px;
}
.box .content a {
    margin-top: 60px;
    padding: 10px 60px;
    border: 2px solid #29d9d5;
    color: #29d9d5;
    font-weight: bold;
}
.box:hover {
    box-shadow: 0 0 10px #29d9d5;
}
.box:hover .content {
    transform: translateX(0);
}

/* Contact CSS */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #070707;
  }
  
  /* SECTION CONTACT */
  #contact {
    background-color: #fff;
    padding: 40px 20px;
    max-width: 600px;
    margin: 50px auto;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
  }
  
  #contact h2 {
    color: #333;
    margin-bottom: 10px;
  }
  
  #contact p {
    color: #555;
    margin-bottom: 20px;
  }
  
  #contact form {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  #contact input,
  #contact textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
  }
  
  #contact button {
    background-color: #29d9d5;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
  }
  
  #contact button:hover {
    background-color: #29d9d5;
  }
  
  .contact-info {
    margin-top: 30px;
    color: #333;
  }
  
  .whatsapp-button {
    display: inline-block;
    background-color: #25D366;
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 10px;
    display: inline-block;
    transition: background-color 0.3s;
  }
  
  .whatsapp-button:hover {
    background-color: #1ebe5d;
  }
  
  /* BOUTON FLOTTANT WHATSAPP */
  .whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 60px;
    right: 20px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    text-align: center;
    z-index: 100;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .whatsapp-float img {
    width: 32px;
    height: 32px;
  }
  
footer {
    width: 100%;
    background-color: #222;
    padding: 10px 0;
    font-size: 14px;
    text-align: center;
}
footer p {
    color: #fff;
}
footer p span {
    color: #29d9d5;
}
.responsive-menu {
    display: none;
}
/*Responsive*/
@media (max-width:750px) {
    header .menu {
        display: none;
    }
    .btn-reservation {
        display: none;
    }
    /*Home responsive*/
    #home h2 {
        font-size: 18px;
        -webkit-text-stroke: 0;
        color: #fff;
    }
    #home h4 {
        font-size: 28px;
    }
    #home p {
        text-align: center;
        font-size: 10px;
    }
    .find_trip {
        width: 100%;
        height: 200px;
    }
    .find_trip form {
        flex-wrap: wrap;
    }
    .find_trip form div {
        margin-top: 10px;
        flex-direction: column;
        width: 47%;
    }
    .find_trip form input[type="submit"]{
        width: 47%;
    }
    .home-btn {
        display:block;
    }
    /*Responsive A propos*/
    .img-desc {
        flex-direction: column;
        width: 100%;
    }
    .img-desc .left , .img-desc .right {
        width: 100%;
    }
    .img-desc .left video {
        width: 100%;
    }
    .img-desc .left::after {
        background-color: transparent;
    }
    .img-desc .left {
        margin-bottom: 20px;
    }

    /*Responsive menu*/
    .responsive-menu {
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        cursor: pointer;
    }
    .responsive-menu::after {
        position: absolute;
        content: "";
        height: 3px;
        background-color: #29d9d5;
        width: 28px;
        box-shadow: 0 10px 0 #29d9d5;
        transform: translateY(-10px);
        transition: 0.5s;
    }
    .responsive-menu.active::after {
        box-shadow: 0 0 0 #29d9d5; 
        transform: rotate(45deg);
    }
    .responsive-menu::before {
        position: absolute;
        content: "";
        height: 3px;
        background-color: #29d9d5;
        width: 28px;
        transform: translateY(10px);
        transition: 0.5s;
    }
    .responsive-menu.active::before {
        transform: rotate(-45deg);
    }
    header .menu.responsive {
        display: flex;
        position: absolute;
        top: 50px;
        right: 0;
        flex-direction: column;
        background-color: #222;
        align-items: unset;
        animation: animate-menu 1s forwards;
    }
    header .menu.responsive li {
        margin: 20px;
        width: 100px;
        padding-left: 20px;
    }

    @keyframes animate-menu {
        0% {
            transform: translateY(0);
        }
        100% {
            transform: translateY(100%);
        }
    }
}
/*decouvrir/*
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #000; /* fond noir */
    color: #fff; /* texte blanc */
}

/* Header */
header {
    background-color: #111;
    padding: 20px 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    color: #fff;
    font-size: 28px;
    text-decoration: none;
}

.logo span {
    color: #00e5e5;
    font-weight: bold;
}

.menu {
    list-style: none;
    display: flex;
    gap: 25px;
}

.menu li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.menu li a:hover {
    color: #00e5e5;
}

/* Section vidéos */
.videos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    padding: 40px;
}

.video-card {
    background-color: #111;
    border-radius: 12px;
    box-shadow: 0 0 15px #00e5e5;
    padding: 15px;
    transition: transform 0.3s;
}

.video-card:hover {
    transform: translateY(-5px);
}

.video-card h2 {
    margin-bottom: 10px;
    font-size: 20px;
    color: #00e5e5;
}

video {
    width: 100%;
    border-radius: 10px;
}

/* Footer */
footer {
    background-color: #111;
    color: #ccc;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
    font-size: 14px;
}



GALERY

.photo-gallery {
  padding: 50px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.photo-gallery h2 {
  font-size: 2em;
  margin-bottom: 30px;
  color: #333;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}

.gallery-grid img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.05);
}



.instagram-float {
    position: fixed;
    bottom: 80px; /* juste au-dessus de WhatsApp */
    right: 20px;
    z-index: 1000;
    background-color: #E4405F;
    padding: 10px;
    border-radius: 50%;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
    transition: all 0.3s ease-in-out;
}

.instagram-float img {
    width: 30px;
    height: 30px;
}

.instagram-float:hover {
    transform: scale(1.1);
    background-color: #C13584;
}
