/* ========== RESET & BASE STYLES ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Rubik', 'Roboto', sans-serif;
  background: #fef7e8;
  color: #2c2418;
}

.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ========== HEADER STYLES ========== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #5b0c27;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  z-index: 999;
  padding: 12px 0;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 50px;
}

.navbar-list {
  display: flex;
  list-style: none;
  gap: 28px;
}

.navbar-link {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.navbar-link:hover {
  color: #ffd7a5;
}

.nav-toggle-btn {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
}

.nav-toggle-btn .line {
  display: block;
  width: 25px;
  height: 2px;
  background: white;
  margin: 5px 0;
  transition: 0.3s;
}

/* ========== DISH PAGE STYLES ========== */
.dish-page {
  margin-top: 100px;
  padding: 40px 0;
}

.dish-container {
  background: white;
  border-radius: 48px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-wrap: wrap;
}

.dish-image {
  flex: 1;
  min-width: 300px;
}

.dish-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 300px;
}

.dish-info {
  flex: 1;
  padding: 40px;
}

.dish-category {
  display: inline-block;
  background: #5b0c27;
  color: white;
  padding: 4px 16px;
  border-radius: 40px;
  font-size: 0.8rem;
  margin-bottom: 15px;
}

.dish-info h1 {
  font-family: 'Shadows Into Light', cursive;
  font-size: 2.8rem;
  color: #3b2a1f;
  margin-bottom: 15px;
}

.dish-price {
  font-size: 2rem;
  font-weight: 800;
  color: #5b0c27;
  margin: 20px 0;
}

.dish-price .original-price {
  font-size: 1rem;
  text-decoration: line-through;
  color: #999;
  margin-right: 10px;
}

.dish-price .offer-badge {
  background: #ff6b35;
  color: white;
  font-size: 0.8rem;
  padding: 2px 10px;
  border-radius: 20px;
  margin-right: 10px;
  display: inline-block;
}

.dish-description {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #4e3a28;
  margin: 20px 0;
}

.dish-ingredients {
  background: #fef1e6;
  padding: 20px;
  border-radius: 24px;
  margin: 20px 0;
}

.dish-ingredients strong {
  display: block;
  margin-bottom: 10px;
  color: #5b0c27;
}

.dish-ingredients i {
  margin-left: 5px;
}

.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #5b0c27;
  color: white;
  padding: 12px 28px;
  border-radius: 48px;
  text-decoration: none;
  font-weight: 600;
  margin-top: 20px;
  transition: 0.3s;
}

.back-btn:hover {
  background: #7e1538;
  gap: 14px;
}

/* RTL icon adjustment for back button */
.back-btn i {
  margin-left: 5px;
  margin-right: 0;
  transform: scaleX(-1);
}

/* ========== FOOTER STYLES ========== */
.footer {
  background: #1a1a1a;
  color: #ccc;
  margin-top: 60px;
  padding: 40px 0 20px;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #333;
}

/* ========== MOBILE RESPONSIVE ========== */
@media (max-width: 768px) {
  .navbar-list {
    position: fixed;
    top: 70px;
    right: -100%;
    left: auto;
    width: 100%;
    height: calc(100vh - 70px);
    background: #5b0c27;
    flex-direction: column;
    align-items: center;
    padding-top: 40px;
    transition: 0.3s;
    gap: 20px;
  }
  
  .navbar-list.active {
    right: 0;
    left: auto;
  }
  
  .nav-toggle-btn {
    display: block;
  }
  
  .dish-page {
    margin-top: 80px;
  }
  
  .dish-info {
    padding: 25px;
  }
  
  .dish-info h1 {
    font-size: 2rem;
  }
  
  .footer .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/* ========== UTILITY CLASSES ========== */
.text-center {
  text-align: center;
}

.mt-20 {
  margin-top: 20px;
}

.mb-20 {
  margin-bottom: 20px;
}