/* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  color: white;
  background-color: #000000;
  line-height: 1.8;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 7rem;
}

.logo {
  font-size: 1.8rem;
  color: #b6895b;
  font-weight: 700;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 1.5rem;
}

.nav-links a {
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  background: #b6895b;
  left: 0;
  bottom: -5px;
  transition: 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

/* Hamburger Icon */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 20px;
  cursor: pointer;
  z-index: 1002;
}

.bar {
  height: 3px;
  width: 100%;
  background-color: #fff;
  border-radius: 3px;
  transition: all 0.4s ease;
}

.hamburger.active .bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .bar:nth-child(2) {
  opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Responsive Navbar */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background: #000000;
    position: absolute;
    top: 70px;
    right: 20px;
    padding: 20px;
    border-radius: 6px;
    z-index: 1001;
  }

  .nav-links.active {
    display: flex;
    height: 450px;
    background-color: #222;
  }

  .nav-links a {
    padding: 10px 0;
    color: white;
    text-decoration: none;
    line-height: 3;
    height: 55px;
  }
}

/* Hero Section */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 45px 40px;
  min-height: 100vh;
  flex-wrap: wrap;
}

.hero-left {
  flex: 1;
}

.welcome {
  font-style: italic;
  color: #aaa;
  font-size: 20px;
  margin-bottom: 10px;
}

.title {
  font-size: 100px;
  line-height: 1.1;
}

.scroll-down {
  margin-top: 50px;
  font-size: 12px;
  letter-spacing: 2px;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  color: #5de0bd;
}

.hero-center {
  flex: 1;
  display: flex;
  justify-content: center;
}

.hero-center img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.hero-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-right img {
  width: 100%;
  border-radius: 8px;
  
}

.description {
  color: #ccc;
  font-size: 18px;
  line-height: 1.5;
  padding: 10px;
}

.social {
  display: flex;
  gap: 15px;
  color: #888;
  font-size: 14px;
}

/* Animation Keyframes */
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(60px);
    filter: brightness(0);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
    filter: brightness(1);
  }
}

/* Apply animation */
.hero-left,
.hero-center,
.hero-right {
  animation: fadeUp 1.5s ease-out forwards;
  opacity: 0;
}

.hero-center {
  animation-delay: 0.3s;
}

.hero-right {
  animation-delay: 0.6s;
}

/* Additional sections like About, Services, Menu, and Footer would go below */


/* About */
.about {
  padding: 4rem 0;
  background: #1e1e1e;
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
}

.about-text {
  flex: 1 1 50%;
}

.about-image {
  flex: 1 1 40%;
}

.about-image img{
  height: 300px;
}

.about h3 {
  font-size: 2rem;
  color: #b6895b;
  margin-bottom: 1rem;
}

/* Services */
.services {
  padding: 4rem 0;
  text-align: center;
}

.section-title {
  font-size: 2rem;
  color: #b6895b;
  margin-bottom: 2rem;
}

.service-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.card {
  background: #1f1f1f;
  padding: 2rem;
  border-radius: 10px;
  max-width: 300px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
}

.card:hover {
  transform: translateY(-5px);
}

.card h4 {
  color: #b6895b;
  margin-bottom: 1rem;
}

/* Menu Section */
.menu {
  padding: 4rem 0;
  background: #fff;
}

.menu-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.menu-item {
  background: #f9f5f0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}

.menu-item:hover {
  transform: translateY(-5px);
}

.menu-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.item-info {
  padding: 1rem;
}

.item-info h4 {
  font-size: 1.1rem;
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  color: #333;
}

.item-info span {
  color: #b6895b;
  font-weight: 600;
}

.item-info p {
  font-size: 0.95rem;
  color: #666;
}

.menu-section {
  display: flex;
  min-height: 100vh;
  padding: 4rem 0;
  position: relative;
}

.menu-left {
  flex: 1;
  position: sticky;
  top: 100px;
  align-self: flex-start;
  padding-left: 5%;
}

.menu-left h2 {
  font-size: 3rem;
  margin-bottom: 2rem;
  color: #eee;
}

.menu-tabs {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.menu-tab {
  background: none;
  border: none;
  text-align: left;
  font-size: 1rem;
  color: #ccc;
  padding: 1rem 2rem;
  cursor: pointer;
  border-left: 3px solid transparent;
  transition: all 0.3s;
}

.menu-tab.active,
.menu-tab:hover {
  color: #fff;
  border-left: 3px solid #4b8b79;
  background: #1a1a1a;
}

.menu-right {
  flex: 2;
  padding: 3% 5% 0 3%;
}

.menu-category {
  display: none;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3rem;
}

.menu-category.active {
  display: flex;
}

.menu-item {
  background: #1a1a1a;
  padding: 1rem;
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.menu-item h4 {
  margin: 0 0 0.5rem;
  color: #fff;
}

.menu-item span {
  color: #ccc;
  font-weight: 500;
}

.menu-item p {
  color: #aaa;
  font-size: 0.95rem;
}

/* Footer */
.footer {
  background: #222;
  color: #aaa;

}

.footer-map {
  background-color: #000000;
  color: #3b2e1a;
  font-family: 'Segoe UI', sans-serif;
}

.map-area img {
  width: 100%;
  height: auto;
  display: block;
  filter: grayscale(100%) brightness(0.95);
}
.map-photo-section {
  display: flex;
  gap: 20px;
  margin-top: 40px;
}

.map-area,
.photo-area {
  flex: 1;
  height: 450px;
  margin:0px 20px 0px 0px;
}

.map-area iframe{
  margin-left: 40px;
  border-radius: 10px;
}

.photo-area {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.photo-area img {
  width: 100%;
  height: calc(50% - 5px); /* Two images stacked */
  object-fit: cover;
  border-radius: 8px;
}

.footer {
  padding: 60px 40px;
  background-color: #000000;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.footer-box {
  flex: 1 1 200px;
  min-width: 200px;
}

.footer-box h2 {
  font-size: 26px;
  margin-bottom: 10px;
}

.footer-box h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.footer-box p {
  font-size: 15px;
  margin-bottom: 6px;
  color: #999797;
}

.logo .script {
  font-family: 'Brush Script MT', cursive;
  font-size: 32px;
  color: #5e4428;
}



.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.social-icons a {
  font-size: 20px;
  text-decoration: none;
  color: #fff;
  padding: 10px 0px 0px 17px;
  border-radius: 50%;
  display: inline-block;
  height: 50px;
  width: 50px;
  transition: transform 0.3s ease;
}

.social-icons a:hover {
  transform: scale(1.2);
}

/* Custom platform colors */
.twitter {
  background-color: #5c33a8;
}

.facebook {
  background-color: #1877f2;
}

.instagram {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
}

.naveen{
    text-align: center;
    margin-top: 20px;
  }

@media (max-width: 768px) {
  .menu-section {
    flex-direction: column;
    padding: 2rem 1rem;
  }

  .menu-left,
  .menu-right {
    position: static;
    padding: 0;
    width: 100%;
  }

  .menu-left h2 {
    font-size: 2rem;
    text-align: center;
  }

  .menu-tabs {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
  }

  .menu-tab {
    padding: 0.8rem 1rem;
    font-size: 0.9rem;
    border-left: none;
    border-bottom: 2px solid transparent;
  }

  .menu-tab.active,
  .menu-tab:hover {
    border-left: none;
    border-bottom: 2px solid #4b8b79;
  }

  .menu-item {
    flex-direction: column;
    gap: 10px;
  }

  .map-photo-section {
    flex-direction: column;
    margin: 0;
    padding: 0 1rem;
  }

  .map-area,
  .photo-area {
    margin: 0;
    height: auto;
  }

  .map-area iframe {
    margin-left: 0;
    width: 100%;
    height: 300px;
  }

  .photo-area img {
    height: auto;
  }

  .header {
    padding: 1rem 2rem;
  }

  .title {
    font-size: 2.5rem;
    text-align: center;
  }
}

@media (max-width: 768px){
  .about-container {
  flex-direction: column;
  text-align: center;
}

.about-text, .about-image {
  flex: 1 1 100%;
}

.about-text p {
  text-align: justify;
  padding: 0 1rem;
}

.about-image img {
  width: 100%;
  max-width: 335px;
  margin: 1rem auto;
  display: block;
}

}

@media (max-width: 768px) {
  .hero {
    position: relative;
    background-image: url('https://images.unsplash.com/photo-1512223792601-592a9809eed4?q=80&w=652&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    padding: 0 1rem;
    display: flex;
    justify-content: center;   /* Center vertically */
    align-items: center;       /* Center horizontally */
    flex-direction: column;
    text-align: center;
  }

  .hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.65);
    z-index: 1;
  }

  .hero-left,
  .hero-center,
  .hero-right {
    z-index: 2;
    position: relative;
    width: 100%;
  }

  .hero-left .title {
    font-size: 2rem;
    color: #fff;
  }

  .hero-left .welcome {
    color: #ccc;
    font-style: italic;
    font-size: 1rem;
    margin-bottom: 10px;
    margin-top: 80%;
  }

  .hero-center,
  .hero-right {
    display: none;
  }

  .description {
    color: #ccc;
    font-size: 0.95rem;
    margin-top: 1rem;
  }

  .social {
    justify-content: center;
    margin-top: 1.5rem;
  }
}


/* Mobile Nav Full Screen Overlay */
@media (max-width: 768px) {
  nav {
    position: relative;
  }

  .nav-toggle {
    display: block;
    z-index: 9999;
    position: absolute;
    top: 2rem;
    right: 2rem;
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100%;
    background-color: rgb(0, 0, 0);
    display: flex;
    flex-direction: column;
    justify-content: center; /* Center vertically */
    align-items: center;     /* Center horizontally */
    gap: 2rem;
    z-index: 9998;
    transform: translateY(-100%);
    transition: transform 0.3s ease-in-out;
  }

  .nav-links.active {
    transform: translateY(0%);
    margin-top: 20%;
  }

  .nav-links a {
    font-size: 1.5rem;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
  }

  .nav-links a:hover {
    color: #ffae00;
  }

  .nav-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 2rem;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10000;
  }
}

@media (max-width: 768px){
  .naveen{
    text-align: center;
    margin-top: 20px;
  }
}

.menu-item button {
  background-color: #ff8800;
  color: white;
  padding: 6px 10px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  margin-top: 5px;
}

.order-form {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background-color: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.form-container {
  background: white;
  padding: 20px;
  border-radius: 12px;
  max-width: 400px;
  width: 90%;
  color: black;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}

.form-container input {
  padding: 8px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

.form-container button {
  background-color: #25D366;
  color: white;
  padding: 10px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.form-container .close {
  position: absolute;
  top: 10px; right: 15px;
  font-size: 24px;
  cursor: pointer;
}
