/* ================ */
/* MENU PAGE STYLES */
/* ================ */

:root {
  --primary: #e74c3c;
  --primary-dark: #c0392b;
  --secondary: #f39c12;
  --secondary-light: #f1c40f;
  --dark: #2c3e50;
  --light: #f5f5f5;
  --text: #333333;
  --bg-color: #fff;
  --card-bg: #fff;
  --text-color: #333;
  --navbar-bg: #fff;
  --footer-bg: #2c3e50;
  --footer-text: #fff;
  --hero-overlay: rgba(0, 0, 0, 0.6);
  --section-bg: #f8f9fa;
  --section-alt-bg: #fff;
  --border-color: #dee2e6;
  --shadow-color: rgba(0, 0, 0, 0.1);
}

[data-theme="dark"] {
  --bg-color: #1a1a1a;
  --card-bg: #2d2d2d;
  --text-color: #f5f5f5;
  --navbar-bg: #2d2d2d;
  --footer-bg: #1a1a1a;
  --footer-text: #f5f5f5;
  --hero-overlay: rgba(0, 0, 0, 0.7);
  --section-bg: #2d2d2d;
  --section-alt-bg: #252525;
  --border-color: #444;
  --shadow-color: rgba(0, 0, 0, 0.3);
}

/* ------------------ */
/* SECTION BACKGROUNDS */
/* ------------------ */

.menu-header {
  background: linear-gradient(var(--hero-overlay), var(--hero-overlay)),
              url('https://images.unsplash.com/photo-1565299624946-b28f40a0ae38');
  background-size: cover;
  background-position: center;
  color: white;
  padding: 100px 0;
  text-align: center;
  margin-bottom: 40px;
}

/* Shared styling */
.burger-section,
.pizza-section,
.fasting-pizza-section,
.sandwiches-section,
.drinks-section {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 40px;
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px var(--shadow-color);
  position: relative;
  color: var(--text-color);
}

/* Overlay for readability */
.burger-section::before,
.pizza-section::before,
.fasting-pizza-section::before,
.sandwiches-section::before,
.drinks-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.8);
  border-radius: 10px;
}

[data-theme="dark"] .burger-section::before,
[data-theme="dark"] .pizza-section::before,
[data-theme="dark"] .fasting-pizza-section::before,
[data-theme="dark"] .sandwiches-section::before,
[data-theme="dark"] .drinks-section::before {
  background: rgba(45,45,45,0.8);
}

.menu-section-content {
  position: relative;
  z-index: 1;
}

/* Background images */
.burger-section {
  background-image: url('https://images.unsplash.com/photo-1568901346375-23c9450c58cd?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80'); /* Burger */
}

.pizza-section {
  background-image: url('https://images.unsplash.com/photo-1513104890138-7c749659a591?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80'); /* Regular pizza */
}

.fasting-pizza-section {
  background-image: url('https://images.unsplash.com/photo-1571407970349-bc81e7e96d47?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80'); /* Fasting / veg pizza */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.sandwiches-section {
  background-image: url('https://images.unsplash.com/photo-1540189549336-e6e99c3679fe?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80'); /* Sandwich */
}

.drinks-section {
  background-image: url('https://images.unsplash.com/photo-1510626176961-4b57d4fbad03?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80'); /* Drinks */
}

/* ------------------ */
/* MENU ITEM STYLES */
/* ------------------ */

.category-title {
  color: var(--primary);
  border-bottom: 2px solid var(--secondary);
  padding-bottom: 0.5rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.category-title i {
  font-size: 1.5rem;
}

.menu-item {
  margin-bottom: 1.5rem;
  padding: 1rem;
  border-left: 4px solid var(--secondary);
  transition: all 0.3s ease;
  background-color: var(--card-bg);
  border-radius: 5px;
}

.menu-item:hover {
  background-color: var(--section-bg);
  transform: translateY(-3px);
  box-shadow: 0 5px 10px var(--shadow-color);
}

.item-name {
  font-weight: 600;
  color: var(--text-color);
  font-size: 1.1rem;
}

.item-price {
  font-weight: 700;
  color: var(--primary);
}

.item-desc {
  color: var(--text-color);
  font-size: 0.9rem;
  margin-top: 5px;
}

/* ------------------ */
/* PIZZA SIZE STYLES */
/* ------------------ */

.pizza-sizes {
  display: flex;
  gap: 15px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.size-option {
  background: var(--section-bg);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  display: flex;
  gap: 5px;
}

.size-label {
  font-weight: 600;
  color: var(--primary);
}

.size-price {
  font-weight: 700;
}

/* ------------------ */
/* RESPONSIVE */
/* ------------------ */

@media (max-width: 768px) {
  .burger-section,
  .pizza-section,
  .fasting-pizza-section,
  .sandwiches-section,
  .drinks-section {
    background-image: none; /* hide on small screens */
    background-color: var(--card-bg);
  }
}
/* Full width footer */
footer.bg-dark {
  width: 100%;
  margin-left: 0;
  margin-right: 0;
}

.container-fluid {
  width: 100%;
  padding-right: 0;
  padding-left: 0;
  margin-right: auto;
  margin-left: auto;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 2rem 0;
}

.footer-column {
  flex: 1;
  min-width: 250px;
  padding: 0 15px;
}

.footer-bottom {
  width: 100%;
}