/* =========================
   GENERAL RESET
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background-color: #fffaf0;
  color: #333;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

/* =========================
   HEADER / NAVIGATION
========================= */
.header {
  width: 100%;
  background-color: #ff4500;
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 3px 6px rgba(0,0,0,0.2);
}

.header-inner {
  max-width: 1200px;
  margin: auto;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.logo img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  margin-right: 20px;
  vertical-align: middle;
}

.logo span {
  font-size: 22px;
  font-weight: bold;
}

.nav a {
  margin: 0 10px;
  padding: 8px 12px;
  border-radius: 4px;
  transition: 0.3s;
}

.nav a:hover,
.nav a.active {
  background-color: #fff;
  color: #ff4500;
  font-weight: 600;
}

.search-box {
  position: relative;
  margin-top: 5px;
}

.search-box input {
  padding: 6px 30px 6px 10px;
  border-radius: 20px;
  border: none;
  outline: none;
}

.search-box i {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #333;
}

/* =========================
   PAGE TITLE
========================= */
.page-title {
  text-align: center;
  padding: 40px 20px;
  background-color: #ffe4c4;
}

.page-title h1 {
  font-size: 36px;
  color: #ff4500;
  margin-bottom: 10px;
}

.page-title p {
  font-size: 18px;
  color: #555;
}

/* =========================
   MENU GRID / CARDS
========================= */
.menu-section {
  padding: 40px 20px;
}

.section-heading {
  font-size: 28px;
  color: #ff4500;
  margin-bottom: 20px;
  text-align: center;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
  gap: 20px;
}

.menu-card {
  background-color: #fff;
  border: 1px solid #ffdab9;
  border-radius: 10px;
  padding: 15px;
  text-align: center;
  transition: 0.3s;
  box-shadow: 0 3px 6px rgba(0,0,0,0.1);
}

.menu-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.menu-card img {
  border-radius: 10px;
  margin-bottom: 10px;
  height: 150px;
  object-fit: cover;
}

.menu-card h3 {
  font-size: 20px;
  margin-bottom: 5px;
  color: #333;
}

.menu-card .price {
  font-weight: bold;
  color: #ff4500;
  margin-bottom: 10px;
}

.menu-card button {
  background-color: #ff4500;
  color: #fff;
  border: none;
  padding: 8px 15px;
  border-radius: 20px;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s;
}

.menu-card button:hover {
  background-color: #ff6347;
}

/* =========================
   CART FLOAT BUTTON
========================= */
.cart-floating {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 200;
}

.cart-floating a {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ff4500;
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  font-size: 24px;
  position: relative;
  transition: 0.3s;
}

.cart-floating a:hover {
  background-color: #ff6347;
}

#cartCount {
  position: absolute;
  top: -8px;
  right: -8px;
  background-color: #fff;
  color: #ff4500;
  width: 20px;
  height: 20px;
  font-size: 12px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

/* =========================
   SPECIALITY / FEATURE GRID
========================= */
.speciality-section, .highlight-section {
  padding: 40px 20px;
  background-color: #fff8f0;
}

.special-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
  gap: 20px;
}

.special-card {
  background-color: #fff;
  border: 1px solid #ffdab9;
  border-radius: 10px;
  text-align: center;
  padding: 20px;
  transition: 0.3s;
}

.special-card i {
  font-size: 36px;
  color: #ff4500;
  margin-bottom: 10px;
}

.special-card h3 {
  margin-bottom: 10px;
  color: #333;
}

.special-card p {
  color: #555;
}

/* =========================
   HIGHLIGHT SECTION
========================= */
.highlight-section ul {
  list-style-type: disc;
  margin: 20px auto;
  max-width: 600px;
  color: #555;
}

.highlight-section li {
  margin: 10px 0;
  font-size: 16px;
}

/* =========================
   CTA BUTTON
========================= */
.cta-section {
  text-align: center;
  padding: 40px 20px;
  background-color: #ffdab9;
}

.cta-btn {
  display: inline-block;
  padding: 12px 25px;
  background-color: #ff4500;
  color: #fff;
  border-radius: 25px;
  font-weight: bold;
  transition: 0.3s;
}

.cta-btn:hover {
  background-color: #ff6347;
}

/* =========================
   CONTACT / SOCIAL
========================= */
.contact-section, .social-section {
  padding: 40px 20px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
  gap: 20px;
  text-align: center;
}

.contact-card {
  background-color: #fff;
  border: 1px solid #ffdab9;
  border-radius: 10px;
  padding: 20px;
  transition: 0.3s;
}

.contact-card i {
  font-size: 36px;
  color: #ff4500;
  margin-bottom: 10px;
}

.contact-card h3 {
  margin-bottom: 10px;
  color: #333;
}

.contact-card p, .contact-card a {
  color: #555;
}

.social-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.social-grid a {
  display: flex;
  align-items: center;
  padding: 10px 20px;
  background-color: #ff4500;
  color: #fff;
  border-radius: 25px;
  transition: 0.3s;
}

.social-grid a i {
  margin-right: 8px;
}

.social-grid a:hover {
  background-color: #ff6347;
}

/* =========================
   FOOTER
========================= */
.footer {
  background-color: #ff4500;
  color: #fff;
  text-align: center;
  padding: 20px;
}

.footer .social a {
  color: #fff;
  margin: 0 5px;
  font-size: 18px;
}

.footer p {
  margin: 5px 0;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav {
    display: flex;
    flex-wrap: wrap;
    margin-top: 10px;
  }

  .nav a {
    margin: 5px 5px 0 0;
  }

  .search-box {
    margin-top: 10px;
    width: 100%;
  }

  .menu-card img {
    height: 140px;
  }
}

@media (max-width: 480px) {
  .page-title h1 {
    font-size: 28px;
  }

  .page-title p {
    font-size: 16px;
  }

  .menu-card img {
    height: 120px;
  }

  .menu-card h3 {
    font-size: 16px;
  }

  .menu-card .price {
    font-size: 14px;
  }
}

















/* ================= VIDEO SECTION FIX ================= */

.video-section {
  width: 100%;
  padding: 40px 20px;
  background: #111;
  text-align: center;
  overflow: hidden;   /* MOST IMPORTANT */
}

.video-section h2 {
  color: #fff;
  margin-bottom: 15px;
}

.video-section video {
  width: 100%;
  max-width: 900px;   /* yahin tak rahega */
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 12px;
}








/* ================= SAFE BANNER FIX (ADD AT END) ================= */

.hero {
  position: relative !important;
  width: 100%;
  height: 70vh;
  min-height: 350px;
  overflow: hidden;
}

.hero-img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block;
}

/* overlay */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1;
}

.hero-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 20px;
}

/* ================= SAFE VIDEO FIX (ADD AT END) ================= */

.video-section {
  width: 100%;
  padding: 40px 20px;
  background: #111;
  text-align: center;
  overflow: hidden;
}

.video-section video {
  width: 100%;
  max-width: 900px;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 12px;
}

/* ================= MOBILE FIX ================= */

@media (max-width: 768px) {
  .hero {
    height: 55vh;
    min-height: 320px;
  }

  .hero-content h1 {
    font-size: 26px;
  }
}












/* ================= MENU CATEGORY BUTTONS ================= */

.quick-menu {
  padding: 50px 20px;
  background: #fffaf2;
  text-align: center;
}

.quick-menu h2 {
  font-size: 28px;
  margin-bottom: 25px;
  color: #222;
}

.menu-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 15px;
  max-width: 1100px;
  margin: auto;
}

.menu-links a {
  display: block;
  padding: 14px 10px;
  background: linear-gradient(135deg, #ff5a00, #ff8c00);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 10px;
  transition: 0.3s ease;
  box-shadow: 0 6px 14px rgba(0,0,0,0.15);
}

.menu-links a:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.25);
  background: linear-gradient(135deg, #e84e00, #ff7300);
}

/* ================= MOBILE FIX ================= */

@media (max-width: 600px) {
  .menu-links {
    grid-template-columns: repeat(2, 1fr);
  }

  .quick-menu h2 {
    font-size: 22px;
  }
}











/* ================= PREMIUM FEATURES SECTION ================= */

.features {
  padding: 60px 20px;
  background: linear-gradient(135deg, #fff7ef, #fff);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: auto;
}

.feature-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 5px;
  width: 100%;
  background: linear-gradient(90deg, #ff5a00, #ff9800);
}

.feature-card i {
  font-size: 38px;
  color: #ff5a00;
  margin-bottom: 15px;
}

.feature-card h3 {
  font-size: 20px;
  margin-bottom: 8px;
  color: #222;
}

.feature-card p {
  font-size: 14px;
  color: #555;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.2);
}

/* ================= MOBILE LOOK ================= */

@media (max-width: 600px) {
  .features {
    padding: 40px 15px;
    gap: 18px;
  }

  .feature-card {
    padding: 25px 15px;
  }

  .feature-card i {
    font-size: 34px;
  }
}










/* ================= HERO / BANNER ================= */

.hero {
  position: relative;
  width: 100%;
  height: 85vh;
  overflow: hidden;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(60%);
}

/* Dark overlay for text visibility */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.45),
    rgba(0,0,0,0.65)
  );
}

/* Text content */
.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  z-index: 2;
  width: 90%;
  max-width: 700px;
}

.hero-content h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.hero-content p {
  font-size: 16px;
  margin-bottom: 6px;
  opacity: 0.95;
}

.hero-content .timing {
  font-size: 14px;
  opacity: 0.85;
  margin-bottom: 18px;
}

/* ================= SMALL MENU BUTTON ================= */

.btn-primary {
  display: inline-block;
  padding: 8px 18px;
  font-size: 14px;
  border-radius: 30px;
  background: #ff5a00;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(0,0,0,0.25);
}

.btn-primary:hover {
  background: #e64a00;
  transform: translateY(-2px);
}

/* ================= MOBILE RESPONSIVE ================= */

@media (max-width: 600px) {
  .hero {
    height: 65vh;
  }

  .hero-content h1 {
    font-size: 26px;
  }

  .hero-content p {
    font-size: 14px;
  }

  .btn-primary {
    padding: 7px 16px;
    font-size: 13px;
  }
}






















/* ================= POPULAR CUISINES ================= */

.popular-cuisines {
  padding: 40px 20px;
  background: #ffffff;
}

.popular-cuisines h2 {
  font-size: 22px;
  margin-bottom: 20px;
  color: #222;
}

.cuisine-row {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 10px;
}

.cuisine-row::-webkit-scrollbar {
  height: 6px;
}

.cuisine-row::-webkit-scrollbar-thumb {
  background: #000000;
  border-radius: 10px;
}

.cuisine-item {
  text-align: center;
  min-width: 90px;
  color: #000;
  text-decoration: none;
}

.cuisine-item img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  transition: transform 0.3s;
}

.cuisine-item:hover img {
  transform: scale(1.08);
}

.cuisine-item span {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  font-weight: 500;
}















/* ================= MENU CATEGORIES FIX ================= */

.quick-menu {
  padding: 60px 20px;
  background: #fff8f1;
  text-align: center;
}

.quick-menu h2 {
  font-size: 32px;
  margin-bottom: 40px;
  color: #222;
  font-weight: 700;
}

/* GRID SYSTEM */
.menu-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 25px;
  max-width: 1100px;
  margin: auto;
}

/* MENU BUTTON STYLE */
.menu-links a {
  display: flex;
  align-items: center;
  justify-content: center;

  height: 70px;
  background: linear-gradient(135deg, #ff7a00, #ff9800);
  color: #fff;

  font-size: 17px;
  font-weight: 600;
  text-decoration: none;

  border-radius: 14px;
  box-shadow: 0 6px 14px rgba(0,0,0,0.15);

  transition: all 0.3s ease;
}

/* HOVER EFFECT */
.menu-links a:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.25);
  background: linear-gradient(135deg, #ff9800, #ff7a00);
}

/* MOBILE FIX */
@media (max-width: 600px) {
  .menu-links {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .menu-links a {
    height: 60px;
    font-size: 15px;
  }
}






















/* ===== FORCE IMAGE CENTER FIX ===== */

.menu-card {
  display: flex;
  flex-direction: column;
  align-items: center;   /* 🔥 MAIN CENTER FIX */
  text-align: center;
}

.menu-card img {
  display: block;
  margin: 0 auto 12px auto;
  max-width: 100%;
}


















.cart-img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  margin: 0 auto 10px;
}




/* AI Modal */
.modal {
  display: none; 
  position: fixed; 
  z-index: 1000; 
  left: 0;
  top: 0;
  width: 100%;
  height: 100%; 
  background-color: rgba(0,0,0,0.7);
  overflow: auto;
}

.modal-content {
  background-color: #333;
  margin: 10% auto; 
  padding: 20px;
  border-radius: 15px;
  width: 90%;
  max-width: 400px;
  text-align: center;
  color: #fff;
}

.modal-content input,
.modal-content button {
  margin: 10px 0;
  padding: 10px;
  width: 80%;
  border-radius: 8px;
  border: none;
  font-size: 16px;
  cursor: pointer;
}

.modal-content button {
  background-color: #ff5722;
  color: white;
  transition: 0.3s;
}

.modal-content button:hover {
  background-color: #e64a19;
}

.close {
  color: #fff;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

#suggestionResult {
  margin-top: 15px;
  padding: 12px;
  border-radius: 10px;
  background-color: #ff5722;
  font-size: 16px;
}











/* ADMIN LOGIN LINK */
.admin-link {
  color: #ffcc00;
  font-weight: bold;
}

.admin-link:hover {
  color: #ffffff;
}




