/* RESET */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: #f8f8f8;
}

/* HEADER */

.top-bar {
  background: #e30613;
  color: white;
  text-align: center;
  padding: 8px;
  font-size: 14px;
}

/* HERO */

/* HERO SECTION */

.hero {

  height:65vh;

  /* Desktop Image / GIF */

  background: url("pizza.gif") center center no-repeat;

  background-size: cover;

}

/* MOBILE IMAGE / GIF */

@media (max-width: 768px) {

  .hero {

    height: 60vh;

    /* Mobile Image / GIF */

    background: url("mob-pizza.gif") center center no-repeat;

    background-size: cover;

  }

}

.hero h1 {
  font-size: 48px;
  margin-bottom: 15px;
}

.hero p {
  font-size: 18px;
  margin-bottom: 25px;
}

.btn {
  background: #e30613;
  color: white;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 5px;
}

.btn:hover {
  background: #ffc300;
  color: black;
}

/* SECTION */

.section {
  padding: 80px 40px;
  text-align: center;
}

.section h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #e30613;
}

.section p {
  max-width: 700px;
  margin: auto;
  margin-bottom: 30px;
}

/* MENU */

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

/* LOGO IMAGE */

.logo img {
  height: 60px;

  width: auto;

  display: block;
}

/* MOBILE LOGO */

@media (max-width: 768px) {
  .logo img {
    height: 50px;
  }
}

.menu-item {
  background: white;
  padding: 20px;
  border-radius: 10px;
}

.menu-item h3 {
  margin-bottom: 10px;
}

.price {
  color: #e30613;
  font-weight: bold;
}

/* GALLERY */

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}

.gallery img {
  width: 100%;
  border-radius: 10px;
}

/* CONTACT */

.contact-box {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.contact-item {
  background: white;
  padding: 20px;
  border-radius: 10px;
}


/* MOBILE */

/* SECTION */

.contact-section {
  padding: 90px 40px;

  background: #f8f8f8;
}

/* CONTAINER */

.contact-container {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 40px;

  max-width: 1200px;

  margin: auto;
}

/* NAVBAR */

.navbar {

  background: black;
  padding: 15px 20px;
  position: sticky;
  top: 0;
  z-index: 999;

}

.nav-container {

  max-width: 1200px;
  margin: auto;

  display: flex;
  align-items: center;
  justify-content: space-between;

}

/* LOGO */

.logo img {

  height: 55px;

}

/* MENU */

.nav-links {

  display: flex;
  align-items: center;
  list-style: none;
  gap: 30px;

}

.nav-links a {

  color: white;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: 0.3s;

}

.nav-links a:hover {

  color: #ff3c00;

}

/* BUTTON */

.nav-btn {

  background: #ff3c00;
  color: white;
  padding: 10px 22px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;

}

.nav-btn:hover {

  background: #cc2f00;

}

/* HAMBURGER */

.menu-toggle {

  display: none;
  flex-direction: column;
  cursor: pointer;

}

.menu-toggle span {

  height: 3px;
  width: 25px;
  background: white;
  margin: 4px 0;

}

/* MOBILE */

.mobile-btn {

  display: none;

}

/* MOBILE RESPONSIVE */

@media (max-width: 768px) {

  .menu-toggle {

    display: flex;

  }

  .desktop-btn {

    display: none;

  }

  .nav-links {

    position: absolute;
    top: 80px;
    left: 0;

    width: 100%;
    background: black;

    flex-direction: column;
    align-items: center;

    max-height: 0;
    overflow: hidden;

    transition: 0.3s;

  }

  .nav-links.active {

    max-height: 400px;

  }

  .mobile-btn {

    display: block;
    margin: 15px 0;

  }

}

/* INFO */

.contact-info h2 {
  color: #e30613;

  font-size: 36px;

  margin-bottom: 10px;
}

.contact-subtitle {
  color: #666;

  margin-bottom: 25px;
}

/* BOX */

.info-box {
  display: flex;

  align-items: center;

  gap: 15px;

  background: white;

  padding: 18px;

  border-radius: 10px;

  margin-bottom: 15px;

  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);

  transition: 0.3s;
}

.info-box:hover {
  transform: translateY(-3px);
}

/* ICON */

.info-box i {
  font-size: 20px;

  color: white;

  background: #e30613;

  padding: 12px;

  border-radius: 8px;
}

/* FORM */

.contact-form-wrapper {
  background: white;

  padding: 35px;

  border-radius: 12px;

  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.contact-form-wrapper h3 {
  margin-bottom: 15px;
}

/* INPUT */

.contact-form-wrapper input,
.contact-form-wrapper textarea {
  width: 100%;

  padding: 12px;

  margin-bottom: 15px;

  border-radius: 6px;

  border: 1px solid #ddd;

  font-size: 15px;
}

/* BUTTON */

.contact-btn {
  background: #e30613;

  color: white;

  padding: 14px;

  border: none;

  border-radius: 6px;

  font-size: 16px;

  font-weight: 600;

  cursor: pointer;

  width: 100%;

  transition: 0.3s;
}

.contact-btn:hover {
  background: #ffc300;

  color: black;
}

/* SUCCESS */

.contact-success {
  display: none;

  margin-top: 10px;

  color: green;

  font-weight: 500;
}

/* MAP */

.map-container {
  margin-top: 40px;

  border-radius: 12px;

  overflow: hidden;
}

/* MOBILE */

@media (max-width: 768px) {
  .contact-container {
    grid-template-columns: 1fr;
  }
}

/* FOOTER */

.footer {
  background: #111;

  color: white;

  padding-top: 60px;
}

/* CONTAINER */

/* CONTACT */

.contact-info i {
  margin-right: 8px;

  color: #e30613;
}

/* HOURS */

.hours li {
  color: #ccc;
}

/* BOTTOM */

.footer-bottom {
  text-align: center;

  background: #000;

  padding: 15px;

  margin-top: 40px;
}

/* RESPONSIVE */

@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;

    text-align: center;
  }
}

/* SECTION */

.about-section {
  padding: 90px 40px;

  background: #ffffff;
}

/* CONTAINER */

.about-container {
  max-width: 1200px;

  margin: auto;

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 60px;

  align-items: center;
}

/* IMAGE */

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;

  border-radius: 12px;

  display: block;
}

/* BADGE */

.experience-badge {
  position: absolute;

  bottom: 20px;

  left: 20px;

  background: #e30613;

  color: white;

  padding: 18px 24px;

  border-radius: 10px;

  text-align: center;
}

.experience-badge h3 {
  font-size: 26px;

  margin-bottom: 5px;
}

/* TAG */

.about-tag {
  color: #e30613;

  font-weight: 600;

  text-transform: uppercase;

  letter-spacing: 1px;
}

/* HEADING */

.about-content h2 {
  font-size: 36px;

  margin: 15px 0;

  color: #222;
}

/* TEXT */

.about-content p {
  line-height: 1.7;

  color: #555;

  margin-bottom: 15px;
}

/* FEATURES GRID */

.about-features {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 20px;

  margin-top: 20px;
}

/* FEATURE BOX */

.feature-box {
  display: flex;

  align-items: center;

  gap: 12px;

  background: #f8f8f8;

  padding: 15px;

  border-radius: 8px;

  font-weight: 500;

  transition: 0.3s;
}

.feature-box:hover {
  transform: translateY(-3px);
}

/* ICON */

.feature-box i {
  font-size: 20px;

  color: #e30613;
}

/* BUTTON */

.about-btn {
  display: inline-block;

  margin-top: 25px;

  background: #e30613;

  color: white;

  padding: 12px 26px;

  border-radius: 6px;

  text-decoration: none;

  font-weight: 600;

  transition: 0.3s;
}

.about-btn:hover {
  background: #ffc300;

  color: black;
}

/* MOBILE */

@media (max-width: 768px) {
  .about-container {
    grid-template-columns: 1fr;
  }
}

/* SECTION */

.home-menu {
  padding: 90px 40px;

  background: #fff5f0;

  font-family: "Poppins", sans-serif;
}

/* TITLE */

.section-title {
  text-align: center;

  font-size: 36px;

  font-weight: 700;

  margin-bottom: 10px;

  color: #222;
}

/* SUBTITLE */

.section-subtitle {
  text-align: center;

  color: #666;

  max-width: 650px;

  margin: auto;

  margin-bottom: 50px;
}

/* GRID */

.menu-grid {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 25px;
}

/* CARD */

.menu-card {
  background: white;

  padding: 25px;

  border-radius: 12px;

  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);

  transition: 0.3s;
}

.menu-card:hover {
  transform: translateY(-6px);
}

/* CATEGORY TITLE */

.menu-card h3 {
  font-size: 20px;

  margin-bottom: 18px;

  color: #e30613;
}

/* LIST */

.menu-card ul {
  list-style: none;

  padding: 0;
}

.menu-card li {
  display: flex;

  justify-content: space-between;

  padding: 10px 0;

  border-bottom: 1px solid #eee;

  font-size: 15px;
}

.menu-card li:last-child {
  border: none;
}

/* BUTTON */

.menu-btn-box {
  text-align: center;

  margin-top: 40px;
}

.menu-btn {
  background: #e30613;

  color: white;

  padding: 14px 28px;

  border-radius: 6px;

  text-decoration: none;

  font-weight: 600;

  transition: 0.3s;
}

.menu-btn:hover {
  background: #ffcc00;

  color: black;
}

/* MOBILE */

@media (max-width: 992px) {
  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .menu-grid {
    grid-template-columns: 1fr;
  }
}

/* SECTION */

.gallery-section {
  padding: 90px 40px;

  background: #fff;

  font-family: "Poppins", sans-serif;
}

/* TITLE */

.gallery-title {
  text-align: center;

  font-size: 36px;

  font-weight: 700;

  margin-bottom: 10px;
}

/* SUBTITLE */

.gallery-subtitle {
  text-align: center;

  color: #666;

  margin-bottom: 50px;
}

/* GRID */

.gallery-grid {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 20px;
}

/* IMAGE BOX */

.gallery-item {
  overflow: hidden;

  border-radius: 10px;

  cursor: pointer;

  position: relative;
}

/* IMAGE */

.gallery-item img {
  width: 100%;

  height: 260px;

  object-fit: cover;

  transition: 0.4s;
}

/* HOVER EFFECT */

.gallery-item:hover img {
  transform: scale(1.1);
}

/* LIGHTBOX */

.lightbox {
  display: none;

  position: fixed;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  background: rgba(0, 0, 0, 0.9);

  justify-content: center;

  align-items: center;

  z-index: 9999;
}

/* LIGHTBOX IMAGE */

.lightbox-img {
  max-width: 90%;

  max-height: 80%;

  border-radius: 10px;
}

/* CLOSE BUTTON */

.close {
  position: absolute;

  top: 20px;

  right: 30px;

  color: white;

  font-size: 40px;

  cursor: pointer;
}

/* MOBILE */

@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}


/* SECTION */

.reservation-section {

  padding: 90px 40px;

  background: #fff5f0;

  font-family: 'Poppins', sans-serif;

}

/* CONTAINER */

.reservation-container {

  max-width: 1200px;

  margin: auto;

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 50px;

  align-items: center;

}

/* IMAGE */

.reservation-image {

  position: relative;

  overflow: hidden;

  border-radius: 12px;

}

.reservation-image img {

  width: 100%;

  height: 100%;

  object-fit: cover;

}

/* OVERLAY */

.reservation-overlay {

  position: absolute;

  bottom: 0;

  left: 0;

  width: 100%;

  background: rgba(0, 0, 0, 0.6);

  color: white;

  padding: 30px;

}

.reservation-overlay h2 {

  font-size: 28px;

  margin-bottom: 10px;

}

/* FORM BOX */

.reservation-form-box {

  background: white;

  padding: 35px;

  border-radius: 12px;

  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);

}

/* TITLE */

.form-title {

  font-size: 28px;

  margin-bottom: 25px;

}

/* ROW */

.form-row {

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 15px;

  margin-bottom: 15px;

}

/* INPUT */

input,
select,
textarea {

  width: 100%;

  padding: 12px;

  border: 1px solid #ddd;

  border-radius: 6px;

  font-size: 15px;

}

textarea {

  height: 90px;

  resize: none;

}

/* BUTTON */

.reservation-btn {

  width: 100%;

  background: #E30613;

  color: white;

  padding: 14px;

  border: none;

  border-radius: 6px;

  font-size: 16px;

  font-weight: 600;

  cursor: pointer;

  transition: 0.3s;

}

.reservation-btn:hover {

  background: #ffcc00;

  color: black;

}

/* CONTACT */

.contact-info {

  margin-top: 15px;

  font-size: 14px;

  color: #555;

}

/* MOBILE */

@media(max-width:768px) {

  .reservation-container {

    grid-template-columns: 1fr;

  }

  .form-row {

    grid-template-columns: 1fr;

  }

}



/* SECTION */

.testimonials-section {

  padding: 90px 40px;

  background: #fff5f0;

  font-family: 'Poppins', sans-serif;

}

/* TITLE */

.testimonial-title {

  text-align: center;

  font-size: 36px;

  font-weight: 700;

  margin-bottom: 10px;

}

/* SUBTITLE */

.testimonial-subtitle {

  text-align: center;

  color: #666;

  margin-bottom: 50px;

}

/* SLIDER */

.testimonial-slider {

  display: flex;

  gap: 25px;

  overflow-x: auto;

  scroll-behavior: smooth;

  padding-bottom: 10px;

}

/* CARD */

.testimonial-card {

  min-width: 320px;

  background: white;

  padding: 30px;

  border-radius: 12px;

  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);

  transition: 0.3s;

}

.testimonial-card:hover {

  transform: translateY(-6px);

}

/* STARS */

.stars {

  color: #FFD700;

  font-size: 20px;

  margin-bottom: 15px;

}

/* TEXT */

.testimonial-text {

  font-size: 15px;

  line-height: 1.6;

  color: #555;

  margin-bottom: 20px;

}

/* NAME */

.testimonial-card h4 {

  margin: 0;

  font-size: 18px;

}

/* ROLE */

.testimonial-card span {

  font-size: 14px;

  color: #999;

}


/* FOOTER */

.footer {

  background: #111;

  color: #fff;

  padding: 70px 40px 20px;

  font-family: 'Poppins', sans-serif;

}

/* CONTAINER */

.footer-container {

  max-width: 1200px;

  margin: auto;

  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 40px;

}

/* LOGO */

.footer-logo {

  width: 180px;

  margin-bottom: 15px;

}

/* TEXT */

.footer-about {

  color: #ccc;

  line-height: 1.6;

}

/* HEADINGS */

.footer-col h3 {

  margin-bottom: 18px;

  font-size: 18px;

  color: #fff;

}

/* LINKS */

.footer-col ul {

  list-style: none;

  padding: 0;

}

.footer-col ul li {

  margin-bottom: 10px;

}

.footer-col ul li a {

  color: #ccc;

  text-decoration: none;

  transition: 0.3s;

}

.footer-col ul li a:hover {

  color: #E30613;

}

/* SOCIAL */

.social-icons {

  margin-top: 15px;

}

.social-icons a {

  display: inline-block;

  margin-right: 10px;

  background: #E30613;

  color: white;

  width: 38px;

  height: 38px;

  line-height: 38px;

  text-align: center;

  border-radius: 50%;

  transition: 0.3s;

}

.social-icons a:hover {

  background: #ffcc00;

  color: black;

}

/* CONTACT */

.footer-col p {

  color: #ccc;

  margin-bottom: 12px;

}

.footer-col a {

  color: #ccc;

  text-decoration: none;

}

.footer-col a:hover {

  color: #E30613;

}

/* BOTTOM */

.footer-bottom {

  text-align: center;

  border-top: 1px solid #333;

  margin-top: 40px;

  padding-top: 15px;

  color: #aaa;

}

/* MOBILE */

@media(max-width:992px) {

  .footer-container {

    grid-template-columns: repeat(2, 1fr);

  }

}

@media(max-width:600px) {

  .footer-container {

    grid-template-columns: 1fr;

  }

}


/* BREADCRUMB SECTION */

.breadcrumb-section {

  background: linear-gradient(rgba(0, 0, 0, 0.6),
      rgba(0, 0, 0, 0.6)),
    url('bread.jpg');

  background-size: cover;

  background-position: center;

  padding: 90px 40px;

  color: white;

  font-family: 'Poppins', sans-serif;

}

/* CONTAINER */

.breadcrumb-container {

  max-width: 1200px;

  margin: auto;

  text-align: center;

}

/* TITLE */

.breadcrumb-title {

  font-size: 40px;

  font-weight: 700;

  margin-bottom: 15px;

}

/* BREADCRUMB */

.breadcrumb {

  font-size: 16px;

}

/* LINKS */

.breadcrumb a {

  color: #ffcc00;

  text-decoration: none;

  font-weight: 500;

}

.breadcrumb a:hover {

  text-decoration: underline;

}

/* SEPARATOR */

.separator {

  margin: 0 8px;

  color: #ddd;

}

/* CURRENT PAGE */

.current {

  color: white;

  font-weight: 600;

}

/* MOBILE */

@media(max-width:768px) {

  .breadcrumb-title {

    font-size: 28px;

  }

}


.menu-section {

  padding: 90px 20px;
  background: #fff;
  font-family: Poppins;

}

.menu-title {

  text-align: center;
  font-size: 42px;
  font-weight: 700;

}

.menu-subtitle {

  text-align: center;
  margin-bottom: 40px;

}

.menu-tabs {

  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;

}

.tab-btn {

  padding: 10px 18px;
  border: none;
  background: #eee;
  cursor: pointer;
  font-weight: 600;
  border-radius: 6px;

}

.tab-btn.active {

  background: #E30613;
  color: white;

}

.menu-content {

  display: none;

}

.menu-content.active {

  display: block;

}

.menu-item {

  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid #ddd;

}

.category-title {

  font-size: 32px;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;

}

.sub-category {

  font-size: 24px;
  margin-top: 40px;
  margin-bottom: 20px;
  color: #E30613;

}

.menu-card {

  padding: 20px;
  border-bottom: 1px solid #eee;

}

.menu-row {

  display: flex;
  justify-content: space-between;
  align-items: center;

}

.menu-row h4 {

  font-size: 18px;
  font-weight: 600;

}

.menu-row span {

  font-weight: 700;
  color: #E30613;

}

.menu-card p {

  margin-top: 6px;
  color: #666;
  font-size: 14px;

}

.deal-card {

  background: #ffffff;
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 25px;
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.08);

}

.deal-header {

  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;

}

.deal-header h3 {

  font-size: 22px;
  font-weight: 700;

}

.deal-price {

  font-size: 22px;
  font-weight: bold;
  color: #E30613;

}

.deal-items {

  margin-top: 12px;
  padding-left: 20px;

}

.deal-items li {

  margin-bottom: 6px;

}

.per-person {

  color: #777;
  font-size: 14px;
  margin-bottom: 10px;

}

.menu-note {

  margin-top: 20px;
  font-size: 14px;
  color: #888;
  font-style: italic;

}

.menu-timing {

  font-weight: 600;
  color: #E30613;
  margin-bottom: 20px;
  font-size: 16px;

}