/* Merriweather – Self hosted */
@font-face {
  font-family: 'Merriweather';
  src: url('/fonts/Merriweather_24pt-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Merriweather';
  src: url('/fonts/Merriweather_24pt-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}


html {
    scroll-behavior: smooth;
}

html,
body {
    width: 100%;
    overflow-x: hidden;
}

body.loading * {
    animation: none !important;
    transition: none !important;
}


body {
  font-family: Merriweather, serif;
  font-size-adjust: 0.52;
}



.section {
    padding: 80px 0;
}

.bg-soft {
    background: #f8f9f4;
}

.top-bar {
    background: #bf2c2e;
    color: #fff;
    padding: 9px 0;
    font-size: 14px;
}

a {
    text-decoration: none;
    color: #fff;
}

span {
    color: #bf2c2e;
}

.mb-50 {
    margin-bottom: 50px;
}

.mt-30 {
    margin-top: 30px;
}

.about-right a {
    color: red;
}

.top-bar a {
    color: #fff;
    margin-left: 10px;
}

.navbar {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .1);
}

.navbar-nav .nav-item {
    margin: 0 12px;
}

.navbar-nav .nav-link {
    position: relative;
    padding: 8px 0;
    font-weight: 500;
    color: #222;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: #c62828;
    transition: width 0.3s ease;
}

.menu-cta {
  padding: 80px 0;
  background: #f8f9f4;
}

.menu-cta h2 {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 15px;
}

.menu-cta p {
  font-size: 18px;
  margin-bottom: 25px;
}



.navbar-nav .nav-link:hover {
    color: #c62828;
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

.navbar-nav .nav-link.active {
    color: #c62828;
}

.navbar-nav .nav-link.active::after {
    width: 100%;
}

@media (max-width: 991px) {
    .navbar-nav .nav-item {
        margin: 8px 0;
    }
    .navbar-nav .nav-link::after {
        display: none;
    }
}

.navbar-brand img {
    width: 100%;
    max-width: 170px;
}

.hero {
    padding: 100px 0;
    background: #FFE9C8;
}

.hero h1 {
    font-size: 58px;
    font-weight: 800;
    color: #000;
    line-height: 70px;
}

.hero p {
    font-size: 20px;
    line-height: 30px;
}

.hero-img {
    max-width: 80%;
}

.hero {
  min-height: 100vh;
}


.hero-img-wrap {
    position: relative;
    max-width: 450px;
    margin: auto;
}



.hero-bg-shape {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #ffebcd, #ffe0b2);
    border-radius: 50% 40% 60% 50%;
    z-index: 1;
}

.hero-food-img {
    position: relative;
    z-index: 2;
    width: 100%;
    animation: floatY 4s ease-in-out infinite;
}

.food-float {
    position: absolute;
    width: 100px;
    height: 100px;
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 1;
    z-index: 3;
}

.float-1 {
    top: -10px;
    left: 10%;
    background-image: url("../img/about-vector-1.webp");
    animation: floatX 6s infinite;
}

.float-2 {
    bottom: 0;
    right: 10%;
    background-image: url("../img/banner-vector-3.webp");
    animation: floatY 5s infinite;
}

@keyframes floatY {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
}

@keyframes floatX {
    0%,
    100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(12px);
    }
}

@media (max-width: 768px) {
    .food-float {
        display: block;
    }
}

#about h2 {
    font-size: 40px;
    font-weight: 800;
}

.btn-dark {
    background: #000;
    border: 2px solid #c62828;
}

.btn-dark:hover {
    background: #198754;
    border: 1px solid #198754;
    ;
}


.cta-section h2 {
    font-size: 40px;
    font-weight: 800;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-img {
    max-width: 260px;
}

.btn {
    border-radius: 50px;
    padding: 10px 22px;
    transition: .3s;
}

.btn:hover {
    transform: translateY(-2px);
    border: 1px solid #000;
}

.btn-swiggy {
    background: #bf2c2e14;
    color: #fff;
    border: 1px solid #dc3545;
}

.btn-zomato {
    background: #bf2c2e14;
    color: #fff;
    border: 1px solid #dc3545;
}


/* =========================
   SIGNATURE STATIC GRID
   ========================= */

.signature-static {
  padding: 100px 0;
  background: #2e7d3214;
}

.signature-static h2 {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 10px;
}

.signature-static p {
  font-size: 18px;
  margin-bottom: 50px;
}

.signature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.signature-item {
  text-align: center;
}

.signature-item img {
  width: 100%;
  max-width: 280px;
  border-radius: 18px;
  margin-bottom: 12px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.signature-item h6 {
  font-weight: 600;
  font-size: 16px;
  margin-top: 5px;
}

/* Tablet */
@media (max-width: 991px) {
  .signature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 576px) {
  .signature-grid {
    grid-template-columns: 1fr;
  }

  .signature-static h2 {
    font-size: 30px;
  }
}



.cta-section {
    background: url("../img/cta-bg.webp") center/cover no-repeat;
    overflow: hidden;
    position: relative;
    z-index: 1;
    color: #fff;
    padding: 100px 0;
    text-align: center;
}

.cta-section h2 {
    text-align: left;
}

.cta-section p {
    text-align: left;
}

.section-padding {
    padding: 50px;
}

.footer-social-wrapper {
    margin-top: 15px;
}

.follow-text {
    display: block;
    font-size: 16px;
    color: #fff;
    margin-bottom: 8px;
}

.footer-social a {
    display: inline-flex;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    margin-right: 8px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #c62828;
}

.footer-contact-actions {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.footer-action {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-action.call {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.footer-action.whatsapp {
    background: #25D366;
    color: #fff;
}

.footer-action.location {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.footer-action:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.footer-timing {
    margin-top: 15px;
    font-size: 13px;
    color: #ccc;
}

.site-footer {
    background: #010F1C;
    color: #e0e0e0;
    padding: 70px 0 30px;
    font-size: 15px;
}

.footer-col {
    text-align: left;
    margin-bottom: 30px;
}

.footer-col h5 {
    border-bottom: 1px solid #bf2c2e96;
    width: 150px;
}

.footer-logo {
    max-width: 160px;
    margin-bottom: 15px;
}

.footer-about {
    font-size: 14px;
    color: #bdbdbd;
    margin-bottom: 15px;
}

.site-footer h5 {
    font-size: 17px;
    margin-bottom: 15px;
    color: #ffffff;
    padding-bottom: 8px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 14;
}

.footer-links li {
    margin-bottom: 10px;
    color: #bdbdbd;
}

.footer-links a {
    color: #bdbdbd;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-social {
    display: flex;
    gap: 5px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    background: #bf2c2e;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #ffffff;
    transition: background 0.3s ease, transform 0.3s ease;
    text-decoration: none;
}

.order-btns-new {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.top-bar-left a,
.top-bar-right a {
  color: #fff;
  font-weight: 500;
}

.top-bar-right a:hover {
  text-decoration: underline;
}


.order-title {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #666;
    margin-bottom: 12px;
}

.order-title {
    color: #c62828;
}

.footer-social a:hover {
    background: #bf2c2e;
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid #2a2a2a;
    margin-top: 30px;
    padding-top: 20px;
    text-align: center;
    font-size: 14px;
    color: #9e9e9e;
}

.rounded img {
    border-radius: 25px;
}

.order-btns img {
  width: 140px;
  height: 40px;
  object-fit: contain;
}


.mobile-order {
    position: fixed;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: none;
}

@media screen and (max-width: 767px) {
    .mobile-order {
        display: block;
    }
    .order-btns-new {
        display: flex;
        justify-content: center;
        margin-top: 25px;
    }
    .top-bar {
        display: none;
    }
    .about-right {
        padding-top: 30px;
    }
    #about p {
        font-size: 16px;
        font-weight: 400;
    }
    #about h2 {
        font-size: 30px;
        font-weight: 800;
    }



    .hero h1 {
        font-size: 40px;
        text-align: center;
        font-weight: 800;
        color: #000;
        line-height: 45px;
    }
    .hero p {
        font-size: 18px;
        text-align: center;
        line-height: 27px;
    }
}

.order-btns {
    display: flex;
    gap: 12px;
}

@media (max-width: 768px) {
    .order-btns {
        flex-direction: column;
        align-items: center;
    }

    .order-btns a {
        width: 220px;
        text-align: center;
    }
    .hero {
        padding: 50px 0;
        background: #FFE9C8;
    }
}
