* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Open Sans', sans-serif;
}

body {
  background: linear-gradient(135deg, #ffe5b4, #fff5e6);
  color: #333;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow-x: hidden;
}

header {
  background: linear-gradient(90deg, #452a02, #452a02);
  padding: 35px 25px;
  text-align: center;
  color: rgb(200, 255, 2);
  border-bottom: 5px solid #ffd180;
  width: 100%;
}

header h1 {
  font-family: 'Pacifico', cursive;
  font-size: 2.7rem;
  text-shadow:
    1px 1px 0 #5645ec,
    -1px -1px 0 #5645ec,
    1px -1px 0 #5645ec,
    -1px 1px 0 #5645ec;
  letter-spacing: 2px;
  display: inline-block;
  padding: 10px 20px;
  border-radius: 10px;
  margin-bottom: 10px;
  white-space: nowrap;
  overflow-wrap: break-word;
}

header p {
  font-size: 1.2rem;
  margin-top: 8px;
  color: #fffde7;
}

.section {
  padding: 48px 20px 32px 20px;
  max-width: 1000px;
  width: 100%;
  margin: 0 auto 28px auto;
  background: #fffdf6;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(245, 124, 0, 0.06);
  overflow-x: hidden;
}

.section h2 {
  color: #f57c00;
  margin-bottom: 28px;
  font-size: 2.1rem;
  letter-spacing: 1px;
  border-bottom: 2px solid #ffe0b2;
  display: inline-block;
  padding-bottom: 6px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  padding: 18px 10px;
  background: #fffbe9;
  border-radius: 14px;
  justify-items: center;
}

.gallery img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(245, 124, 0, 0.09);
  border: 2px solid #ffe0b2;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 20px;
}

.menu-card {
  background: linear-gradient(120deg, #fffbe9 80%, #ffe0b2 100%);
  padding: 28px 18px;
  padding-left: 28px;
  padding-right: 28px;
  border-radius: 16px;
  text-align: center;
  text-decoration: none;
  color: #333;
  box-shadow: 0 4px 14px rgba(245, 124, 0, 0.07);
  border: 1.5px solid #ffd180;
}

.menu-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: #e65100;
  letter-spacing: 1px;
}

.menu-card p {
  font-size: 1.08rem;
  color: #7c4d00;
  font-weight: bold;
}

.order-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.order-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 22px;
  border-radius: 10px;
  font-weight: bold;
  text-decoration: none;
  color: white;
  font-size: 1.08rem;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.09);
  transition: all 0.2s ease;
}

.order-btn img.platform-logo {
  height: 26px;
  width: 26px;
  object-fit: contain;
}

.order-btn.zomato {
  background-color: #e23744;
}

.order-btn.swiggy {
  background-color: #fc8019;
}

.order-btn.zomato:hover,
.floating-order-btn.zomato:hover {
  background-color: #c62828;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(226, 55, 68, 0.25);
}

.order-btn.swiggy:hover,
.floating-order-btn.swiggy:hover {
  background-color: #e56a00;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(252, 128, 25, 0.25);
}

.review-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.review-card {
  background-color: #fffbe9;
  padding: 22px 18px;
  border-radius: 13px;
  box-shadow: 0 4px 12px rgba(245, 124, 0, 0.07);
  border: 1.5px solid #ffe0b2;
}

.review-card p {
  margin: 10px 0;
  color: #333;
  font-size: 1.08rem;
}

.review-card h4 {
  text-align: right;
  font-weight: normal;
  color: #f57c00;
  margin-top: 8px;
}

.map-btn {
  margin-top: 18px;
  padding: 12px 28px;
  background: #f57c00;
  color: white;
  border: none;
  border-radius: 7px;
  cursor: pointer;
  font-size: 1.08rem;
  font-weight: bold;
  box-shadow: 0 2px 8px rgba(245, 124, 0, 0.09);
}

footer {
  background: #fffbe9;
  text-align: center;
  padding: 24px 10px 10px 10px;
  margin-top: 40px;
  border-top: 2px solid #ffe0b2;
  width: 100%;
}

footer a {
  color: #f57c00;
  text-decoration: none;
  margin: 0 7px;
  font-weight: bold;
}

footer .credit {
  font-size: 0.95rem;
  color: #888;
  margin-top: 7px;
}

.whatsapp-btn {
  position: fixed;
  right: 22px;
  bottom: 138px;
  background: #25d366;
  color: white;
  padding: 14px 22px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
  z-index: 3;
  font-size: 1.08rem;
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.floating-order-btn {
  position: fixed;
  right: 22px;
  z-index: 998;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 22px;
  border-radius: 50px;
  color: white;
  font-weight: bold;
  text-decoration: none;
  font-size: 1.08rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
}

.floating-order-btn img {
  height: 26px;
  width: 26px;
}

.floating-order-btn.swiggy {
  background-color: #fc8019;
  bottom: 80px;
}

.floating-order-btn.zomato {
  background-color: #e23744;
  bottom: 22px;
}

.subtitle-hindi {
  text-align: center;
  font-size: 1.5rem;
  color: #d35400;
  font-weight: bold;
  margin-top: 4px;
  margin-bottom: 9px;
  letter-spacing: 1px;
  font-family: 'Noto Sans Devanagari', 'Mukta', Arial, sans-serif;
  background: #fffbe9;
  padding: 10px 20px;
  border-radius: 10px;
  border: 1.5px solid #ffe0b2;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ✅ Mobile Fixes */
@media (max-width: 768px) {
  header h1 {
    font-size: 2rem;
    white-space: normal;
  }

  .gallery,
  .menu-grid,
  .review-cards {
    padding-left: 12px;
    padding-right: 12px;
  }

  .menu-card,
  .review-card {
    margin-left: 2px;
    margin-right: 2px;
    margin-bottom: 20px;

  }
}

@media (max-width: 480px) {
  .section h2 {
    font-size: 1.35rem;
    margin-bottom: 16px;
    padding-bottom: 4px;
  }

  header h1 {
    font-family: sans-serif;
    font-size: 1.7rem;
    line-height: 1.3;
    padding: 8px 14px;
    font-weight: 700;
  }

  .subtitle-hindi {
    font-size: 1rem;
    padding: 8px 12px;
  }

  .menu-card,
  .review-card {
    margin-left: 4px;
    margin-right: 4px;
  }
}

@media (max-width: 480px) {

  .order-btn,
  .floating-order-btn,
  .whatsapp-btn {
    padding: 10px 16px;
    font-size: 0.95rem;
  }

  .order-btn img.platform-logo,
  .floating-order-btn img {
    width: 22px;
    height: 22px;
  }
}

.whatsapp-offer {
  padding: 40px 20px;
  display: flex;
  justify-content: center;
  margin-top: -5px;
}

.whatsapp-card {
  background: #f1fff5;
  border: 2px solid #b2f5c4;
  padding: 28px 22px;
  border-radius: 16px;
  max-width: 800px;
  width: 100%;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
  text-align: center;
}

.whatsapp-card h2 {
  font-size: 1.8rem;
  color: #128c7e;
  margin-bottom: 15px;
  font-weight: bold;
}

.whatsapp-card .highlight {
  color: #1ebea5;
  font-weight: bold;
}

.whatsapp-order-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background-color: #25d366;
  color: white;
  font-weight: bold;
  font-size: 1.05rem;
  text-decoration: none;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  margin: 16px 0;
}

.whatsapp-order-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(37, 211, 102, 0.3);
}

.whatsapp-logo {
  height: 24px;
  width: 24px;
}

.delivery-info {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
}

.delivery-info strong {
  color: #2e7d32;
}

@media (max-width: 600px) {
  .whatsapp-card {
    padding: 20px 14px;
    border-radius: 12px;
  }

  .whatsapp-card h2 {
    font-size: 1.4rem;
  }

  .whatsapp-order-btn {
    font-size: 0.95rem;
    padding: 10px 16px;
  }

  .whatsapp-logo {
    height: 22px;
    width: 22px;
  }

  .delivery-info {
    font-size: 0.95rem;
  }
}

.menu-list {
  list-style-type: disc;
  text-align: left;
  padding-left: 18px;
  line-height: 1.6;
  font-size: 1rem;
  color: #5d4037;
  max-height: 400px;
  overflow-y: auto;
}

@media (max-width: 600px) {
  .menu-list {
    font-size: 0.92rem;
    padding-left: 14px;

  }

}

.menu-card {
  background: linear-gradient(135deg, #fff9ec, #ffebcc);
  padding: 46px 35px;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.07);
  max-width: 800px;
  margin: -5px auto 20px auto;
  overflow: hidden;
  position: relative;
}

.menu-card h3 {
  font-size: 1.9rem;
  color: #d84315;
  margin-bottom: 18px;
  position: sticky;
  top: 0;
  background: linear-gradient(135deg, #fff9ec, #ffebcc);
  padding: 10px 0;
  z-index: 2;
  font-family: 'Segoe UI', sans-serif;
  text-align: center;
  border-bottom: 2px dashed #ffa726;
}

.menu-list.styled li {
  padding: 12px 8px;
  border-bottom: 1px dashed #e0b07a;
  font-size: 1.05rem;
  color: #5d4037;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}

.menu-list.styled li strong {
  color: #4e342e;
  flex: 1 1 60%;
}

.menu-list.styled li span {
  font-weight: bold;
  color: #d84315;
  flex: 1 1 25%;
  text-align: right;
}

.menu-list.styled li em {
  flex-basis: 100%;
  font-style: normal;
  font-size: 0.85rem;
  color: #8d6e63;
  margin-top: 4px;
  text-align: right;
}

.menu-list.styled li {
  padding: 12px 8px;
  border-bottom: 1px dashed #e0b07a;
  font-size: 1.05rem;
  color: #5d4037;
}

.menu-list.styled li .menu-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.menu-list.styled li .menu-line strong {
  font-weight: 600;
  color: #4e342e;
  flex: 1;
}

.menu-list.styled li .menu-line .price {
  font-weight: bold;
  color: #d84315;
  white-space: nowrap;
}

.menu-list.styled li em {
  display: block;
  font-style: normal;
  font-size: 0.85rem;
  color: #8d6e63;
  margin-top: 2px;
  text-align: right;
}

.custom-header {
  background-color: #4b2e0d; /* Rich brown */
  color: #ffeb3b; /* Yellow */
  padding: 30px 20px;
  text-align: center;
  border-bottom: 5px solid #ffd180;
  width: 100%;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
}

.header-text {
  text-align: center;
  flex: 1;
}

.logo-img,
.laddu-img {
  width: 70px;
  height: 70px;
  object-fit: contain;
}

.header-text h1 {
  font-size: 2.6rem;
  font-weight: bold;
  font-family: 'Noto Sans Devanagari', 'Mukta', sans-serif;
  color: #ffeb3b;
  margin-bottom: 8px;
}

.since-text {
  font-size: 1.1rem;
  color: #fff5c3;
  margin-bottom: 6px;
}

.tagline {
  font-size: 1.2rem;
  font-weight: 500;
  color: #fffde7;
  font-style: italic;
}

/* Mobile responsiveness */
@media (max-width: 600px) {
  .header-content {
    flex-direction: column;
    align-items: center;
  }

  .logo-img,
  .laddu-img {
    margin-bottom: 10px;
  }

  .header-text h1 {
    font-size: 1.9rem;
  }

  .since-text,
  .tagline {
    font-size: 1rem;
  }
}

.custom-header {
  background-color: #4b2e0d;
  padding: 25px 20px 30px;
  border-bottom: 5px solid #ffd180;
  width: 100%;
  text-align: center;
}

.laddu-top {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}

.laddu-gopal-img {
  width: 70px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 3px 12px rgba(255, 255, 255, 0.15);
}

.main-header-row {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 16px;
  flex-wrap: nowrap;
}

.logo-align-wrap {
  display: flex;
  align-items: center; /* Aligns vertically with title only */
  height: 100%;
}

.logo-img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.title-wrap {
  text-align: left;
  color: #ffeb3b;
}

.hindi-title {
  font-family: 'Noto Sans Devanagari', 'Mukta', sans-serif;
  font-size: 2.4rem;
  font-weight: bold;
  margin: 0;
  color: #ffeb3b;
  line-height: 1.2;
}

.since-text {
  font-size: 1.05rem;
  color: #fff8c2;
  margin-top: 5px;
}

.tagline {
  font-size: 1.05rem;
  font-style: italic;
  color: #ffe;
  margin-top: 3px;
}

/* ✅ Mobile Responsive */
@media (max-width: 768px) {
  .main-header-row {
    flex-direction: row;
    gap: 12px;
    align-items: flex-start;
  }

  .logo-img {
    width: 50px;
    height: 50px;
    margin-left: -14px;
  }

  .laddu-gopal-img {
    width: 50px;
  }

  .hindi-title {
    font-size: 2rem;
    margin-left: -18px;
  }

  .since-text{
    font-size: 0.95rem;
    align-items: center;
    margin-left: 40px;
  }
  .tagline {
    font-size: 0.95rem;
    align-items: center;
  }
}
