/* Portfolio Section Styles */
body {
  background-color: linear-gradient(135deg, #1e293b, #334155);
  font-family: "Segoe UI", sans-serif;
  border-radius: 5px;
  width: 100%;
}

header {
  background-color: #0f172a;
  padding: 15px 30px;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 999;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  align-items: center;
  justify-content: center;
  align-content: center;
  justify-items: center;

}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(15, 23, 42, 0.7);
  z-index: 1;
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  justify-content: center;
  align-content: center;
  justify-items: center;
}

.buttons{
    padding: 12px 28px;
    width: 100px;
  border-radius: 8px;
  font-size: 1rem;
  text-decoration: none;
  transition: 0.3s ease;
   background-color: transparent;
   border: 2px solid #38bdf8 ;
  color: #0f172a;
  font-weight: 600;
  color: white;
}
.buttons a{
    text-decoration: none;
    color: aqua;
}

.buttons:hover {
    background-color: #0ea5e9;
    color: #0f172a;
}
.buttons:hover a{
     
    color: #0f172a;
}



.logo {
  font-size: 26px;
  font-weight: bold;
  color: #38bdf8;
  transition: 0.3s;
  letter-spacing: 1px;
  justify-items: center;
}

.logo span {
  color: #fff;
}

.hero {
  margin-top: 50px;
  position: relative;
  background-image: url("/assets/img/jt.jpeg");
  background-size: cover;
  background-position: center;
  height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 20px;
  animation: fadeInUp 1s ease-in-out;
}

.hero-content h1{
    font-size: 2.5rem;
  color: #38bdf8;
  margin-top: 60px;
  font-weight: bold;
  text-shadow: 0 0 10px #38bdf8;
  margin: 0;
}

.hero p {
  font-size: 1.2rem;
  
  color: #e2e8f0;
}

.menu {
  background-color: #0a0a0a;
  color: white;
  padding: 80px 20px;
  font-family: "Poppins", sans-serif;
}

.menu-container {
  max-width: 1200px;
  margin: auto;
}

.menu-title {
  text-align: center;
  font-size: 3rem;
  color: rgb(13, 52, 138);
  margin-bottom: 50px;
  font-family: "Playfair Display", serif;
}

.menu-title {
  color: rgb(132, 79, 231);
  text-align: center;
  font-size: 36px;
  margin-top: 10px;
  margin-bottom: 25px;
  text-shadow: 0 0 8px #4b0ab4;
}

h2 {
  display: block;
  font-size: 1.5em;
  margin-block-start: 0.83em;
  margin-block-end: 0.83em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  font-weight: bold;
  unicode-bidi: isolate;
}

.menu-list {
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.menu-row {
  display: flex;
  background: rgba(55, 0, 255, 0.05);
  border: 1px solid rgba(38, 0, 255, 0.3);
  border-radius: 14px;
  padding: 20px;
  align-items: center;
  transition: transform 0.3s ease;
}

.menu-row img {
  width: 450px;
  height: 250px;
  object-fit: contain;
  border-radius: 12px;
  margin-right: 25px;
}
.menu-details h3 {
  color: rgb(19, 34, 170);
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.menu-details p {
  color: #ccc;
  font-size: 0.95rem;
  margin-bottom: 25px;
}

.priceee a {
  margin-top: 35px;
  color: #38bdf8;
  text-decoration: none;
  border: 1px solid #38bdf8;
  padding: 8px 15px;
  border-radius: 5px;
  transition: 0.3s;
}

@media (max-width: 768px) {
  .menu-container {
    max-width: 700px;
    margin: auto;
  }
  .menu-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  .menu-row img {
    width: 335px;
    height: auto;
    object-fit: contain;
  }
}
.whatsapp-chat {
  position: fixed;
  bottom: 80px;
  right: 20px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  padding: 5px;
  height: 45px;
  width: 45px;
  text-align: center;
  z-index: 1000;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  font-size: 35px;
}
