/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  background: #ffffff;
}

/* ================= CONTAINER ================= */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* ================= HEADER ================= */
.main-header {
  background: #C40000;
  height: 70px;
  display: flex;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-area img {
  height: 45px;
}

.logo-area h1 {
  color: #FFD000;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 1px;
}

/* ================= NAVIGATION ================= */
.nav-links {
  list-style: none;
  display: flex;
  gap: 28px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: 0.3s ease;
}

.nav-links a:hover {
  color: #FFD000;
}

/* ================= HERO ================= */
.hero {
  height: 100vh;
  background: url("images/shop.jpg") center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 70px; /* equal to header height */
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.hero-content {
  position: relative;
  text-align: center;
  color: white;
  padding: 20px;
}

.hero-content h2 {
  font-size: 55px;
  font-weight: 800;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 18px;
  margin-bottom: 25px;
}

/* ================= BUTTON ================= */
.btn-primary {
  background: #FFD000;
  color: #C40000;
  padding: 14px 35px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 6px;
  transition: 0.3s ease;
  display: inline-block;
}

.btn-primary:hover {
  background: #ffffff;
  transform: translateY(-3px);
}

/* ================= ABOUT ================= */
.about-preview {
  padding: 90px 20px;
  text-align: center;
}

.about-preview h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.about-preview p {
  max-width: 700px;
  margin: auto;
  color: #555;
}

/* ================= FEATURES ================= */
.features {
  background: #f5f5f5;
  padding: 90px 20px;
}

.feature-grid {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.feature-box {
  background: white;
  padding: 30px;
  width: 300px;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-8px);
}

/* ================= FOOTER ================= */
.main-footer {
  background: #111;
  color: white;
  text-align: center;
  padding: 25px;
  font-size: 14px;
}

/* ================= RESPONSIVE ================= */
@media(max-width: 992px) {
  .nav-links {
    gap: 18px;
  }
}

@media(max-width: 768px) {

  .header-flex {
    flex-direction: column;
    gap: 10px;
  }

  .nav-links {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }

  .hero-content h2 {
    font-size: 35px;
  }

  .hero-content p {
    font-size: 16px;
  }
}

/* ================= UNIVERSAL SMALL BANNER ================= */

.page-banner {
  position: relative;
  height: 320px;
  background: url("images/shop.jpg") center center/cover no-repeat;
  margin-top: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.banner-overlay h2 {
  color: white;
  font-size: 40px;
  font-weight: 800;
}

.banner-overlay p {
  color: white;
  font-size: 16px;
}


/* ================= MENU ================= */
.menu-section {
  padding: 90px 20px;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.menu-card {
  background: white;
  border-radius: 12px;
  text-align: center;
  padding: 20px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.menu-card:hover {
  transform: translateY(-8px);
}

.menu-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 10px;
}


.menu-card h3 {
  margin: 15px 0 5px;
  font-size: 18px;
}

.menu-card p {
  color: #777;
  font-size: 14px;
}

.price {
  display: block;
  margin-top: 10px;
  font-size: 18px;
  font-weight: 700;
  color: #C40000;
}

/* ================= COMBO ================= */
.combo-section {
  padding: 90px 20px;
}

.combo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.combo-card {
  background: white;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: 0.3s ease;
  display: flex;
  flex-direction: column;
}

.combo-card:hover {
  transform: translateY(-10px);
}

.combo-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.combo-content {
  padding: 25px;
  text-align: center;
}

.combo-content h3 {
  margin-bottom: 15px;
  font-size: 20px;
}

.combo-content p {
  font-size: 14px;
  color: #555;
  margin-bottom: 15px;
}

.combo-price {
  display: block;
  font-size: 22px;
  font-weight: 800;
  color: #C40000;
  margin-bottom: 15px;
}

/* ================= FRANCHISE ================= */
.franchise-section {
  padding: 90px 20px;
}

.franchise-intro {
  text-align: center;
  margin-bottom: 60px;
}

.franchise-intro h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.franchise-intro p {
  max-width: 700px;
  margin: auto;
  color: #555;
}

.franchise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 70px;
}

.franchise-box {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.franchise-box:hover {
  transform: translateY(-8px);
}

.franchise-box h3 {
  margin-bottom: 10px;
}

.franchise-box p {
  color: #666;
  font-size: 14px;
}

.franchise-cta {
  text-align: center;
}

.franchise-cta h3 {
  font-size: 28px;
  margin-bottom: 15px;
}

.franchise-cta p {
  margin-bottom: 20px;
  color: #555;
}

.email-note {
  margin-top: 15px;
  font-weight: 600;
  color: #C40000;
}

/* ================= FRANCHISE EXTRA ================= */

.model-box {
  background: #f5f5f5;
  padding: 30px;
  border-radius: 12px;
  margin-bottom: 40px;
}

.model-box h3 {
  margin-bottom: 15px;
}

.model-box ul {
  list-style: none;
}

.model-box li {
  margin-bottom: 10px;
  font-size: 14px;
}

.highlight-section {
  margin: 60px 0;
}

.contact-info {
  margin-top: 20px;
  font-weight: 600;
  color: #C40000;
}

/* ================= LOCATIONS ================= */

.location-section {
  padding: 90px 20px;
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.location-card {
  background: white;
  padding: 35px;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.location-card:hover {
  transform: translateY(-8px);
}

.location-card h3 {
  margin-bottom: 10px;
}

.location-card p {
  margin-bottom: 20px;
  color: #666;
}

.map-section {
  margin-top: 50px;
}

/* ================= CONTACT ================= */

.contact-section {
  padding: 90px 20px;
}

.contact-intro {
  text-align: center;
  margin-bottom: 50px;
}

.contact-intro h2 {
  font-size: 36px;
  margin-bottom: 15px;
}

.contact-intro p {
  color: #666;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.contact-card {
  background: white;
  padding: 35px;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-8px);
}

.contact-card h3 {
  margin-bottom: 10px;
}

.contact-card p {
  color: #555;
  font-weight: 500;
}

.contact-cta {
  text-align: center;
}

.branch-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
  z-index: 2000;
}

.branch-content {
  background: white;
  padding: 40px;
  border-radius: 12px;
  text-align: center;
  width: 90%;
  max-width: 400px;
  position: relative;
}

.branch-content h3 {
  margin-bottom: 25px;
}

.branch-content a {
  display: block;
  background: #25D366;
  color: white;
  padding: 12px;
  margin-bottom: 15px;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: 0.3s;
}

.branch-content a:hover {
  background: #1ebe5d;
}

.close-btn {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 28px;
  cursor: pointer;
}

@media (max-width: 768px) {

  .page-banner {
    height: 220px;
    padding: 20px;
  }

  .banner-overlay h2 {
    font-size: 26px;
  }

  .banner-overlay p {
    font-size: 14px;
  }
}

.category-title {
  margin: 60px 0 30px;
  font-size: 28px;
  font-weight: 800;
  color: #C40000;
  border-left: 6px solid #FFD000;
  padding-left: 15px;
}

.menu-img-wrapper {
  width: 100%;
  height: 200px;   /* slightly smaller */
  overflow: hidden;
  border-radius: 12px;
}

.menu-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* ================= COMBO GRID FINAL ================= */

.combo-section {
  padding: 90px 20px;
}

.combo-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.combo-item {
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.combo-item:hover {
  transform: translateY(-8px);
}

.combo-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.combo-content {
  padding: 20px;
  text-align: center;
}

.combo-content h3 {
  margin: 10px 0;
  font-size: 18px;
}

.combo-content p {
  font-size: 14px;
  color: #555;
  margin-bottom: 12px;
}

.combo-price {
  display: block;
  font-size: 20px;
  font-weight: 800;
  color: #C40000;
  margin-bottom: 15px;
}

/* Tablet */
@media (max-width: 992px) {
  .combo-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 600px) {
  .combo-list {
    grid-template-columns: 1fr;
  }
}
