:root {
  --fl-red: #BC1028;
  --fl-dark: #1A1A1A;
  --fl-font : 'Poppins', sans-serif;
}
body{
    font-family: var(--fl-font);
}
button:focus:not(:focus-visible) {
    outline: 0;
    box-shadow: none;
}
a {
    color: var(--fl-red);
    text-decoration: none;
}
/* Logo */
.menu-area .logo-red {
  color: var(--fl-red);
}
/* Sticky Header Base */
#stickyHeader {
  position: relative;
  transition: all 0.4s ease;
  z-index: 999;
}

/* Sticky Active State */
#stickyHeader.sticky-active {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  animation: slideDown 0.5s ease forwards;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  background: #fff;
}

/* Keyframe Animation */
@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Navbar links */
.menu-area .nav-link {
    font-weight: 700;
    color: var(--fl-dark);
    position: relative;
    font-size: 15px;
    text-transform: uppercase;
    line-height: 12px;
}
.menu-area .nav-link:hover {
  color: var(--fl-red);
}
/* Underline hover effect (desktop) */
.menu-area .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--fl-red);
  transition: 0.3s;
}
.menu-area .nav-link:hover::after {
  width: 100%;
}
/* Red Button */
.menu-area .btn-red {
    background: var(--fl-red) !important;
    color: #fff !important;
    border-radius: 6px !important;
    padding: 8px 18px !important;
}
.menu-area .btn-red:hover {
  background: #a00d22;
  color: #fff;
}
/* Phone */
.menu-area .phone-red {
  color: var(--fl-red);
  text-decoration: none;
}
/* Custom mobile toggler */
.menu-area .custom-toggler {
  border: none;
}
/* Offcanvas Mobile Menu */
.menu-area .offcanvas {
    background: linear-gradient(160deg, #ffffff, #f8f8f8);
    background-color: #fff;
}
.menu-area .mobile-nav li {
  margin-bottom: 16px;
}
.menu-area .mobile-nav a {
  display: block;
  padding: 12px 16px;
  border-radius: 8px;
  background: #fff;
  color: var(--fl-dark);
  font-weight: 500;
  text-decoration: none;
  box-shadow: 0 6px 16px rgba(0,0,0,0.05);
  transition: 0.3s;
}
.menu-area .mobile-nav a:hover {
  background: var(--fl-red);
  color: var(--bs-white);
  transform: translateX(6px);
}
.text-red {
  color: var(--fl-red);
}
/* ==================
Premium Banner Animation
================== */
.hero-section {
    position: relative;
    overflow: hidden;
    background-color: #fff; /* Base color */
}

/* Texture image layer */
.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("../images/background.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    opacity: 1; /* SVG opacity */
    z-index: 0;
}

/* Content above background */
.hero-section > * {
    position: relative;
    z-index: 1;
}


/* Text container */
.hero-text {
    height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
/* Reveal animation */
.reveal h1 {
  font-size: 55px; 
  font-weight: 700; 
  color: var(--fl-dark); 
  text-transform: uppercase;
    opacity: 0;
    transform: translateY(40px);
    animation: textUp 1s ease forwards;
}
.hero-text>h1>span { color: var(--fl-red); } 
.reveal p {
    font-size: 20px; 
    font-weight: 500; 
    color: var(--fl-dark);
    opacity: 0;
    transform: translateY(30px);
    animation: textUp 1s ease forwards;
    animation-delay: 0.3s;
}

/* Banner image float */
.banner-float {
    width: 100%;
    opacity: 0;
    transform: translateY(40px) scale(0.98);
    animation: imageReveal 1.2s ease forwards, floatY 6s ease-in-out infinite;
    animation-delay: 0.4s;
}

/* Decorative shapes */
.float-slow {
    animation: floatY 8s ease-in-out infinite;
}

.float-slower {
    animation: floatY 12s ease-in-out infinite;
}

.float-x {
    animation: floatX 10s ease-in-out infinite;
}

/* Existing absolute positions (kept same) */
.abs-shap1 {
    position: absolute;
    left: 36%;
    top: -10%;
     width: 140px;
}

.abs-shap2 {
    position: absolute;
    left: 10%;
    top: 10%;
   
}

.abs-shap3 {
    position: absolute;
    bottom: 0;
    left: 10%;
     width: 180px;
}

/* ==================
KEYFRAMES
================== */

@keyframes textUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes imageReveal {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes floatY {
    0% { transform: translateY(0); }
    50% { transform: translateY(-18px); }
    100% { transform: translateY(0); }
}

@keyframes floatX {
    0% { transform: translateX(0); }
    50% { transform: translateX(14px); }
    100% { transform: translateX(0); }
}

@keyframes sectionFade {
    from { opacity: 0; }
    to { opacity: 1; }
}
/*============================================
 ABOUT SECTION START 
 ============================================*/
.about-section {
  background: var(--fl-dark);
  font-family: var(--fl-font);
  color: #fff;
  position: relative;
  overflow-y: hidden;
  /* height: 100vh; */
}
.img-about-htshape7{
  position: absolute;
  right: 0;
  animation: floatY 6s ease-in-out infinite;
}
/* Section Tag */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--fl-red);
  margin-bottom: 20px;
}

.section-tag .line {
  width: 40px;
  height: 2px;
  background: var(--fl-red);
}

/* Heading */
.about-content h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
}

.about-content h2 span {
  color: var(--fl-red);
}

/* Paragraph */
.about-content p {
  font-size: 16px;
  max-width: 520px;
  margin-bottom: 25px;
}

/* List */
.about-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 15px;
  color: #e0e0e0;
}

.about-list i {
  color: var(--fl-red);
  font-size: 14px;
}

/* Button */
.about-content .btn {
  border-radius: 8px;
  padding: 10px 26px;
}

/* Image Area */
.about-image {
  position: relative;
  text-align: center;
}

.about-image .main-img {
  max-width: 100%;
  border-radius: 12px;
  z-index: 2;
  position: relative;
}

/* Floating Leaves */
.leaf {
  position: absolute;
  width: 80px;
  z-index: 1;
}

.leaf-1 {
  top: -30px;
  right: 40px;
}

.leaf-2 {
  bottom: -20px;
  left: 40px;
}
.about-features {
  color: #fff;
}
/* Feature item */
.feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    flex-direction: column;
}
/* Icon box */
.feature-icon {
  width: 64px;
  height: 64px;
}
.feature-icon img {
    width: 100%;
}

/* Content */
.feature-content h5 {
  font-size: 18px;
  font-weight: 700;
  color: var(--fl-red);
  margin-bottom: 6px;
}

.feature-content p {
  font-size: 14px;
  line-height: 1.6;
  color: #cfcfcf;
  margin: 0;
}

/* Divider */
.feature-divider {
  border: none;
  border-top: 1px dashed rgba(255,255,255,0.15);
  margin: 28px 0;
}
/* toping and pizza */
.float-about-img {
    position: relative;
    width: 67%;
    height: 280px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    bottom: -38px;
}

/* Main Pizza Image */
.img-about-main-banner {
    position: absolute;
    bottom: -12px;
    left: 5%;
    max-width: 100%;
    width: auto;
    z-index: 2;
}

/* Topping container */
.float-about-img .toping {
  position: absolute;
  bottom: 120px;
  left: 18%;
  width: 360px;
  height: 260px;
  z-index: 3;
}

/* All topping images */
.float-about-img .toping img {
  position: absolute;
  /* max-width: 90px; */
}

/* Individual positions (tuned to screenshot) */
.toping .img-1 {
    top: 0;
    right: -77%;
    width: 207px;
}
.toping .img-2 {
    top: -21px;
    left: 50%;
}
.toping .img-3 {
    top: 133px;
    left: -2%;
    width: 150px;
}

.toping img {
  animation: floatY 6s ease-in-out infinite;
}

@keyframes floatY {
  0% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
  100% { transform: translateY(0); }
}

/* ======================================
START resturent MENU STYLE
======================================== */
.bg-menu{
    background-image: url(../images/background.png);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 100px 0px;
    position: relative;
}
.section-title {
    padding: 0px 0px 50px 0px;
    text-align: center;
}
.section-title>h2{
  font-family: 45px;
  font-weight: 700;
  color: var(--fl-dark);
}
.section-title>h2>span{
color: var(--fl-red);
}
.menuSwiper {
  overflow: hidden;
}
.menuSwiper .swiper-slide {
  height: auto;
}
.menu-card {
  width: 100%;
}
.menu-card {
    background: linear-gradient(180deg, #FFFFFF 0%, #FFFAEC 100%);
    padding: 28px 20px 32px;
    transition: 0.35s ease;
    max-width: 100%;
    border: none !important;
}
.menu-card:hover{
  border: none !important;
}
.menu-card.active {
    background: linear-gradient(180deg, var(--fl-red) 0%, #FFFAEC 100%);
}
.menu-item-title {
    min-height: 80px;
}
/* Title */
.menu-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--fl-dark);
  margin-bottom: 6px;
      line-height: normal;
}
/* Sub text */
.menu-count {
  font-size: 14px;
  font-weight: 500;
  color: var(--fl-dark);
  opacity: 0.75;
}
.menu-card.active .menu-title, .menu-card.active .menu-count{
color: var(--bs-white);
}
/* Image wrapper */
.menu-img {
  margin-top: 22px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 170px;
}
/* Image */
.menu-img img {
    max-width: 160px;
    transition: 0.4s ease;
    object-fit: fill;
    height: 100%;
}
.menu-section {
  padding: 40px 0;
}

.menu-heading {
  font-size: 32px;
  font-weight: 700;
  color: var(--fl-red);
  margin-bottom: 25px;
}

/* UL */
.menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
  columns: 2;
  column-gap: 60px;
}

/* LI */
.menu-list li {
  break-inside: avoid;
  margin-bottom: 18px;
}

/* A */
.menu-list li a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--fl-dark);
  font-size: 18px;
  font-weight: 500;
}
.swiper-button-next, .swiper-button-prev{
  color: var(--fl-dark);
}
/* Name */
.item-name {
  white-space: nowrap;
}

/* Dotted line */
.dots {
  flex: 1;
  border-bottom: 2px dotted var(--fl-dark);
  margin: 0 12px;
  transform: translateY(-2px);
}

/* Price */
.item-price {
  white-space: nowrap;
  font-weight: 700;
}

/* Hover */
.menu-list li a:hover {
  color: var(--fl-red);
}

.menu-list li a:hover .dots {
  border-color: var(--fl-red);
}
.img-menufloat-htshape17{
    position: absolute;
    top: 100px;
    right: 100px;
}
.img-menufloat-htshape3{
    position: absolute;
    bottom: 0;
    left: 50px;
}

/* ===============
Product section
================ */
.bg-product{
  padding: 100px 0px;
}
.point-block {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}
.point-block .item {
    border: 1px solid #E5E5E5;
    border-radius: 5px;
    padding: 15px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
    width: 100%;
}
.point-block .item>img {
    width: 49px;
}
.point-block .item>h4{
margin: 0px;
font-size: 24px;
font-weight:600;
color: var(--fl-dark);
}
.point-block .item>p{
  margin: 0px;
  font-size: 16px;
font-weight:400;
color: var(--fl-dark);
}
.nutrition-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
}

.nutrition-item {
  padding: 18px 24px;
  position: relative;
}

.nutrition-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 15%;
  right: 0;
  width: 2px;
  height: 70%;
  background: var(--fl-red); /* red divider */
}

/* Text */
.label {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: #111;
  margin-bottom: 6px;
}
.value {
  font-size: 36px;
  font-weight: 700;
  color: var(--fl-red);
}
/* ================
FRANCHISE SECTION
================== */
.franchise-creative {
  background:var(--fl-dark);
  font-family: var(--fl-font);
  position: relative;
  padding: 100px 0px;
}
.image-wrapper {
  position: relative;
}
.image-wrapper img {
  border-radius: 10px;
}
.franchise-card {
    background: rgb(0 0 0 / 48%);
    backdrop-filter: blur(12px);
    border-radius: 25px;
    padding: 45px;
    /* box-shadow: 0 30px 60px rgb(0 0 0 / 0%); */
    margin-left: -100px;
}
.franchise-card .badge {
  background: var(--fl-red);
  padding: 8px 16px;
  border-radius: 50px;
  font-weight: 500;
}
.franchise-card h2 {
  font-weight: 800;
  color: var(--bs-white);
  margin-bottom: 10px;
}
.franchise-card h2 span {
  color: var(--fl-red);
}
.franchise-card p {
  color: var(--bs-white);
  margin-bottom: 30px;
}
.fancy-input .input-group-text {
  background: transparent;
  border: 1px solid #ddd;
  border-right: none;
  border-radius: 12px 0 0 12px;
  color: var(--fl-red);
}
.fancy-input .form-control {
  border-left: none;
  border-radius: 0 12px 12px 0;
  padding: 12px 15px;
}

.textarea-icon {
  align-items: flex-start;
  padding-top: 15px;
}

.fancy-input .form-control:focus {
  box-shadow: none;
  border-color: var(--fl-red);
}

.creative-btn {
  background: var(--fl-red);
  border-radius: 5px;
  padding: 14px;
  font-weight: 600;
  color: #fff;
  border: none;
  transition: 0.3s;
}

.creative-btn:hover {
  /* background: linear-gradient(135deg, var(--fl-dark), var(--fl-red)); */
  transform: translateY(-2px);
}

/* ===============
TESTIMONIAL SECTION
================ */
.bg-testimonial{
  position: relative;
  padding: 100px 0px;
}
.img-htleaf {
    position: absolute;
    right: 0;
    bottom: 0;
}
.img-htleaf2 {
    position: absolute;
    left: 6px;
}
.testimonial-slide{
  padding-bottom: 80px;
}
.testimonial-card {
    border: 1px solid #E5E5E5;
    padding: 25px;
    border-radius: 15px;
}
.bg-testimonial .swiper-pagination-bullet-active{
  background: var(--fl-red, var(--fl-red));
}
.testimonial-header {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
}
.quote-icon{
  color: var(--fl-red);
    font-size: 100px;
    line-height: 70px;
    opacity: 0.3;
    font-family: fantasy;
}
.profile{
    display: flex;
    gap: 18px;
    align-items: center;
}
.profile .info>h4 {
    font-size: 22px;
    margin-bottom: 0;
    font-weight: 700;
}
.profile .info>div {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}
.stars{
  color: #FF9933;
    font-size: 24px;
    line-height: 11px;
}
.testimonial-body {
    display: flex;
    gap: 15px;
    align-items: center;
}
.product-img {
    height: 140px;
}
.product-img>img {
    object-fit: cover;
    height: 100%;
}
/* =====================
Footer Section Start
==================== */
.bg-footer {
    background-image: url(../images/background.png);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 50px 0px 25px 0px;
    position: relative;
    background-color: #ffffff;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  text-decoration: none;
  color: var(--fl-dark);
}

.footer-links a:hover {
  color: var(--fl-red);
}

.social-icons a {
  display: inline-block;
  margin-right: 10px;
  font-size: 18px;
  color: var(--fl-red);
}

.social-icons a:hover {
  color: var(--fl-dark);
}

footer input.form-control {
  border-radius: 8px 0 0 8px;
  background-color: #FFF8EE;
    border: 1px solid #E5E5E5;
    padding: 15px;
}

footer .input-group .btn {
  border-radius: 0 8px 8px 0;
}
.social-icons a {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--fl-red);
  color: var(--bs-white);
  margin-right: 8px;
  font-size: 16px;
  transition: 0.3s;
}

.social-icons a:hover {
  background:var(--fl-dark);
  color: var(--bs-white);
}
.img-foorer-lip{
  position: absolute;
    bottom: 12%;
    left: 6%;
}
.img-foorer-htleaf2 {
    position: absolute;
    right: 5%;
    width: 100px;
}


/* Mobile */
@media (max-width: 991px) {
  .float-about-img {
    height: 320px;
    justify-content: center;
    display: none;
  }

  .img-about-main-banner {
    position: relative;
    left: 0;
    max-width: 300px;
  }

  .float-about-img .toping {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    width: 260px;
  }

  .float-about-img .toping img {
    max-width: 70px;
  }
    .feature-item {
    gap: 16px;
  }

  .feature-icon {
    width: 56px;
    height: 56px;
  }

  .about-content h2 {
    font-size: 32px;
  }
}



@media (max-width: 768px) {
  .hero-text{
    height: auto;
    padding-top: 130px;
  }
  .reveal h1{
    font-size: 34px;
  }
  .franchise-card {
    border-radius: 10px;
    padding: 15px;
    margin-left: 0;
}
.img-htleaf2 {
    position: absolute;
    left: 6px;
    top: 0;
    width: 104px;
}
.testimonial-header{
  padding-bottom: 20px;
}
.testimonial-body{
    flex-direction: column;
}
.profile {
    display: flex;
    flex-direction: column;
}
  .nutrition-bar {
    grid-template-columns: 1fr;
  }

  .nutrition-item:not(:last-child)::after {
    display: none;
  }

  .nutrition-item {
    border-bottom: 2px solid var(--fl-red);
  }

  .menu-list {
    columns: 1;
  }
  .menu-title{
    font-size: 16px;
  }
  .menu-card{
        padding: 18px 4px 12px;
  }
  .img-menufloat-htshape17 {
    position: absolute;
    top: 25px;
    right: 9px;
}
.point-block .item>h4 {
    margin: 0px;
    font-size: 18px;
    font-weight: 700;
    color: var(--fl-dark);
}

}

/* Responsive */
@media (max-width: 575px) {
  .menu-img img {
    max-width: 140px;
  }
}

