*{
  text-decoration: none;
}
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  background-color: #1b1c0f;  
  text-decoration: none;
}
html{
  scroll-behavior: smooth;
}
.container {
    max-width: 100%;
    padding: 20px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container img {
    width: 100%;
    height: auto;
    max-width: 1200px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}


.content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.left, .right {
  color: #fff;  
    flex: 1 1 300px;
}

.left h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.left p {
    font-size: 18px;
    line-height: 1.6;
}

.right p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.details {
    margin-top: 40px;
    border-top: 1px solid #000;
    padding-top: 10px;
    font-size: 14px;
}


.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    padding: 20px;
}

.gallery-item {
    flex: 1 1 300px;
    max-width: 32%;
    box-sizing: border-box;
}

.gallery-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Responsive tweaks */
@media (max-width: 900px) {
    .gallery-item {
        max-width: 48%;
    }
}

@media (max-width: 600px) {
    .gallery-item {
        max-width: 100%;
    }
}


.image-section {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    padding: 20px;
}

.image-item {
    flex: 1 1 400px;
    max-width: 48%;
    box-sizing: border-box;
}

.image-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Responsive tweaks */
@media (max-width: 768px) {
    .image-item {
        max-width: 100%;
    }
}


.dining-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    padding: 20px;
}

.dining-item {
    flex: 1 1 400px;
    max-width: 48%;
    box-sizing: border-box;
}

.dining-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Responsive tweaks */
@media (max-width: 768px) {
    .dining-item {
        max-width: 100%;
    }
}



  
nav {
    text-decoration: none;
    background: #ffffff;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    padding: 0 100px;
    font-family: 'Segoe UI', sans-serif;
    border-radius: 16px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  }
  .logo a{
    color: black;
  }
  nav .logo {
    text-decoration: none;
    color: #111;
    font-size: 28px;
    font-weight: bold;
  }
  
  nav .nav-items {
    display: flex;
    flex: 1;
    padding: 0 0 0 40px;
  }
  
  nav .nav-items li {
    list-style: none;
    padding: 0 15px;
  }
  
  nav .nav-items li a {
    color: #111;
    font-size: 17px;
    font-weight: 500;
    text-decoration: none;
    transition: 0.3s;
  }
  
  nav .nav-items li a:hover {
    color: #f0835a;
  }
  
  nav .menu-icon,
  nav .cancel-icon {
    font-size: 20px;
    color: #111;
    cursor: pointer;
    display: none;
    padding: 0 20px;
  }
  
  /* ========== Responsive ========== */
  @media (max-width: 1140px) {
    nav {
      padding: 0 20px;
    }
  
    nav .logo {
      flex: 1;
      text-align: center;
    }
  
    nav .nav-items {
      position: fixed;
      top: 70px;
      left: -100%;
      width: 100%;
      height: 100vh;
      background: #ffffff;
      text-align: center;
      display: inline-block;
      transition: left 0.3s ease;
      z-index: 98;
      padding-top: 50px;
    }
  
    nav .nav-items.active {
      left: 0;
    }
  
    nav .nav-items li {
      margin: 25px 0;
    }
  
    nav .menu-icon {
      display: block;
    }
  
    nav .menu-icon span {
      display: block;
    }
  
    nav .cancel-icon {
      display: none;
    }
  
    nav .cancel-icon.show {
      display: block;
    }
  }

  .cancel-icon {
    display: none;
    font-size: 24px;
    color: #111;
    cursor: pointer;
    position: absolute;
    top: 20px;
    right: 30px;
    z-index: 1000;
  }
  
  .cancel-icon.show {
    display: block;
  }
  

  .menu-icon.open span {
    transform: rotate(90deg);
    transition: transform 0.3s ease;
  }


  /* Desktop styles - apply only when screen is wider than 980px */
@media (min-width: 981px) {
    nav {
      background: white;
      padding: 15px 50px;
      height: auto;
      justify-content: space-between;
      align-items: center;
      border-radius: 20px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.05);
      position: relative;
      top: 20px;
      left: 50%;
      transform: translateX(-50%);
      width: 90%;
      max-width: 1200px;
      z-index: 999;
    }
  
    nav .logo {
      font-size: 24px;
      font-weight: 700;
    }
  
    nav .nav-items {
      display: flex;
      flex: 1;
      justify-content: center;
      padding-left: 40px;
      position: static;
      height: auto;
      background: transparent;
    }
  
    nav .nav-items li {
      margin: 0 15px;
      list-style: none;
    }
  
    nav .nav-items li a {
      color: black;
      font-size: 16px;
      text-decoration: none;
      font-weight: 500;
    }
  
    /* Hide hamburger icon on desktop */
    .menu-icon {
      display: none !important;
    }
  }
  
  @media (max-width: 980px) {
    nav .nav-items {
      position: fixed;
      top: 70px;
      left: -150%;
      width: 100vw;
      height: 100vh;
      background: white;
      transition: left 0.3s ease;
      z-index: 998;
      padding-top: 50px;
      overflow-x: hidden;
      display: inline-block;
      text-align: center;
    }
  
    nav .nav-items.active {
      left: 0;
    }
  }
  
  
  .nav-items ul {
    display: flex;
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .nav-items ul li a {
    color: #111;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
  }
  
  .nav-items ul li a:hover {
    color: #f0835a;
  }
  
  @media (max-width: 980px) {
    .nav-items ul {
      flex-direction: column;
      gap: 30px; /* optional spacing between items */
      padding: 0;
      margin: 0;
    }
  
    .nav-items ul li {
      list-style: none;
    }
  
    .nav-items ul li a {
      font-size: 20px;
      color: black;
      text-decoration: none;
      font-weight: 500;
    }
  }
  
  .lang-flag {
    width: 30px;
    height: 30px;
    border-radius: 50%;
  }


  #particles-js {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
  }

  #testimonials {
    width: -webkit-fill-available;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 150px;
    padding: 20px;
}

.testimonials-block {
    width: 976px;
    height: auto;
}

.testimonials-tittle {
    width: 100%;
    height: auto;
    text-align: center;
    margin-bottom: 20px;
}

.testimonials-tit {
    color: #fff;
    font-size: 36px;
    text-align: center;
}

.testimonials-text {
    font-size: 16px;
    color: lightgray;
    text-align: center;
}

.testimonials-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: row;
    gap: 20px;
}

/* Cards */
.testimonials-card {
    width: 313.55px;
    height: 237px;
    border-radius: 20px;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: column;
    background-color: #ddd;
}

/* Card Title Section */
.card-tittle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    width: 100%;
}

/* User Image */
.testimonials-image {
    display: flex;
    align-items: center;
}

.img-testimonials {
    width: 50px;
    height: 50px;
    border-radius: 10px;
}

/* Name and Username */
.testimonials-name {
    display: flex;
    flex-direction: column;
    margin-left: 10px;
}

.testimonials-name-h4 {
    font-size: 16px;
    margin: 0;
}

.testimonials-name-paragraph {
    font-size: 14px;
    margin: 0;
}

/* Badge */
.card-badge {
    width: 100%;
    height: auto;
}

.badge-paragraph {
    width: 100px;
    padding: 5px;
    border-radius: 20px;
    font-size: 14px;
    background-color: black;
    color: #fff;
    text-align: center;
}

/* Responsive Design for Mobile */
@media screen and (max-width: 768px) {
    .testimonials-block {
        width: 100%;
        padding: 0 15px;
    }

    .testimonials-content {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .testimonials-card {
        width: 90%;
        height: auto;
    }

    .testimonials-tit {
        font-size: 28px;
    }

    .testimonials-text {
        font-size: 14px;
    }

    .badge-paragraph {
        width: 80px;
        font-size: 12px;
    }
}


#faq {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin-top: 50px;
}

.faq-container {
    display: flex;
    width: 100%;
    max-width: 976px; 
    justify-content: space-between;
    gap: 40px;
}

.faq-tittle {
    width: 46%;
    display: flex;
    justify-content: space-evenly;
    align-items: flex-start;
    flex-direction: column;
}
.faq-tit-top{
    width: 100%;
    height: 14.17%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}
.faq-tit-mid{
    color: #fff;
    width: 100%;
    height: 40%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
}
.faq-tit-bottom{
    color: lightgray;
    width: 100%;
    height: 20%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
}
.faq-badge {
    width: 11%;
    height: 100%;
    background-color: black;
    color: #fff;
    padding: 5px 0px;
    border-radius: 20px;
    justify-content: center;
    align-items: center;
    display: flex;
}

.badge-text {
    margin: 0;
    font-size: 14px;
}

.mid-paragraph {
    font-size: 36px;
    font-weight: 700;
}

.bottom-paragraph {
    font-size: 16px;
    color: #606476;
    margin-top: 10px;
}

.download-button{
    width: 150px;
    height: 40px;
    background-color: #ddd;
    border: black solid 1px;
    text-decoration: none;
    color: black;
    cursor: pointer;
    font-size: 16px;
    float: left;
}
.download-button:hover{
    background-color: #d98237;
    color: black;
    transition: all ease-out 1s;
}
.download-button:active{
    background-color: #ff7f50;
    color: black;
}

.faq-content {
    width: 47%;
    background-color: lightgray;
    border-radius: 20px;
    display: grid;
    gap: 15px;
    padding: 20px;
}

.faq-form {
    cursor: pointer;
}

.question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-size: 20px;
    margin-bottom: 10px;
}

.answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 1s ease;
}

.answer p {
    font-size: 14px;
    line-height: 1.6;
    padding-top: 1rem;
}

.faq-form.active .answer {
    max-height: 300px;
}

.faq-form.active svg {
    transform: rotate(180deg);
}

svg {
    transition: transform 0.5s ease-in;
}





#subscription {
    width: -webkit-fill-available;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px;
    margin-top: 50px;
}

.subscription-box {
    background: #f8f8f8;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    max-width: 976px;
    width: 100%;
}

.subscription-badge {
    background: black;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    display: inline-block;
    margin-bottom: 10px;
}

.subscription-box h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.subscription-box p {
    font-size: 18px;
    color: gray;
    margin-bottom: 20px;
}

.subscription-form {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.subscription-form input {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    flex-grow: 1;
    font-size: 16px;
}

.subscribe-btn {
    background: #ff7f50;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}
.contact-btn {
  background-color: #ff7f50;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 10px;
  cursor: pointer;
}
.contact-btn:hover{
  background-color: #e26804;
  color: black;
  transition: all ease-out 1s;
}
.contact-btn:active{
  background-color: #ff7f50;
  color: black;
}

.footer {
    width: -webkit-fill-available;
    height: 70px;
    display: flex;
    justify-content: space-between;
    padding: 20px 50px;
    font-size: 14px;
    color: lightgray;
}

.footer-links a {
    text-decoration: none;
    color: lightgray;
    margin-left: 15px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons i {
    font-size: 20px;
    cursor: pointer;
    transition: 0.3s;
    color: #757474;
}

.social-icons i:hover {
    color: #d98237;
}

.contact-number{
    width: 150px;
    height: 70px;
    color: #ddd;
    font-family: "Onest", sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-bottom: 50px;
}