/* Logo Styles */
.dfood-logo {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1000;
  }
  
  .dfood-logo img {
    width: 200px; /* Increased from 120px to 160px */
    height: auto;
    transition: transform 0.3s ease;
  }
  
  .dfood-logo:hover img {
    transform: scale(1.05);
  }


/* Dark Theme Base */
body {
  background-color: #121212;
  color: #e0e0e0;
  font-family: 'DM Sans', sans-serif;
  padding-top: 80px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Menu Section Styles */
.dfood-menu-section {
  padding: 40px 0 80px;
  background-color: #121212;
}

.section-subtitle {
  color: #f4511e;
  font-size: 1.2rem;
  margin-bottom: 10px;
  text-align: center;
}

.section-title {
  color: #ffffff;
  font-size: 2.2rem;
  margin-bottom: 30px;
  text-align: center;
}

.dfood-menu-tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
  gap: 10px;
  flex-wrap: wrap;
}

.dfood-menu-tab {
  padding: 10px 20px;
  background: transparent;
  border: 1px solid #f4511e;
  color: #f4511e;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 5px;
  font-size: 1.3rem;
}

.dfood-menu-tab:hover {
  background: rgba(244, 81, 30, 0.1);
}

.dfood-menu-tab.active {
  background: #f4511e;
  color: #ffffff;
}

.dfood-menu-content {
  display: none;
}

.dfood-menu-content.active {
  display: block;
}

.dfood-menu-header {
  text-align: center;
  margin-bottom: 30px;
}

.dfood-menu-header h3 {
  color: #ffffff;
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.dfood-menu-price {
  font-size: 1.3rem;
  color: #f4511e;
  font-weight: 700;
}

/* Day Container */
.dfood-day-container {
  background: #1e1e1e;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 25px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.dfood-day-header {
  color: #f4511e;
  font-size: 1.5rem;
  margin-bottom: 15px;
  font-weight: bold;
  padding-left: 10px;
  border-left: 4px solid #f4511e;
}

/* Meal Pair Layout (Lunch + Dinner side by side) */
.dfood-meal-pair {
  display: flex;
  gap: 20px;
}

.dfood-meal-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 15px;
  background: #252525;
  padding: 15px;
  border-radius: 8px;
}

.dfood-meal-img {
  width: 80px;
  height: 80px;
  min-width: 80px;
  border-radius: 6px;
  overflow: hidden;
  border: 2px solid #333;
}

.dfood-meal-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dfood-meal-content {
  flex: 1;
}

.dfood-meal-title {
  color: #ffffff;
  font-size: 1.3rem;
  margin-bottom: 5px;
}

.dfood-meal-desc {
  font-size: 1.2rem;
  line-height: 1.4;
  color: #b0b0b0;
}

.dfood-meal-price {
  color: #f4511e;
  font-weight: 700;
  margin-top: 5px;
  font-size: 1.4rem;
}

/* Instant Delivery Grid */
.dfood-instant-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}

.dfood-instant-item {
  background: #1e1e1e;
  padding: 15px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.dfood-instant-item:hover {
  transform: translateY(-5px);
}

.dfood-instant-item h4 {
  color: #ffffff;
  margin: 10px 0;
  font-size: 1.1rem;
}

.dfood-instant-item img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
  border: 2px solid #333;
}

.dfood-instant-price {
  font-weight: 700;
  color: #f4511e;
  margin: 10px 0;
  font-size: 1.1rem;
}

.dfood-btn-order {
  background: #f4511e;
  color: white;
  border: none;
  padding: 8px 15px;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  font-size: 0.8rem;
  width: 100%;
}

.dfood-btn-order:hover {
  background: #e64a19;
}

@media (max-width: 768px) {
  body {
    padding-top: 70px;
  }
  
  .dfood-logo {
    top: 15px;
    left: 15px;
  }
  
  .dfood-logo img {
    width: 100px;
  }
  .container{
    top: 30rem;
  }

  .dfood-menu-tabs {
    gap: 8px;
  }
  
  .dfood-menu-tab {
    padding: 8px 15px;
    font-size: 1.3rem;
  }

  .dfood-meal-pair {
    flex-direction: column;
    gap: 15px;
  }
   .dfood-day-header{
    font-size: 1.5rem;
  }

  .dfood-meal-pair{
    font-size: 1.2rem;
  }
  .dfood-meal-price{
    font-size: 1.4rem;
  }

  .dfood-meal-item {
    width: 100%;
  }

  .dfood-instant-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }
}
@media (max-width: 1200px) {
  body {
    padding-top: 70px;
  }
  
  .dfood-logo {
    top: 15px;
    left: 15px;
  }
  
  .dfood-logo img {
    width: 100px;
  }
  .container{
    top: 30rem;
  }

 
  .dfood-menu-tabs {
    gap: 8px;
  }
  
  .dfood-menu-tab {
    padding: 8px 15px;
    font-size: 1.3rem;
  }

  .dfood-meal-pair {
    flex-direction: column;
    gap: 15px;
  }
  .dfood-day-header{
    font-size: 1.5rem;
  }

  .dfood-meal-pair{
    font-size: 1.2rem;
  }
  .dfood-meal-price{
    font-size: 1.4rem;
  }
  .dfood-meal-item {
    width: 100%;
  }

  .dfood-instant-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }
}