/* ===== RESET ===== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Fredoka', sans-serif;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* ===== SIDEBAR ===== */
.sidebar {
  width: 80px;
  background: black;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 0;
  position: fixed;
  height: 100vh;
  z-index: 1000;
}

.sidebar .logo img {
  width: 40px;
  margin-bottom: 30px;
}

.sidebar nav {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sidebar nav ul {
  list-style: none;
  padding: 0;
  width: 100%;
}

.sidebar nav ul li {
  margin: 25px 0;
  text-align: center;
}

.sidebar nav ul li a {
  color: white;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sidebar nav ul li .text {
  font-size: 12px;
  display: none;
}

.sidebar nav ul li:hover .text {
  display: block;
  color: orange;
}

/* Always show sidebar text on small screens */
@media (max-width: 768px) {
  .sidebar nav ul li .text {
    display: block;
  }
}

.socials {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-bottom: 20px;
}

.socials img {
  width: 20px;
}

.wsocials img {
  width: 50px;
}

/* ===== MAIN CONTENT ===== */
.main-content {
  margin-left: 80px;
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: hidden;
}

/* ===== FOOTER ===== */
.footer {
  background: black;
  color: orange;
  text-align: center;
  padding: 15px;
  font-size: 14px;
  margin-top: auto;
  margin-left: 75px;
}

.footer a {
  color: orange;
  text-decoration: none;
  margin: 0 5px;
}

.footer a:hover {
  text-decoration: underline;
}

/* ===== CATEGORY ICON BAR ===== */
.menu-categories {
  background-color: orange;
  padding: 12px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  position: sticky;
  top: 0;
  z-index: 10;
}

.menu-categories .category {
  background: white;
  color: black;
  border: none;
  padding: 10px 16px;
  font-weight: bold;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s ease;
}

.menu-categories .category.active,
.menu-categories .category:hover {
  background: black;
  color: orange;
}

/* ===== MENU GRID - FIXED ===== */
.menu-items {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 40px 0 20px;
}

.menu-section {
  margin-bottom: 60px;
  padding: 0 20px;
}

.section-title {
  font-size: 26px;
  margin: 40px 0 20px 10px;
  color: #222;
  font-weight: 600;
}

.menu-group {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  justify-content: center;
}

/* ===== INDIVIDUAL BURGER CARD ===== */
.menu-box {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
  max-width: 280px;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.menu-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.menu-box img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center 20%;
  border-bottom: 2px solid orange;
  border-radius: 12px 12px 0 0;
}


.menu-info {
  padding: 16px;
}

.menu-info h3 {
  font-size: 17px;
  display: flex;
  justify-content: space-between;
  color: #222;
  margin-bottom: 6px;
}

.menu-info span {
  color: orange;
  font-weight: bold;
}

.menu-info p {
  font-size: 13px;
  color: #555;
  line-height: 1.5;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .menu-group {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    margin-left: 25px;
  }
}

@media (max-width: 768px) {
  .menu-categories {
    flex-wrap: wrap;
    gap: 10px;
    padding: 10px;
  }

  .menu-categories .category {
    font-size: 14px;
    padding: 8px 12px;
    min-width: 44px;
    min-height: 44px;
  }

  .menu-group {
    gap: 20px;
  }

  .menu-box {
    max-width: 90%;
  }

  .menu-info h3 {
    font-size: 15px;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .menu-info p {
    font-size: 12px;
  }

  .section-title {
    font-size: 22px;
    margin: 30px 0 15px 10px;
    margin-left: 25px;
  }
}

@media (max-width: 480px) {
  .menu-info h3 {
    font-size: 14px;
  }

  .menu-info p {
    font-size: 11px;
  }

  .menu-categories .category {
    font-size: 13px;
    padding: 6px 10px;
  }

  .menu-box img {
    height: 220px;
  }

  .section-title {
    font-size: 20px;
    margin: 25px 0 10px 10px;
  }
}
