html{
    scroll-behavior: smooth;
}
body{
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #f4f4f4;
    box-sizing: border-box !important;
}
:root {
    --main-color: #991C22;
    --secondary-color: #FFD812;
    --pizza-size: 150px;
  }.logo {
    width: 65px;
    height: auto;
    margin-right: 20px;
  }
.loading {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  left: 0;
  overflow: hidden;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100000000000000000;
}
.bg-wrap {
  background-color: #fa3118;
  height: 100vh;
  left: 0;
  opacity: 0.9;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10;
}
.pizza-preloader {
  height: var(--pizza-size);
  position: relative;
  width: var(--pizza-size);
  z-index: 10;
}
.pizza_piece {
  animation-iteration-count: infinite;
  animation-direction: normal;
  animation-duration: 1.4s;
  align-items: center;
  justify-content: center;
  display: grid;
  grid-template-columns: 50% 50%;
  grid-template-rows: 50% 50%;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 10;
}
.pizza_inner {
  border-radius: 50%;
  grid-column: 1/3;
  grid-row: 1/3;
  margin: 0 auto;
}
.pizza_crust {
  border: 13px solid #ff9439;
  box-sizing: border-box;
  height: 100%;
  width: 100%;
}
.pizza_sause {
  border: calc(var(--pizza-size)/2 - 10px) solid #ff000e;
  height: 1px;
  width: 1px;
}
.pizza_cheeze {
  border: calc(var(--pizza-size)/2 - 15px) solid #efde81;
  height: 1px;
  width: 1px;
}
.pizza_filling {
  background-image: radial-gradient(circle at center,red 0, red 6px, transparent 6px, transparent 100%);
  background-repeat: repeat;
  background-position: left center;
  background-size: 18px 18px;
  border-radius: 100%;
  height: calc(100% - 20px);
  margin: 0;
  overflow: hidden;
  transform: rotate(45deg);
  width: calc(100% - 20px);
}
.pizza_piece:first-child {
  animation-name: top-piece;
}
.pizza_piece:nth-child(2) {
  animation-name: right-piece;
}
.pizza_piece:nth-child(3) {
  animation-name: bottom-piece;
}
.pizza_piece:nth-child(4) {
  animation-name: left-piece;
}
.pizza_piece:first-child .pizza_inner {
  border-bottom-color: transparent;
  border-left-color: transparent;
  border-right-color: transparent;
}
.pizza_piece:nth-child(2) .pizza_inner {
  border-bottom-color: transparent;
  border-left-color: transparent;
  border-top-color: transparent;
}
.pizza_piece:nth-child(3) .pizza_inner {
  border-right-color: transparent;
  border-left-color: transparent;
  border-top-color: transparent;
}
.pizza_piece:nth-child(4) .pizza_inner {
  border-bottom-color: transparent;
  border-top-color: transparent;
  border-right-color: transparent;
}
.pizza_piece:first-child .pizza_filling {
  align-self: flex-end;
  grid-column: 1/2;
  grid-row: 1/2;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: 0;
  margin-left: auto;
  transform-origin: right bottom;
}
.pizza_piece:nth-child(2) .pizza_filling {
  align-self: flex-end;
  grid-column: 2/3;
  grid-row: 1/2;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  margin-right: auto;
  transform-origin: left bottom;
}
.pizza_piece:nth-child(3) .pizza_filling {
  align-self: flex-start;
  grid-column: 2/3;
  grid-row: 2/3;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  margin-right: auto;
  transform-origin: left top;
}
.pizza_piece:nth-child(4) .pizza_filling {
  align-self: flex-start;
  grid-column: 1/2;
  grid-row: 2/3;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
  border-bottom-right-radius: 0;
  margin-left: auto;
  transform-origin: right top;
}
@keyframes top-piece {
  0% {
    transform: translateY(0);
  }
  20% {
    transform: translateY(-10px);
  }
  40% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes right-piece {
  0% {
    transform: translateX(0);
  }
  20% {
    transform: translateY(0);
  }
  40% {
    transform: translateX(10px);
  }
  60% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes bottom-piece {
  0% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(0);
  }
  60% {
    transform: translateY(10px);
  }
  80% {
    transform: translateX(0);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes left-piece {
  0% {
    transform: translateX(0);
  }
  60% {
    transform: translateY(0);
  }
  80% {
    transform: translateX(-10px);
  }
  100% {
    transform: translateX(0);
  }
}
  #header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #991C22;
    height: 10vh;
    padding: 0 40px;
    max-width: 100%;
    margin: 0 !important;
    position: sticky;
    top: 0;
    z-index: 1000000;
  }
  nav a {
    position: relative;
    font-size: 1.5rem;
    color: #FFD812;
    text-decoration: none;
    padding: 6px 20px;
    transition: 0.5s;
  }
  nav a:hover {
    color: #caab13;
  }
  nav a span {
    position: absolute;
    top: 0;
    left: 0;
    margin-left: 7.5%;
    width: 85%;
    height: 90%;
    z-index: 10;
    border-bottom: 2px solid #caab13;
    border-radius: 25px;
    transform: scale(0) translateY(40px);
    opacity: 0;
    transition: 0.5s;
  }
  nav a:hover span {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
  .topnav {
    display: flex;
    align-items: center;
  }
  .topnav .icon {
    display: none;
    font-size: 22px;
    color: white;
    cursor: pointer;
  }
  @media screen and (max-width: 768px) {
    #header {
      align-items:center;
      height: fit-content;
      padding: 15px 20px;
    }
    .topnav {
      width: 100%;
      flex-direction: column;
      align-items: flex-start;
    }
    .topnav .icon {
      display: block;
      align-self: flex-end;
      margin-bottom: 10px;
      margin: auto 0;
    }
    .topnav .nav-links {
      display: none;
      flex-direction: column;
      width: 100%;
      background-color: #991C22;
      padding: 10px 0;
    }
    .topnav .nav-links.show {
      display: flex;
    }
    .topnav .nav-links a {
      padding: 12px 20px;
      width: 100%;
      text-align: left;
      border-top: 1px solid rgba(255, 255, 255, 0.2);
    }
    nav a:hover span{
      opacity: 0 !important;
    }
    .aboutUsParagraph{
      line-height: 1.4 !important;
    }
    .menuImages{
      height: 400px !important;
    }
    .oppeningHoursContent{
      width: 96% !important;
      left: 2% !important;
    }
    .card-body{
      padding: 25px 40px !important;
    }
  }
  
#homeHeroSection {
    display: flex;
    justify-content: center;
    align-items:start; 
    height: 90vh;
    background-image: url(/assets/homeheroimg.webp);
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: left;
    padding-left: 5%;
}
.heroContentWrapper {
    width: 40%;
    display: flex;
    flex-direction: column;
    justify-content: center;
     align-items: start; 
}
.heroTitle{
    font-size: 10rem;
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 0px;
    margin-top: 20%;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
.heroParagraph{
    font-style: italic;
    font-size: 2rem;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-top: 10px;
}
.heroBtn {
  background-color: var(--main-color);
  border: 1px solid transparent;
  border-radius: .75rem;
  box-sizing: border-box;
  color: var(--secondary-color);
  cursor: pointer;
  flex: 0 0 auto;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.5rem;
  padding: .75rem 1.2rem;
  text-align: center;
  text-decoration: none #6B7280 solid;
  transition-duration: .2s;
  transition-property: background-color,border-color,color,fill,stroke;
  transition-timing-function: cubic-bezier(.4, 0, 0.2, 1);
  user-select: none;
  width: auto;
}
.heroBtn:hover {
  background-color: #6d1519;
}
.heroBtn:focus {
  box-shadow: none;
  outline: 2px solid transparent;
  outline-offset: 2px;
}
@media screen and (max-width: 992px) {
  .heroTitle {
      font-size: 6rem;
      margin-top: 10%;
  }
  .heroParagraph {
      font-size: 1.5rem;
  }
  .heroContentWrapper {
      width: 70%;
  }
  .heroTitle img {
      max-width: 400px;
  }
}
@media screen and (max-width: 600px) {
  #homeHeroSection {
      align-items: center;
      padding: 10% 3%;
      text-align: center;
      height: 50vh;
  }
  .heroContentWrapper {
      width: 100%;
      align-items: start;
  }
  .heroTitle {
      font-size: 4rem;
      margin-top: 5%;
  }
  .heroTitle img {
      margin-left: 0;
      max-width: 90%;
  }
  .heroParagraph {
      font-size: 1.4rem;
  }
  .heroBtn {
      font-size: 1.2rem;
      padding: 8px 16px;
  }
  #aboutUsSection{
    flex-direction: column-reverse;
  }
  .aboutUsContent{
    width: 100% !important;
    align-items: center !important;
  }
  .aboutUsParagraph{
    text-align: justify;
  }
  .aboutUsImageWrapper{
    width: 100% !important;
  }
  #menuHighlightSection{
    flex-direction: column;
  }
  .menuText{
    width: 100% !important;
    align-items: center !important;
  }
  .oppeningHoursContent{
    transform: scale(0.88) translateY(-50%) !important;
    left: 3% !important;

  }
  .container2{
    height: 400px !important;
  }
  .testimonial-img{
    width:80% !important;
  }
}
#aboutUsSection {
    display: flex;
    align-items: flex-start; 
    justify-content: space-between;
    padding: 4rem;
    gap: 5%;
    background-color: #f5f5f5;
  }
  .aboutUsContent {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .label {
    color: #f0c800; 
    font-size: 1.2rem;
    margin-bottom: 0.1rem;
  }
  .aboutUsTitle {
    font-size: 3rem;
    color: #861313; 
    margin-bottom: 1rem;
    margin-top: 0;
  }
  .aboutUsParagraph {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #222;
  }
  .aboutUsImageWrapper {
    width: 40%;
  }
  .aboutUsImage {
    width: 100%;
    height: auto;
    border-radius: 15px;
    object-fit: cover;
  }
  #menuHighlightSection {
    display: flex;
    justify-content: space-between;
    align-items: start;
    padding: 4rem;
    gap: 5%;
    background-color: #f5f5f5;
  }
  .menuImages {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    width: 50%;
  }
  .menuImages img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
  }
  .menuText {
    width: 40%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: start
  }
  .menuText h2 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
  }
  .menuText p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
  }
  .menuImages {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    grid-template-rows: repeat(3, 1fr);    
    gap: 10px;
    width: 100%;
    max-width: 600px;
    height: 550px; 
  }
  .menuImages img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
  }
  .img1 {
    grid-column: span 2;
    grid-row: span 2;
  }
  .img2 {
    grid-column: 3;
    grid-row: span 2;
  }
  .img3 {
    grid-column: span 3;
    grid-row: 3;
  }
  .img4 {
    grid-column: 1;
    grid-row: 3;
  }
  .best-offer .container {
    width: 85%;
    margin: 0 auto;
    padding: 2rem 1rem;
  }
  .best-offer .section-title {
    text-align: center;
    color: #7f1d1d;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
  }
  .best-offer .grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(1, 1fr);
  }
  @media (min-width: 640px) {
    .best-offer .grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  @media (min-width: 1024px) {
    .best-offer .grid {
      grid-template-columns:  10fr 8fr;
    }
  }
  .special-card{
    height: 18%;
    background-color: var(--main-color) !important;
  }
  .best-offer .column,
  .best-offer .center-card {
    display: flex;
    justify-content: space-around;
    flex-direction: column;
    gap: 0.5rem;
  }
  .best-offer .card,
  .best-offer .center-card {
    background-color: white;
    border-radius: 0.75rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    overflow: hidden;
    display: flex;
  }
  .best-offer .image-container {
    width: 112px;
    height: 100px;
    flex-shrink: 0;
    position: relative;
  }
  .best-offer .image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0.75rem 0 0 0.75rem;
  }
  .best-offer .info {
    padding: 0.75rem 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-grow: 1;
  }
  .best-offer .title {
    font-size: 0.75rem;
    font-weight: 600;
    color: #000;
  }
  .best-offer .price {
    margin-top: 0.25rem;
    color: #7f1d1d;
    font-weight: 600;
    font-size: 0.875rem;
  }
  .best-offer .price .original-price {
    text-decoration: line-through;
    color: #d1d5db;
    margin-left: 0.5rem;
  }
  .best-offer .large {
    font-size: 1.125rem;
  }
  .best-offer .center-card .image-container.main {
    width: 100%;
    height: 320px;
    position: relative;
  }
  .best-offer .center-card .image-container.main img {
    border-radius: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .container2{
    position: relative;
    width: 100%;
    height: 600px;
  }
  .container2 img{
    width: 100%;
    height: 100%;
    border-radius: 8px;
    object-fit: cover;
  }
  .oppeningHoursContent{
    position: absolute;
    top: 50%;
    left: 15%;
    transform: translateY(-50%);
    background-color: white;
    border-radius: 16px;
    width: 400px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  }
  .card-header {
    background-color: #7f1d1d; 
    padding:20px 40px;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
  }
  .card-header h2 {
    color: #facc15; 
    font-weight: 800;
    font-size: 30px;
    text-align: center;
    margin: 0;
  }
  .card-body {
    padding: 25px 50px;
    color: #7f1d1d; 
    font-weight: 600;
    font-size: 25px;
  }
  .time-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom:10px;
    margin-bottom:10px;
    border-bottom: 3px dashed #facc15; 
  }
  .time-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
  }
  .testimonial-section {
    position: relative;
    margin: 0 auto;
    padding: 60px 20px;
    display: flex;
    justify-content: center;
    gap: 40px;
    background-color:#F5F8FD;
  }
  .testimonial-img {
    position: absolute;
    top: 0;
    width: auto; 
    height: 100%;
    object-fit: cover;
    border-radius: 0; 
    pointer-events: none;
  }
  .testimonial-img-left {
    left: 0;
  }
  .testimonial-img-right {
    right: 0;
  }
  .testimonial-cards-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    z-index: 10000;
  }
  @media (min-width: 640px) {
    .testimonial-cards-wrapper {
      flex-direction: row;
    }
  }
  .testimonial-card {
    background-color: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 32px 24px 24px;
    width: 280px;
    text-align: center;
    position: relative;
  }
  .testimonial-avatar {
    width: 48px;
    height: 48px;
    background-color: #5a6b8a;
    color: #fff;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    position: absolute;
    top: -24px;
    left: 50%;
    transform: translateX(-50%);
  }
  .testimonial-text {
    margin: 16px 0;
    font-size: 14px;
    color: #333;
    line-height: 1.5;
  }
  .testimonial-name {
    color: #7f1d1d;
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 8px;
  }
  .testimonial-stars {
    color: #facc15;
  }
  .testimonial-stars i {
    margin: 0 1px;
  }
  #main-footer {
    background-color: var(--main-color);
    color:var(--secondary-color)
  }
  .footer-container {
    width: 85%;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 30px 20px;
    margin: auto;
    text-align: left;
  }
  .footer-block {
    flex: 1 1 180px;
    min-width: 180px;
    display: flex;
    flex-direction: column;
    align-items:center;
    justify-content: start
  }
  .footer-block li{
    font-weight: 600;
  }
  .footer-block ul{
    margin-top: 0;
  }
  .footer-block h4 {
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-size: 1.1rem;
  }
  
  .footer-block p,
  .footer-block a,
  .footer-block li {
    color: var(--secondary-color);
    font-size: 1rem;
    text-decoration: none;
    list-style: none;
    margin: 5px 0;
    transition: color 0.3s ease;
  }
  .footer-block a:hover {
    color: var(--secondary-color);
  }
  .footer-block ul {
    padding: 0;
  }
  .footer-logo {
    max-width: 250px;
    margin-top: 30px;
  }
  .footer-block i {
    margin-right: 6px;
    color: var(--secondary-color);
  }
  .footer-bottom {
    background-color:var(--main-color);
    text-align: center;
    padding: 10px 16px;
    font-size: 1.2rem;
    color: var(--secondary-color);
  }
  .footer-bottom p {
    margin: 0 0 10px 0 ;
  }
  .footer-block i{
    font-size: 20px;
  }
  .social-media-icons i {
    font-size: 25px;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 20px 10px;
    }
    .footer-block {
      width: 100%;
      margin-bottom: 20px;
      align-items: center;
      display: block;
      flex: 1 1 60px;
    }
    .footer-block ul {
      padding-left: 0;
    }
    .footer-block iframe {
      width: 100% !important;
      height: 200px;
    }
    .footer-logo {
      max-width: 180px;
      margin: 20px auto 0;
    }
    .footer-bottom {
      font-size: 1rem;
      padding: 10px;
    }
    .footer-block h4,
    .footer-block p,
    .footer-block a,
    .footer-block li {
      font-size: 1rem;
    }
    .social-media-icons h4 {
      display: inline-block !important;
      margin: 0 10px;
      height: 20px !important;
    }
  }
::-webkit-scrollbar {
  width: 12px;
}
::-webkit-scrollbar-track {
  background: #f2f0ed; 
  border-radius: 10px;
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, var(--main-color), var(--secondary-color)); 
  border-radius: 10px;
  border: 2px solid #fff8f0;
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(to bottom, var(--main-color), var(--secondary-color)); 
}
* {
  scrollbar-width:12px;
  scrollbar-color: var(--main-color) #f2f0ed;
}





#specialOffers{
  display: none;
}