/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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;
}

/* ================= MOBILE NAV ================= */
.menu-toggle {
  display: none;
  font-size: 28px;
  color: white;
  cursor: pointer;
}

/* ================= HERO / 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;
  padding: 20px;
}

.banner-overlay h2 {
  color: white;
  font-size: 40px;
  font-weight: 800;
}

.banner-overlay p {
  color: white;
  font-size: 16px;
}

/* ================= BUTTON ================= */
.btn-primary {
  background: #FFD000;
  color: #C40000;
  padding: 14px 35px;
  font-weight: 700;
  border-radius: 6px;
  transition: 0.3s ease;
  display: inline-block;
  border: none;
  cursor: pointer;
}

.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;
}

/* ================= 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%;
  border-radius: 10px;
}

.price {
  display: block;
  margin-top: 10px;
  font-size: 18px;
  font-weight: 700;
  color: #C40000;
}

/* ================= COMBO ================= */
.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-price {
  font-size: 20px;
  font-weight: 800;
  color: #C40000;
}

/* ================= CONTACT / MODAL ================= */
.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 a {
  display: block;
  background: #25D366;
  color: white;
  padding: 12px;
  margin-bottom: 15px;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
}

.close-btn {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 28px;
  cursor: pointer;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  .combo-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {

  .menu-toggle {
    display: block;
  }

  .header-flex {
    position: relative;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    right: 0;
    background: #C40000;
    width: 100%;
    flex-direction: column;
    align-items: center;
    display: none;
    padding: 20px 0;
  }

  .nav-links li {
    margin: 15px 0;
  }

  .nav-links.active {
    display: flex;
  }

  .banner-overlay h2 {
    font-size: 26px;
  }

  .banner-overlay p {
    font-size: 14px;
  }

  .combo-list {
    grid-template-columns: 1fr;
  }
}

