body {
  background: #0b0b0b;
  color: #fff;
}

a {
  text-decoration: none;
  color: #fff;
}

.navbar-custom {
  background: rgba(0, 0, 0, 0.95);
  padding: 15px 30px;
}

.navbar-brand {
  font-weight: bold;
  font-size: 24px;
  color: #fff !important;
}

.nav-link {
  color: #fff !important;
  margin: 0 15px;
  transition: 0.3s;
}

.nav-link:hover {
  color: #e75e34 !important;
}

.logo-img {
  width: 140px;
}

.phone-btn {
  color: #e75e34;
  border: 1px solid #e75e34;
  padding: 6px 15px;
  border-radius: 5px;
  text-decoration: none;
  transition: 0.3s;
}




.phone-btn:hover {
  background: #e75e34;
  color: #000;
}

/* Toggle Animation */
.navbar-toggler {
  border: none;
  outline: none;
}

.toggler-icon {
  width: 25px;
  height: 3px;
  background: #fff;
  display: block;
  margin: 5px 0;
  transition: 0.4s;
}

.navbar-toggler.active .top-bar {
  transform: rotate(45deg) translate(5px, 5px);
}

.navbar-toggler.active .middle-bar {
  opacity: 0;
}

.navbar-toggler.active .bottom-bar {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Smooth dropdown animation */
.navbar-collapse {
  transition: all 0.4s ease;
}

.navbar-collapse.collapsing {
  height: auto !important;
  opacity: 0;
}

.navbar-collapse.show {
  opacity: 1;
}

@media (max-width: 991px) {
  .phone-btn {
    display: none;
  }

  .navbar-collapse {
    transform: translateY(-20px);
    opacity: 0;
  }

  .navbar-collapse.show {
    transform: translateY(0);
    opacity: 1;
  }

  .toggler-icon {
    transition: all 0.3s ease-in-out;
  }
}

@media (max-width: 768px){
 .logo-img {
    width: 90px;
}
}

/* Hero */
.hero {
  position: relative;
  height: 90vh;
  overflow: hidden;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 80px;
  opacity: 0;
}

.slide.active {
  opacity: 1;
}

.content {
  max-width: 500px;
  color: #fff;
  z-index: 1;
}

.content h1 {
  font-size: 60px;
  font-weight: bold;
}

.content p {
  margin: 20px 0;
  color: #ccc;
}

.btn-custom {
  background: #e75e34;
  color: #000;
  padding: 20px 20px;
  border: none;
  width: 100%;
  max-width: 65%;
  font-size: 16px;
}

.image img {
  transform: scale(0.9);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  max-width: 1000%;
  height: 90vh;
}

.bg1 {
  background: linear-gradient(120deg, #000, #1a1a1a);
}

.bg2 {
  background: linear-gradient(120deg, #000, #2b0f00);
}




@media(max-width:768px) {
  .slide {
    flex-direction: column;
    text-align: center;
    padding: 40px;
  }

  .content h1 {
    font-size: 40px;
    margin-top: 20px;
  }


.btn-custom {
    padding: 16px 16px;
    width: 100%;
    font-size: 14px;
}



}


/* about */

.about-section {
  background: #000;
  padding: 80px 0;
  font-family: 'Georgia', serif;
}

.about-title {
  font-size: 42px;
  color: #e75e34;
  font-weight: 500;
  margin-bottom: 10px;
}

.divider {
  width: 80px;
  height: 2px;
  background: #e75e34;
  margin: 10px auto 30px;
}

.about-text {
  max-width: 800px;
  margin: 0 auto 60px;
  color: #fff;
  font-size: 18px;
  line-height: 1.8;
}

.info-box {
  background: #e75e34;
  padding: 40px 20px;
}

.box-item {
  padding: 20px;
}

.box-item h4 {
  font-size: 18px;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.box-item p {
  font-size: 16px;
  line-height: 1.7;
  color: #fff;
}

/* Borders */
.border-left {
  border-left: 1px dashed #ccc;
}

.border-right {
  border-right: 1px dashed #ccc;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .about-title {
    font-size: 30px;
  }

  .about-text {
    font-size: 15px;
    padding: 0 15px;
  }

  .info-box {
    padding: 20px 10px;
  }

  .border-left,
  .border-right {
    border: none;
  }

  .box-item {
    margin-bottom: 20px;
  }
}



.pizza-info-section {
  position: relative;
  background-image: url('../images/Wood-fired-pizza.webp'); /* pizza bg */
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* 🔥 parallax effect */
  padding: 180px 0;
  color: #fff;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
}

.pizza-info-section .container {
  position: relative;
  z-index: 2;
}

.info-item {
  padding: 20px;
}

.icon {
  width: 85px;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}

.info-item h4 {
  font-size: 18px;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.info-item p {
  font-size: 14px;
  line-height: 1.7;
  max-width: 300px;
  margin: auto;
}

/* Mobile Fix (Parallax issue solve) */
@media (max-width: 768px) {
  .pizza-info-section {
    background-attachment: scroll;
    padding: 80px 0;
  }

  .info-item {
    margin-bottom: 30px;
  }
}



/* tt */
    .gallery-img {
      transition: 0.3s;
      border-radius: 10px;
      cursor: pointer;
    }

    .gallery-img:hover {
      transform: scale(1.08);
    }

/* MENU TAB */
.menu-tab {
  padding: 15px;
  margin-bottom: 10px;
  border: 1px solid #222;
  cursor: pointer;
  transition: 0.3s;
}

.menu-tab.active,
.menu-tab:hover {
  background: #e75e34;
}

.menu-group {
  display: none;
}

.menu-group.active {
  display: block;
}

.menu-item {
  padding: 20px;
  margin-bottom: 20px;
  background: #111;
  border-radius: 10px;
  color: #fff;
  transition: 0.3s;
  position: relative;
}

.menu-item h4 {
  display: flex;
  justify-content: space-between;
}

.menu-item:hover {
  transform: translateY(-5px);
  background: #1a1a1a;
}

/* Preview Image */
.preview-img {
  position: absolute;
  top: 200px;
  right: -300px;
  width: 300px;
  opacity: 0;
  transition: 0.3s;
  border-radius: 10px;
}

.btn.about-btn{
  background-color  : #e75e34;
}

.menu-item:hover~.preview-img {
  opacity: 1;
}

/* Price Animation */
.price {
  transition: 0.3s;
}

.menu-item:hover .price {
  color: #e75e34;
  transform: scale(1.1);
}

.footer-link {
  color: #ccc;
  text-decoration: none;
  display: block;
  margin-bottom: 8px;
  transition: 0.3s;
}

.footer-link:hover {
  color: #e75e34;
  padding-left: 5px;
}

@media(max-width:768px) {
  footer {
    text-align: center;
  }
}


body {
  background: #000;
  color: #fff;
}

/* SECTION */
.menu-section {
  padding: 100px 0;
}

/* LEFT STICKY */
.menu-left {
  position: sticky;
  top: 100px;
}

.menu-title {
  font-size: 60px;
  margin-bottom: 40px;
}

/* TABS */
.menu-tab {
  padding: 15px;
  border: 1px solid #222;
  margin-bottom: 10px;
  cursor: pointer;
  transition: 0.3s;
}

.menu-tab.active,
.menu-tab:hover {
  background: #e75e34;
}

/* RIGHT ITEMS */
.menu-group {
  display: none;
}

.menu-group.active {
  display: block;
}

.menu-item {
  background: #111;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 20px;
  transition: 0.3s;
  position: relative;
}

.menu-item:hover {
  transform: translateY(-5px);
  background: #1a1a1a;
}

.menu-item h4 {
  display: flex;
  justify-content: space-between;
}

/* PRICE */
.price {
  transition: 0.3s;
}

.menu-item:hover .price {
  color: #e75e34;
  transform: scale(1.1);
}

/* PREVIEW IMAGE */
.preview-img {
  position: absolute;
  right: -320px;
  top: 0;
  width: 300px;
  opacity: 0;
  transition: 0.3s;
  border-radius: 10px;
}

/* MOBILE */
@media(max-width:768px) {
  .menu-left {
    position: relative;
    top: 0;
  }

  .preview-img {
    display: none;
  }

  .menu-title {
    font-size: 40px;
  }
}





/* other about section styles */


/* TOP BANNER */
.about-banner {
  position: relative;
  background-image: url('https://images.unsplash.com/photo-1593560708920-61dd98c46a4e');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-banner .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  top: 0;
  left: 0;
}

.about-banner h1 {
  position: relative;
  color: #fff;
  font-size: 40px;
  letter-spacing: 2px;
}

/* CONTENT */
.about-content {
  background: #fffcf7;
  padding: 80px 0;
}

.about-img {
  width: 80%;
  max-width: 460px;
  border-radius: 5px;
}

.about-heading {
  font-size: 36px;
  color: #e75e34;
  font-family: 'Georgia', serif;
  margin-bottom: 20px;
}

.about-content p {
  font-size: 15px;
  line-height: 1.8;
  color: #333;
}

.main-pizza-info-section p{
  max-width: 80% ;
}

/* MOBILE */
@media (max-width: 768px) {
  .about-banner {
    height: 200px;
    background-attachment: scroll;
  }

  .about-banner h1 {
    font-size: 28px;
  }

  .about-img {
    width: 100%;
    margin-bottom: 20px;
  }

  .about-heading {
    text-align: center;
  }

  .main-pizza-info-section p{
  max-width: 100% ;
}


}




/* gallery */
.pro-gallery {
  background: #000;
  padding: 80px 0;
}

.gallery-title {
  color: #fff;
  margin-bottom: 40px;
}

.gallery-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  cursor: pointer;
  transition: 0.3s;
  border-radius: 10px;
}

.gallery-img:hover {
  transform: scale(1.05);
}

/* MODAL */
.gallery-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.95);
  display: none;
  z-index: 9999;
}

.gallery-modal.active {
  display: block;
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #fff;
  font-size: 40px;
  cursor: pointer;
  z-index: 999;
}

.swiper {
  width: 100%;
  height: 100vh;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  max-width: 90%;
  max-height: 80%;
  border-radius: 10px;
}



.btnn-w{
  margin-top: 100px !important;
}







.youtube-video iframe {
  width: 100%;
  height: auto;
  min-height: 600px;
  max-width: 100%;
}


@media (max-width: 991px) {
.menu-section {
    padding: 70px 0;
}

    .youtube-video iframe {
        width: 100%;
        height: auto;
        min-height: 400px;
        max-width: 100%;
        /* height: 100%; */
    }




}


@media (max-width: 768px) {
.menu-section {
    padding: 70px 0;
}

    .youtube-video iframe {
        width: 100%;
        height: auto;
        min-height: 230px;
        max-width: 100%;
        /* height: 100%; */
    }

.btnn-w{
  margin-top: 70px !important;
}


}
@media (max-width: 767px) {
.hero {
    height: 50vh;
}
.image img {
        width: 100%;
        height: 50vh;
    }

    .hero-desk .hero img{
      display: none;
    }
}



.logo-mobile { display: none;}


/* Mobile only */
@media (max-width: 991px) {

  .navbar-collapse {
    position: fixed;
    top: 0;
    left: -100%; /* hidden by default */
    width: 260px;
    height: 100%;
    background: #000; /* apne theme ke hisaab se change karo */
    padding-top: 0;
    transition: 0.3s ease-in-out;
    z-index: 9999;
  }

  .navbar-collapse.show {
    left: 0; /* slide in */
  }

  .navbar-nav {
    flex-direction: column;
    padding-left: 20px;
  }

  .nav-link {
    padding: 12px 0;
    font-size: 18px;
  }

  /* overlay */
  .menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    display: none;
    z-index: 9998;
  }

  .menu-overlay.active {
    display: block;
  }
  .navbar-toggler:focus { box-shadow: none;}

  .navbar-toggler {
  border: none;
  background: transparent;
}

/* lines */
.toggler-icon {
  display: block;
  width: 25px;
  height: 3px;
  background: #fff;
  margin: 5px 0;
  transition: all 0.3s ease-in-out;
}

/* ACTIVE = CROSS */
.navbar-toggler.active .top-bar {
  transform: rotate(45deg) translate(5px, 5px);
}

.navbar-toggler.active .middle-bar {
  opacity: 0;
}

.navbar-toggler.active .bottom-bar {
  transform: rotate(-45deg) translate(6px, -6px);
}
.logo-mobile {display: inline-block; width: 100px;}
}






/* TOP BANNER */
.contact-us-banner {
  position: relative;
  background-image: url('https://images.unsplash.com/photo-1593560708920-61dd98c46a4e');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-us-banner .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  top: 0;
  left: 0;
}

.contact-us-banner h1 {
  position: relative;
  color: #fff;
  font-size: 40px;
  letter-spacing: 2px;
}



 /* Contact Section */
    .contact-section {
      padding: 70px 0;
      background: #f4f1ec;
    }

    .contact-box {
      background: #e85d2a;
      padding: 30px;
      border-radius: 12px;
      height: 100%;
      transition: 0.3s;
      min-height: 175px;
    }

    .contact-box:hover {
      transform: translateY(-6px);
      box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    }

    .contact-box h4 {
      color: #ffffff;
      margin-bottom: 15px;
    }

    /* Map */
    .map iframe {
      width: 100%;
      height: 400px;
      border: none;
      border-radius: 12px;
    }