html {
  scroll-padding-top: 70px; /* Adjust to your nav height */
  scroll-behavior: smooth;
}

@font-face {
  font-family: 'Windhavi';
  src: url('fonts/Windhavi.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

    body {
      margin: 0;
      font-family: 'Segoe UI', sans-serif;
      background-color: #1c1c1c; /* dark grey */
      color: white;
    }

    header {
  
      background: linear-gradient(to right, #FF9933, #FFFFFF, #138808);
      color: black;
      text-align: center;
      padding: 2rem 1rem;
    }


.mainheader {

  text-align: center;
  color: #fff;
  padding: 230px; /* top right bottom left */
  background: none;
  overflow: hidden;
  position: relative; /* Ensure pseudo-elements are positioned correctly */
}

.mainheader::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('/images/Background.jpg') center/cover no-repeat;
  opacity: 0.25; /* Lower = more subtle */
  filter: blur(2px); /* Add blur for a soft look */
  z-index: 0;
  pointer-events: none;
}

.mainheader::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(28,28,28,0) 70%, #1c1c1c 100%);
  z-index: 1;
  pointer-events: none;
}

.mainheader h1 {
  font-family: 'Windhavi', 'Segoe UI', sans-serif;
  font-size: 8rem; /* adjust in media query if needed */
  color: rgb(248, 182, 61);
  text-shadow: 1px 1px 4px rgba(255, 255, 255);
}

.mainheader h1,
.mainheader p {
  position: relative;
  z-index: 1;
  font-weight: normal;
  font-style: normal;
}


    header h1 {
      font-size: 5rem;
      margin: 0;
    }

nav {
  position: sticky;
  top: 0;
  background: #000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  z-index: 100;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 1.4rem;
  padding: 0.3rem 0.8rem;
  border-radius: 8px;
  border: 3px solid transparent;
  background: 
    linear-gradient(#002005, #241300) padding-box,
    linear-gradient(90deg, #FF9933, #fff, #138808) border-box;
  transition: color 0.2s, border-color 0.2s, box-shadow 0.2s;
  margin-right: 0.5rem;
}

.nav-links a:hover {
  color: #FF9933;
  box-shadow: 0 0 8px #13880888;
}

.nav-lang {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-lang select {
  padding: 0.4rem 1rem;
  font-size: 1rem;
  border-radius: 8px;
  border: 3px solid transparent;
  background:
    linear-gradient(#222, #222) padding-box,
    linear-gradient(90deg, #FF9933, #fff, #138808) border-box;
  color: #fff;
  outline: none;
  cursor: pointer;
  appearance: none;
}

.nav-lang select:hover {
  color: #FF9933;
  box-shadow: 0 0 8px #13880888;
}

    .section {
      padding: 3rem 2rem;
      text-align: center;
    }

    .section h2 {
      color: #138808; /* green */
      font-size: 2rem;
      margin-bottom: 1rem;
    }

    .menu-items {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 2rem;
    }

    .menu-card {
      background-color: #2b2b2b;
      border: 2px solid #FF9933;
      border-radius: 10px;
      width: 250px;
      padding: 1rem;
      color: white;
    }

    .menu-card img {
      width: 100%;
      height: 150px;
      object-fit: cover;
      border-radius: 8px;
    }

    footer {
      background-color: #111;
      color: #FFF;
      text-align: center;
      padding: 1.5rem;
      border-top: 2px solid #138808;
    }

.whatsapp-box {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  background: #25d366;
  color: #fff;
  padding: 0.7rem 1.2rem;
  border-radius: 10px;
  font-size: 1rem;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 2px 8px #25d36633;
  margin: 1.5rem 0 0 0;
  transition: background 0.2s, color 0.2s;
}
.whatsapp-box:hover {
  background: #128c7e;
  color: #fff;
}
.whatsapp-emoji {
  font-size: 2rem;
}
.whatsapp-number {
  font-weight: normal;
  font-size: 0.98em;
}

.map-container {
  max-width: 550px;
  margin: 2rem auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px #0002;
  width: 100%;
}

    /*#####################################*/
    /*Responsive styles for smaller screens*/
   /*#####################################*/

  @media (max-width: 700px) {  
  nav {
    flex-direction: row;
    align-items: stretch;
    padding: 0.5rem 1rem;
    gap: 0.5rem;
  }

  .nav-links {
    padding-top: 0.1rem;
    gap: 0.5rem;
    align-items: flex-start;
  }


  .mainheader {
    padding: 60px 10px 40px 10px;
    
  }

.mainheader h1 {
  font-family: 'Windhavi', 'Segoe UI', sans-serif;
  font-size: 5.5rem; /* adjust in media query if needed */
  color: rgb(250, 194, 89);
}


  .section {
    padding: 1.5rem 0.5rem;
  }

  .menu-items {
    flex-direction: column;
    gap: 1rem;
  }

  .menu-card {
    width: 80%;
    min-width: 0;
    max-width: 80%;
    margin: 0 auto;
    margin-bottom: 3rem;
  }
}
