html {
    scroll-behavior: smooth;
  }
  @font-face {
  font-family: font;
  src: url('NizarbeINSportBlack.ttf');
 }


    body {
      font-family: font;
  background-color: #000;
  color: #c5a300; 
  direction: rtl;
  text-align: right;
  animation: fadeIn 1s ease;
  margin: 0;
  padding: 0;
}

    body::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      width: 100%;
      background-image: url('img/background.jpg');
      background-size: cover;
      background-position: center;
      filter: blur(4px);
      z-index: -1;
      opacity: 0.7;
    }

.loveshake-navbar {
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(15px);
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.1);
  padding: 10px 0px;
  border-bottom: 1px solid rgba(179,163,0,0.5); 
}

.nav-container {  
 padding: 0 28px;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  height: 45px;
  animation: floatLogo 3s ease-in-out infinite;
}

@keyframes floatLogo {
  0% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
  100% { transform: translateY(0); }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all 0.3s ease;
  transition: background 0.3s ease;
}

.nav-links a {
  color: white;
  font-size: 1rem;
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 8px;
  transition: background 0.3s ease;
  text-align: center;

}

 

.lang-switch {
  display: flex;
  gap: 8px;
}

.lang-switch button {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: none;
  padding: 6px 10px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s ease;
}

.lang-switch button:hover {
  background: rgba(255, 255, 255, 0.2);
}

.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: white;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    right: 20px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(15px);
    flex-direction: column;
    align-items: center;
    padding: 15px;
    border-radius: 10px;
    display: none;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
  }

  .nav-links.show {
    display: flex;
  }

  .nav-links a,
  .lang-switch button {
    width: 100%;
    text-align: center;
  }
 


}
button.lang-btn-active{
  background-color: #003720;
}

button{font-family: font;}



/* Slideshow Section */
.slideshow-container {
  position: relative;
  max-width: 100%;
  margin: auto;
  margin-top: 25px;
  text-align: center;
}

.slides {
  display: none;
}

.slide img {
  width: 200px;
  height: 300px;
  border-radius: 10px;
  border: 2px solid #c5a300;
  
}

.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: #c5a300;
  font-weight: bold;
  font-size: 18px;
  transition: 0.3s ease;
  border: none;
  background-color: transparent;
}

.next { right: 0; }
.prev { left: 0; }

.prev:hover, .next:hover {
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
}

/* Logo Section */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 25px;
  background-color: #001a00;
  box-shadow: 0 0 10px #c5a300;
  flex-direction: row-reverse;
  border-radius: 5px;
}

.logo {
  height: 50px;
  margin-left: 15px;
}

.restaurant-name {
  font-size: 1.2em;
  font-weight: bold;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { text-shadow: 0 0 5px #264d3c; }
  50% { text-shadow: 0 0 15px #c5a300; }
  100% { text-shadow: 0 0 5px #264d3c; }
}

/* Categories and Buttons */
.categories {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 30px;
  gap: 20px;
  margin-top: -70px;
  
 
}

.category-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 50px;
}

.category-button {
  width: 280px;
  height: 280px;
  background-color: #002200;
  background-size: cover;
  background-position: center;
  border-radius: 10%;
  border: 2px solid #c5a300;
  cursor: pointer;
  overflow: hidden;
  transition: 0.3s;
  position: relative;
  box-shadow: 0 0 10px #c5a300;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: center;
  box-shadow: inset 0 -50px 50px rgba(0, 0, 0, 0.5); /* bottom only */

}

.category-button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px #c5a300;
}

.category-label { 
  margin-top: 0px;
  font-size: 1.4em;
  color: #c5a300;
  text-align: center;
  background-color: #192520;
  padding: 7px 10px;
  border-radius: 25px;
  border: 1px solid #c5a300;
  z-index: 888; 
  width: 50%; 
}



/* Modal */
.modal {
  display: none;
  position: fixed;
  top: 10%;
  right: 20%;
  width: 60%;
  height: 80vh;
  background: rgba(0,0,0,0.8);
  overflow-y: auto;
  border: 1px solid #c5a300;
    border-radius: 10px;
  z-index: 1001;
}

.modal-content {
  background-color: rgb(0, 26, 0,0.5);
  backdrop-filter: blur(12px); /* this applies the blur */
  -webkit-backdrop-filter: blur(12px); /* for Safari */
  padding: 30px;
  border-radius: 10px;
  max-width: 800px;
  margin: 0 auto;
  color: #c5a300;
  box-shadow: 0 0 20px #c5a300;
  position: relative;
}
.close {
  position: fixed;
  top: 5px;
  left: 65px;
  font-size: 45px;
  font-weight: bold;
  cursor: pointer;
  z-index: 10000000000;
}

#modalFoodContent {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 20px;
}

/* Scrollbar */
.modal::-webkit-scrollbar {
  width: 4px; 
}

.modal::-webkit-scrollbar-track {
  background: #002b00;
  border-radius: 80px;
    margin-top: 10px;
    margin-bottom: 10px;

}

.modal::-webkit-scrollbar-thumb {
  background-color: #c5a300;
  border-radius: 130px;
  border: 1px solid #001a00;
}

/* Responsive */
@media (max-width: 600px) {
  .category-button {
    width: 220px;
    height: 220px;
  }
  .modal {
    width: 80%;
    right: 10%;
    border: 1px solid #c5a300;
    border-radius: 10px;
  }
}






.food-card-1 {
      position: relative;
      width: 220px;
      height: 320px;
      border-radius: 25px;
      overflow: hidden;
      box-shadow: 0 0 20px rgba(197, 163, 0, 0.3), 0 0 40px rgb(25, 37, 32,0.7);
      transition: transform 0.4s ease;
      cursor: pointer;
      border: 1px solid rgba(255, 255, 255, 0.1);
      border: 1px solid #c5a300;
    }

    .food-card-1:hover {
      transform: scale(1.05);
    }

    .food-img-1 {
      width: 100%;
      height: 100%;
      object-fit: cover;
     }

    
    .food-overlay-1 {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent 70%);
      z-index: 1;
    }

    .food-glow-1 {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      border-radius: 25px;
      background: radial-gradient(circle at 40% 30%, rgba(231, 12, 12, 0.05), transparent 70%);
      z-index: 2;
      pointer-events: none;
    }

    .food-label-1 {
      position: absolute;
      bottom: 20px;
      right: 20px;
      background: rgb(25, 37, 32,0.7);
      color: #c5a300;
      font-size: 1.1rem;
      padding: 10px 18px;
      border: 0.5px solid rgb(255, 255, 255,0.3);
      border-radius: 25px;
      backdrop-filter: blur(6px);
      box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
      z-index: 3;
      transition: background 0.3s ease;
      height: 10px;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .food-card-1:hover .food-label-1 {
      background: rgba(255, 255, 255, 0.25);
    }



.food-card {
  background-color: #001a00;
  border: 2px solid #c5a300;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(197, 163, 0, 0.5);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  text-align: center;
}

.food-img {
  width: 100%;
  height: auto; /* Ensure the image scales proportionally */
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
}

.card-text, .card-title {
  color: #c5a300;
  font-weight: bold;
  margin: 10px 5px;
  font-size: 18px;
}

@media (max-width: 576px) {
  .food-card {
    width: 90% !important;
    margin: 10px auto;
  }
}


.location-contact {
  padding: 40px 20px;
  text-align: center;
  background-color: #001a00;
  margin-top: 40px;
  border-top: 2px solid #c5a300;
}

.location iframe {
  width: 100%;
  height: 300px;
  border: 2px solid #c5a300;
  border-radius: 12px;
  margin-top: 20px;
}

.contact {
  margin-top: 40px;
}

.contact p {
  font-size: 1.5em;
  color: #c5a300;
}

.social-media-icons {
  margin-top: 20px;
}

.social-icon {
  color: #c5a300;
  font-size: 2em;
  margin: 0 15px;
  text-decoration: none;
}

 

/* For better responsive design */
@media (max-width: 600px) {
  .social-icon {
    font-size: 1.5em;
    margin: 0 10px;
  }
}
a{
  text-decoration: none;
  color: white;
}


footer {
  margin-top: 50px;
      background: transparent;
      padding: -15px -10px;
      text-align: center;
      box-shadow: 0 -2px 12px rgba(221, 255, 0, 0.3);
      border-top: 1px solid rgba(230, 192, 1, 0.3);
      font-size: 12px;
      border: 1px solid rgba(230, 192, 1, 0.3);
      border-radius: 10px; 
      margin-left: 10px;
      margin-right: 10px;
    }

    .footer-title {
      margin-top: 10px;
      color: #e6c001;
      font-size: 13px;
      font-weight: 600;
      text-shadow: 0 0 6px #e6c001;
      margin-bottom: 6px;
    }

    .developer {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 10px;
    }

    .dev-card {
      background: #1a1a1a;
      padding: 6px 10px;
      border-radius: 6px;
      box-shadow: 0 0 10px rgba(221, 255, 0, 0.3);
    }

    .dev-name {
      font-weight: 600;
      color: #e6c001;
      font-size: 12px;
      text-shadow: 0 0 4px #e6c001;
    }

    .phone {
      font-size: 11px;
      color: #ccc;
    }

    .footer-bottom {
      margin-top: 8px;
      font-size: 11px;
      color: #888;
    }

    .social-icons {
      margin-top: 10px;
    }

    .social-icons a {
      color: #0ff;
      font-size: 18px;
      margin: 0 5px;
      text-shadow: 0 0 8px #0ff;
      transition: transform 0.2s ease;
    }

    .social-icons a:hover {
      transform: scale(1.15);
    }



.before-frame-c{
  display: flex;
  justify-content: center;
  align-items: center;
}

.frame-container {
      padding: 0 12px 12px 12px;
      border-radius: 40px; 
      /* box-shadow: 
        0 0 30px rgba(0, 255, 255, 0.2),
        0 0 60px rgba(255, 0, 255, 0.15),
        inset 0 0 10px rgba(255, 255, 255, 0.05); */
      max-width: 1040px;
      width: 75%;
      margin: 15px 5px;
    }

    .slideshow-container {
      position: relative;
      width: 200px;
      aspect-ratio: 2 / 3; /* 1024x1536 */
      overflow: hidden;
      border-radius: 30px;
      box-shadow: 0 0 20px rgba(168, 137, 2, 0.8);
    }

    .slide {
      position: absolute;
      width: 100%;
      height: 100%;
      opacity: 0;
      transition: opacity 1s ease-in-out;
      
    }

    .slide img {
      margin-top: -5px;
      width: 100%;
      height: 100%;
      object-fit: cover; 
      transform: scale(1.1);
    }

    .slide.active {
      opacity: 1;
      z-index: 1;
    }


    h1.cafe-name { 
      text-align: center;
      color: #FFF;
      text-shadow:
        0 0 5px #c5a300,
        0 0 10px #c5a300,
        0 0 20px #c5a300,
        0 0 40px #c5a300;
      animation: neonFlicker 2s infinite;
      margin: -15px;
      margin-top: 10px;
    }

    @keyframes neonFlicker {
      0%, 100% {
        opacity: 1;
        text-shadow:
          0 0 5px #a68b00,
          0 0 10px #a68b00,
          0 0 20px #a68b00,
          0 0 40px #a68b00;
      }
      50% {
        opacity: 0.8;
        text-shadow:
          0 0 2px #a68b00,
          0 0 6px #a68b00,
          0 0 12px #a68b00,
          0 0 20px #a68b00;
      }
      70% {
        opacity: 0.6;
        text-shadow:
          0 0 1px #a68b00,
          0 0 4px #a68b00,
          0 0 8px #a68b00,
          0 0 16px #a68b00;
      }
    }


.c-u{
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
}
    
    .contact-box {
      background: rgba(255, 255, 255, 0.05);
      backdrop-filter: blur(20px);
      border: 1px solid rgba(255, 255, 255, 0.2);
      padding: 40px;
      border-radius: 20px;
      box-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
      text-align: center;
      position: relative;
      max-width: 60%;
    }

    .contact-box h2 {
      font-size: 2rem;
      margin-bottom: 20px;
      color: #c5a300;
    }

    .contact-box p {
      font-size: 1.1rem;
      margin: 10px 0;
      color: #eee;
    }

    .social-buttons {
      display: flex;
      justify-content: center;
      gap: 15px;
      margin-top: 25px;
      flex-wrap: wrap;
    }

    .social-buttons a {
      width: 50px;
      height: 50px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 50%;
      text-decoration: none;
      color: white;
      font-size: 1.5rem;
      box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
      transition: transform 0.3s, background 0.3s;
    }

  
    .blob {
      position: absolute;
      left: 0;
      width: 300px;
      height: 300px;
      background: linear-gradient(45deg, rgba(179,163,0,0.3), rgba(228,190,9,0.3));
      border-radius: 50%;
      filter: blur(80px);
      /* animation: moveBlob 8s infinite alternate ease-in-out; */
      z-index: -1; 
    }
    .blob2 {
      position: absolute;
      left: 0;
      width: 20%;
      height: 20%;
      background: linear-gradient(45deg, rgba(179,163,0,0.3), rgba(228,190,9,0.3));
      border-radius: 20%;
      filter: blur(80px);
      /* animation: moveBlob 8s infinite alternate ease-in-out; */
      z-index: -1; 
    }
    /* @keyframes moveBlob {
      0% {
        top: -30px;
        left: -30px;
      }
      100% {
        top: 30px;
        left: 50px;
      }
    } */

    .jammed {
  pointer-events: none;
  overflow: hidden;
 }

.jammed .modal {
  pointer-events: auto; 
 }

     .langs{
      color: #c5a300;
     }
     .lang-active{
      border-bottom: 2px solid #c5a300;
     }


     .modulee{
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
     }


/* Starfield canvas background */
#starCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    pointer-events: none;
    background: black; /* fallback background */
  }
  






  @import url('https://fonts.googleapis.com/css2?family=Pacifico&display=swap');
.frame-container{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
  .handwriting-container {
    width: 250px;
    text-align: center;
    margin-top: 20px;
    
  }
 
  .handwriting {
    width: 80%; 
  }
  
  .handwriting text {
     font-size: 90px;
    fill: none;
    stroke: #c5a300; /* lime green */
    stroke-width: 2;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: drawAndErase 6s ease-in-out infinite, glowPulse 1.5s ease-in-out infinite;
    filter: drop-shadow(0 0 5px #264d3c) drop-shadow(0 0 10px #264d3c);
  }
  
  @keyframes drawAndErase {
    0% {
      stroke-dashoffset: 1000;
    }
    40% {
      stroke-dashoffset: 0;
    }
    60% {
      stroke-dashoffset: 0;
    }
    100% {
      stroke-dashoffset: 1000;
    }
  }
  
  @keyframes glowPulse {
    0%, 100% {
      filter: drop-shadow(0 0 4px #32cd32) drop-shadow(0 0 8px #32cd32);
    }
    50% {
      filter: drop-shadow(0 0 8px #32ff32) drop-shadow(0 0 16px #32ff32);
    }
  }
  
     
  


  
    .open-modal-btn12 {
      background-color: #c5a300;
      color: #1e322a;
      border: none;
      padding: 1rem 2rem;
      font-size: 1.2rem;
      border-radius: 12px;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: 0 0 10px rgba(197, 163, 0, 0.6);
    }

    .open-modal-btn12:hover {
      transform: scale(1.05);
      box-shadow: 0 0 20px rgba(197, 163, 0, 0.9);
    }

    .modal-overlay12 {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(30, 50, 42, 0.9);
      display: flex;
      justify-content: center;
      align-items: center;
      opacity: 0;
      visibility: hidden;
      transition: all 0.4s ease;
      padding: 2rem;
    }

    .modal-overlay12.active {
      opacity: 1;
      visibility: visible;
    }

    .modal12 {
      background: rgba(30, 50, 42, 0.5);
      padding: 2rem;
      border-radius: 20px;
      max-width: 900px;
      width: 100%;
      max-height: 90vh;
      overflow-y: auto;
      border: 2px solid #c5a300;
      animation: fadeInUp 0.5s ease forwards;
      position: relative;
    }

    .modal12::-webkit-scrollbar {
      width: 4px;
      height: 1px;
    }
    .modal12::-webkit-scrollbar-thumb {
      background: #c5a300;
      border-radius: 10px;
    }
    .modal12::-webkit-scrollbar-track {
      background: #1e322a;
    }

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(40px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .modal-header12 {
      text-align: center;
      color: #c5a300;
      margin-bottom: 1.5rem;
      font-size: 2rem;
    }

    .food-cards12 {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
      gap: 1.5rem;
    }

    .food-card12 {
      position: relative;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 0 15px rgba(197, 163, 0, 0.3);
    }

    .food-card12 img {
      width: 100%;
      height: auto;
      display: block;
    }

    .food-overlay12 {
      position: absolute;
      bottom: 0;
      width: 100%;
      display: flex;
      justify-content: space-between;
      padding: 0.5rem 1rem;
      background: linear-gradient(to top, rgba(30, 50, 42, 0.9), rgba(30, 50, 42, 0.3));
    }

    .food-name12, .food-price12 {
      font-size: 1.1rem;
      font-weight: bold;
      padding: 0.3rem 0.6rem;
      background: linear-gradient(135deg, #c5a300 0%, #fff7c0 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      text-shadow: 0 0 10px rgba(197, 163, 0, 0.5);
    }

    .close-btn12 {
      position: fixed;
      top: 20px;
      right: 30px;
      font-size: 1.5rem;
      color: #c5a300;
      cursor: pointer;
      z-index: 2000;
      display: none;
    }

    .close-btn12.visible {
      display: block;
    }















.kurd-card {
  margin-top: 50px;
  max-width: 250px;
  width: 100%;
  background: #ffffff;
  border-radius: 20px 0 20px 0;
  overflow: hidden;
  position: relative;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2), 0 5px 15px rgba(255, 215, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.kurd-card:hover {
  transform: scale(1.04);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.3), 0 10px 25px rgba(255, 215, 0, 0.3);
}

.kurd-card::before {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, #ffd700, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}
.kurd-image {
  width: 100%;
  height: auto;
  display: block;
  border-bottom: 5px solid #ffd700;
}

.kurd-details {
  position: relative;
  z-index: 1;
  padding: 20px;
  background: #183d3d;
  text-align: center;
}

.kurd-name {
  font-size: 1.4rem;
  margin-bottom: 10px;
  font-weight: 700;
  color: #ffd700;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
}

.kurd-price {
  font-size: 1.1rem;
  color: #e0f8e0;
  background: #145757;
  border: none;
  border-radius: 25px;
  padding: 8px 16px;
  display: inline-block;
  box-shadow: 0 4px 10px rgba(255, 255, 255, 0.1), inset 0 0 6px rgba(255, 255, 255, 0.05);
  transition: transform 0.3s ease, background 0.3s ease;
}

.kurd-price:hover {
  background: #1b6f6f;
  transform: scale(1.08);
}

