/* Reset some default browser styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Open Sans', 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: #5e5757;
}
body {
    background-color: #333; 
    color: #111010;
}
section {
    margin-top: 50px;
    padding: 50px 0;
}

header {
    background-color: rgba(0, 0, 0, 0.7);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 75px;
    padding: 0 5%;
    box-shadow: 0 0 10px #181a19;
    backdrop-filter: blur(5px);
}
.logo {
    width: 100px;
}
.logo img {
    width: 100%;
}
.menu {
    display: flex;
    align-items: center;   
}
.menu li {
    margin: 0 15px;
    list-style-type: none;
}
.menu li a {
    color: #fff;
    font-size: 1.5rem;
    font-weight: bolder;
    transition: color 0.3s;
}
.menu li a:hover {
    color: #df222c;
}
.btn-reservation {
    color: #e23941;
    font-size: 1.4rem;
    border: 2px solid #df222c;
    padding: 5px 20px;
    transition: 0.5s;
    font-weight: bolder;
}
.btn-reservation:hover {
    background-color: #df222c;
    color: #fff;
}

/* Language Switcher */
.language-switcher {
    position: relative;
    display: flex;
    align-items: center;
    margin-left: 20px;
}
.language-btn {
    display: flex;
    align-items: center;
    background-color: transparent;
    border: none;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 5px 10px;
    border: 1px solid #df222c;
    border-radius: 5px;
    transition: all 0.3s;
}
.language-btn img {
    width: 20px;
    height: 20px;
    margin-right: 5px;
}
.language-btn:hover {
    background-color: #df222c;
}
.language-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #333;
    border: 1px solid #df222c;
    border-radius: 5px;
    overflow: hidden;
    z-index: 1000;
}
.language-menu a {
    display: flex;
    align-items: center;
    color: #fff;
    font-size: 1.2rem;
    padding: 10px;
    transition: all 0.3s;
}
.language-menu a img {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}
.language-menu a:hover {
    background-color: #e23941;
}
.language-switcher:hover .language-menu {
    display: block;
}
/* Home section CSS */
#home {
    background: linear-gradient(rgba(0,0,0,0.6),#333), url("Image/LOST.DIR/1.27.1_1.27.1.jpg");
    background-position: center;
    background-size: cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    box-shadow: 0 0 10px #181a19;
    text-align: center;
}
#home h2 {
    font-size: 4rem;
    margin-bottom: 10px;
    -webkit-text-stroke: 1px #fff;
    color: transparent;
    text-transform: lowercase;
    animation: slideInLeft 1.5s;
}
#home h4 {
    font-size: 5rem;
    color: #fff;
    margin-bottom: 10px;
    text-transform: capitalize;
    animation: slideInRight 1.5s;
}
#home p {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 10px;
    animation: fadeIn 1.5s;
}
.home-btn {
    margin-top: 20px;
    animation: fadeInUp 3s;
}

/* À propos section CSS */
#a-propos {
    padding: 0 10%;
    width: 100%;
}
.title {
    text-transform: capitalize;
    margin: 70px 0;
    font-weight: bold;
    color: #e23941;
    position: relative;
    font-size: 2.5rem;
    text-align: center;
}
.title::after {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    content: "";
    height: 5px;
    background-color: #e23941;
    width: 100px;
    top: 100%;
    margin-top: 10px;
}
.img-desc {
    display: flex;
    align-items: center; 
    justify-content: space-between;
    width: 100%;
    flex-wrap: wrap;
}
.img-desc .left {
    position: relative;
    margin-left: 10px;
    height: 280px;
    width: 40%;
}
.img-desc .right {
    width: 57%;
}
.img-desc .left img {
    width: 100%;
    height: 100%;
    position: relative;
    box-shadow: 0 0 10px #e23941;
}
.img-desc .left::after {
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: #e23941;
    bottom: -10px;
    right: 10px;
    content: "";
    z-index: -1;
}
.img-desc .right h3 {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 20px;
}
.img-desc .right p {
    color: #999;
    font-size: 1.8rem;
    margin-bottom: 36px;
}
.img-desc .right a {
    border: 1px solid #29d9d5;
    color: #e23941;
    font-size: 1.4rem;
    padding: 8px 25px;
    font-weight: bold;
    transition: all 0.3s;
}
.img-desc .right a:hover {
    background-color: #e23941;
    color: #fff;
}

/* Excursions section CSS */
#nos-excursions {
    padding: 0 10%;
    margin-bottom: 50px;
    
}
#nos-excursions .content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    border-radius: 20px;
}
#nos-excursions .content .box {
    overflow: hidden;
    position: relative;
    height: 250px;
    transition: 0.5s;
    border-radius: 20px;
    
}
#nos-excursions .content .box img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: transform 0.5s;
    border-radius: 20px;
}
.box .content {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    text-align: center;
    align-items: center;
    display: flex;
    justify-content: center;
    flex-direction: column;
    backdrop-filter: blur(5px);
    transform: translateX(100%);
    transition: 0.5s;
    border-radius: 20px;
}
.box .content h4 {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 10px;
}
.box .content p {
    color: #fff;
    padding: 2px;
    font-size: 1.2rem;
}
.box .content p:nth-child(3) {
    margin-bottom: 25px;
}
.box .content a {
    font-size: 1.4rem;
    margin-top: 60px;
    padding: 10px 60px;
    border: 2px solid #e23941;
    color: #e23941;
    transition: all 0.3s;
}

/* Contact section CSS */
#contact form {
    background-color: #fff;
    margin: auto;
    display: flex;
    flex-direction: column;
    padding: 20px;
}
.left {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 20px;
}
.left .zaho, .left .izy {
    display: flex;
    flex-direction: column;
    width: 49%;
}
#contact form label {
    font-size: 14px;
    padding: 10px 0;
    font-weight: 600;
}
#contact form input {
    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 #e23941;
}
iframe {
    height: 400px;
    width: 100%;
}
#contact button {
    width: fit-content;
    padding: 8px 40px;
    background-color: #111;
    border: 1px solid #111;
    color: #fff;
    cursor: pointer;
    transition: 0.5s;
}
#contact button:hover {
    letter-spacing: 1px;
}

/* Container CSS */
.container {
    padding: 20px;
    text-align: center;
}
.container img {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    height: auto;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
   box-sizing: cover;
   vertical-align: top;
   border-radius: 10px;
}

.container h1 {
    font-size: 3rem;
    color: #e23941;
    margin: 20px 0;
    animation: fadeInDown 1s;
}

/* Island section CSS */
.island-section,
.departure-section,
.activity-section,
.meal-section {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    margin-bottom: 50px;
    justify-content: space-between;
    padding: 30px;
    position: relative;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.island-section img,
.departure-section img,
.meal-section img {
    width: 60%;
    max-width: 600px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s;
}
.activity-section img {
    width: 40%;
    max-width: 500px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s;
}

.island-section img:hover,
.departure-section img:hover,
.activity-section img:hover,
.meal-section img:hover {
    transform: scale(1.05);
}

.island-content,
.departure-content,
.activity-content,
.meal-content {
    max-width: 40%;
}
.island-section video {
    width: 100%;
    max-width: 600px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s;

}

.island-section h2,
.departure-section h2,
.activity-section h3,
.meal-section h3 {
    font-size: 2.5rem;
    color: #e23941;
    margin-bottom: 20px;
    animation: fadeInLeft 1s;
}
.island-section h3 {
font-size: 2.2rem;
    color: #fff;
    margin-bottom: 10px;
    animation: fadeInLeft 1s;
}
.island-section h4 {
    font-size: 1.9rem;
        color: #f1e7e7;
        margin-bottom: 20px;
        animation: fadeInLeft 1s;
    }
.island-section h5 {
        font-size: 1.7rem;
            color: #e23941;
            margin-bottom: 20px;
            animation: fadeInLeft 1s;
        }
        .island-section p span {
            color: #e23941;
            font-size:medium;
            font-weight: bolder;
        }
        .activity-section p span {
            color: #e23941;
            font-size:medium;
            font-weight: bolder;
        }

.island-section p,
.departure-section p,
.activity-section p,
.meal-section p {
    font-size: 1.6rem;
    color: #ddd;
    margin-bottom: 10px;
    animation: fadeInRight 1s;
}


/* Footer CSS */
footer {
    width: 100%;
    background-color: #222;
    padding: 40px 0;
    font-size: 1.4rem;
    text-align: center;
    
 
display: flex;
    flex-direction: column;
    align-items: center;
}

footer .footer-contact, footer .footer-about, footer .footer-social {
    margin-bottom: 20px;
}

footer .footer-contact h4, footer .footer-about h4, footer .footer-social h4 {
    margin-bottom: 10px;
    font-size: 2rem;
    color: #e23941;
}

footer .footer-contact p, footer .footer-about p, footer .footer-social a {
    margin: 5px 0;
    font-size: 1.6rem;
    color: #fff;
}

footer .footer-social a {
    margin: 0 15px;
    text-decoration: none;
    font-size: 2rem;
    color: #fff;
    transition: color 0.3s;
}

footer .footer-social a:hover {
    color: #e23941;
}

footer p {
    color: #fff;
    margin-top: 20px;
}

footer p span {
    color: #e23941;
}

/* Scroll to top button CSS */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    
    displ
display: none;
    background-color: #29d9d5;
    
    bor
border-radius: 50%;
    width: 50px;
    height: 50px;
    align-items: center;
    
    justify-cont
justify-content: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    cursor: pointer;
    
 
transition: all 0.3s;
}

.scroll-to-top img {
    width: 40px;
    height: 40px;
}

.scroll-to-top:hover {
    background-color: #fff;
}

.scroll-to-top:hover img {
    filter: invert(1);
}

/* Animations */
@keyframes slideInLeft {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        transform: translateY(10px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeInDown {
    from {
        transform: translateY(-10px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Adjustments for mobile view */
@media (max-width: 750px){
    header .menu {
        display : none
    }
    .btn-reservation{
        display : none 
    }
    .img-desc,
    .island-section,
    .departure-section,
    .activity-section,
    .meal-section {
        flex-direction: column;
        width: 100%;
    }
    #home h2 {
        font-size: 22px;
    }
    #home h4 {
        font-size: 32px;
    }
    #home p {
        text-align: center;
        font-size: 15px;
    }
    .responsive-menu {
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: end;
        position: relative;
        cursor: pointer;
    }
    .responsive-menu::after {
        position: absolute;
        content: "";
        height: 3px;
        background-color: #e23941;
        width: 28px;
        box-shadow: 0 10px 0 #e23941;
        transform: translateY(-10px);
        transition: 0.5s;
    }
    .responsive-menu.active::after {
        box-shadow: 0 0 0 #e23941;
        transform: rotate(45deg);
    }
    .responsive-menu::before {
        position: absolute;
        content: "";
        height: 3px;
        background-color: #e23941;
        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;
    }
    header .menu.responsive li {
        margin: 20px;
        width: 100px;
        padding-left: 20px;
    }
    
    .img-desc, 
    .island-content,
    .departure-content,
    .activity-content,
    .meal-content {
        max-width: 100%;
    }
    .img-desc .left, .img-desc .right,
    .island-section img,
    .departure-section img,
    .activity-section img,
    .meal-section img {
        width: 100%;
    }
    footer {
        
      
        padding: 20px 0;
            }
        
            footer .footer-social a {
                margin: 0 10px;
                font-size: 1.8rem;
            }
        }
        /* Ajoutez ceci dans votre fichier style.css */
html[lang="ar"], html[lang="he"] {
    direction: rtl;
    text-align: right;
}

html[lang="ar"] body, html[lang="he"] body {
    font-family: 'Arial', sans-serif;
    /* Ajoutez ici d'autres styles spécifiques pour les langues RTL */
}

/* Exemples de styles pour les menus */
html[lang="ar"] .menu, html[lang="he"] .menu {
    direction: rtl;
}

html[lang="ar"] .menu li, html[lang="he"] .menu li {
    float: right;
}

@media (max-width: 768px) {
    .img-desc {
      flex-direction: column;
      gap: 20px;
      padding: 20px;
      margin-bottom: 50px;
      background-color: rgba(255, 255, 255, 0.03);
      border-radius: 12px;
    }
  
    .img-desc .left,
    .img-desc .right {
      width: 100%;
      max-width: 100%;
    }
  
    .img-desc .left img {
      width: 100%;
      height: auto;
      border-radius: 10px;
    }
  
    .img-desc .right {
      padding: 10px 5px;
    }
  
    .img-desc .right h3 {
      font-size: 2.2rem;
      text-align: center;
      margin-bottom: 20px;
      color: #e23941;
      line-height: 1.4;
    }
  
    .img-desc .right p {
      margin-bottom: 16px;
      text-align: justify;
      color: #ddd;
    }
  
    .img-desc .right a {
      display: inline-block;
      margin: 10px auto 0;
      font-size: 1.5rem;
      padding: 10px 24px;
      border: 1px solid #e23941;
      color: #e23941;
      text-align: center;
      transition: all 0.3s;
      border-radius: 5px;
    }
  
    .img-desc .right a:hover {
      background-color: #29d9d5;
      color: #fff;
    }
  }
  .img-desc .right h3 {
    font-size: 2.4rem;
    text-align: center;
    color: #e23941;
    margin-top: 20px;
    margin-bottom: 25px;
    line-height: 1.4;
    letter-spacing: 0.5px;
  }
  .excursion-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    padding: 0 10%;
    margin-bottom: 60px;
  }
  
  .excursion-card {
    background-color: #222;
    border-radius: 14px;
    box-shadow: 0 0 15px rgba(41, 217, 213, 0.2);
    overflow: hidden;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    min-height: 500px;
  }
  
  .excursion-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 20px rgba(41, 217, 213, 0.4);
  }
  
  .excursion-card img {
    width: 100%;
    height: 70%;
    object-fit: cover;
    display: block;
    border-top-left-radius: 14px;
    border-top-right-radius: 14px;
  }
  
  .excursion-content {
    padding: 25px;
    text-align: left;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  
  .excursion-content h4 {
    font-size: 2.2rem;
    margin-bottom: 16px;
    color: #e23941;
  }
  
  .excursion-content p {
    font-size: 1.6rem;
    color: #ddd;
    margin-bottom: 20px;
    line-height: 1.7;
    flex-grow: 1;
  }
  
  .excursion-content a {
    align-self: flex-start;
    padding: 10px 24px;
    border: 1px solid #e23941;
    color: #e23941;
    text-decoration: none;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    border-radius: 5px;
  }
  
  .excursion-content a:hover {
    background-color: #e23941;
    color: #fff;
    border-color: #e23941;
  }
 /* Nouveau style pour la section contact */
#contact {
    padding: 80px 10% 40px;
    background-color: #111;
  }
  
  .contact-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
}

.contact-form {
    flex: 1 1 45%;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.video-section {
    flex: 1 1 45%;
}

@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
    }

    .contact-form, .video-section {
        width: 100%;
        flex: 1 1 100%;
    }
}
.contact-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
}

.contact-form {
    flex: 1 1 45%;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.video-section {
    flex: 1 1 45%;
}

@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
    }

    .contact-form, .video-section {
        width: 100%;
        flex: 1 1 100%;
    }
}

  /* Vidéo à droite */
  .video-section {
    flex: 1 1 400px;
  }
  
  .video-section video {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.4);
  }
  
  /* Responsive */
  @media (max-width: 900px) {
    .contact-container {
      flex-direction: column;
    }
  
    .contact-form,
    .video-section {
      width: 100%;
    }
  }
  