:root {
  --primary: #ffa94d;
  --accent: #FFC300;
  --bg: #feffff;
  --card: #0b2540;
  --muted: #6b7280;
}
html { scroll-behavior: smooth; }
body {
  font-family: Inter, system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: #0b2540;
  padding-top: 70px;
}
.food-munch-logo {
  width: 70px;
  height: 50px;
}
.navbar { background: rgba(255, 255, 255, 0.95);
        z-index:1000:
        }
 .site-brand { font-weight: 300; color: var(--primary); letter-spacing: 0.4px; font-size:16px;}
.nav-active { font-weight: 700; color: var(--primary) !important; }
.navbar-collapse {
  background: rgba(255, 255, 255, 0.95); 
}
@media (max-width: 991.98px) {
  .navbar-collapse {
    padding: 10px; 
  }
  .navbar-nav {
    text-align: center; 
  }
  .navbar-nav .nav-link {
    padding: 10px 0; 
  }
}
.hero {
  height: calc(100vh - 70px);
  background: url('https://ik.imagekit.io/81hw2sybw/Abstract%20Blur%20Coffee%20Shop%20And%20Cafe%20Restaurant%20Background,%20Restaurant,%20Abstract,%20Cafe%20Background%20Image%20And%20Wallpaper%20for%20Free%20Download.jpeg?updatedAt=1760161275610') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: white;
  text-align: center;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3,7,18,0.55), rgba(3,7,18,0.4));
}
.hero-inner { position: relative; z-index: 1; }
.section { padding: 70px 0; }
.card-ccbp {
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(2,6,23,0.08);
  overflow: hidden;
  background: #fff;
}
.card-ccbp img {  object-fit: cover; }
.btn-ccbp {
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: #042037;
  border: none;
  font-weight: 700;
}
.muted { color: var(--muted); }
.img-grid img {
  border-radius: 8px;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
blockquote {
  background: #fff;
  border-left: 4px solid var(--primary);
  padding: 20px;
  border-radius: 6px;
}
.site-footer {
  background: var(--card);
  color: #dbeafe;
  padding: 26px 0;
  text-align: center;
}
.reserve-button{
  color: gold;
  border-radius: 7px;
  border-style: solid;
  border-color: gold;
  background-color: transparent;
  border-width: 1.5px;
  padding: 8px;

}
.footer {
  background:#FBF3D1;
  color:black;
  padding: 20px 10px 5px;
  font-family: Arial, sans-serif;
}


.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: auto;
}


.footer h2 {
  font-size: 0.8rem;
  margin-bottom: 10px;
  color: #2C3E50;
  font-weight:bold;
}

.footer h3 {
  font-size: 0.8rem;
  margin-bottom: 10px;
  color: #2C3E50;
}


.footer-about p {
  font-size: 0.7rem;
  line-height: 1.5;
}



  ul {
  list-style: none;
}

.example-2 {
  display: flex;
  justify-content: center;
  align-items: center;
}
.example-2 .icon-content {
  margin: 0 10px;
  position: relative;
}
.example-2 .icon-content .tooltip {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  padding: 6px 10px;
  border-radius: 5px;
  opacity: 0;
  visibility: hidden;
  font-size: 14px;
  transition: all 0.3s ease;
}
.example-2 .icon-content:hover .tooltip {
  opacity: 1;
  visibility: visible;
  top: -50px;
}
.example-2 .icon-content a {
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: #4d4d4d;
  background-color: #fff;
  transition: all 0.3s ease-in-out;
}
.example-2 .icon-content a:hover {
  box-shadow: 3px 2px 45px 0px rgb(0 0 0 / 12%);
}
.example-2 .icon-content a svg {
  position: relative;
  z-index: 1;
  width: 30px;
  height: 30px;
}
.example-2 .icon-content a:hover {
  color: white;
}
.example-2 .icon-content a .filled {
  position: absolute;
  top: auto;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: #000;
  transition: all 0.3s ease-in-out;
}
.example-2 .icon-content a:hover .filled {
  height: 100%;
}

.example-2 .icon-content a[data-social="linkedin"] .filled,
.example-2 .icon-content a[data-social="linkedin"] ~ .tooltip {
  background-color: #0274b3;
}

.example-2 .icon-content a[data-social="github"] .filled,
.example-2 .icon-content a[data-social="github"] ~ .tooltip {
  background-color: #24262a;
}
.example-2 .icon-content a[data-social="instagram"] .filled,
.example-2 .icon-content a[data-social="instagram"] ~ .tooltip {
  background: linear-gradient(
    45deg,
    #405de6,
    #5b51db,
    #b33ab4,
    #c135b4,
    #e1306c,
    #fd1f1f
  );
}
.example-2 .icon-content a[data-social="youtube"] .filled,
.example-2 .icon-content a[data-social="youtube"] ~ .tooltip {
  background-color: #ff0000;
}

/* Contact Section */
.footer-contact p {
  margin: 6px 0;
  font-size: 0.7rem;
font-style:underline;
}

/* Bottom Section */
.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #333;
  margin-top: 20px;
  font-size: 0.85rem;
  color: #111111;
}

.timings{
  list-style-type: circle;
  font-size:0.7rem;

}
.contact-line{
    font-style:underline;
}











