/* Menu cards */

.menu-container {
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 30px;
  padding: 20px;
}

.menu-header {
  text-align: center;
  margin-bottom: 40px;
}

.menu-header h2 {
  text-align: center;
  font-size: 3rem;
  font-weight: 800;
  color: white;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
  letter-spacing: -1px;
  font-family: "Cinzel Decorative", cursive;
}

.menu-header h2::before {
  content: "";
  position: absolute;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--secondary-color),
    transparent
  );
  border-radius: 2px;
}

.menu-header p {
  font-size: 1.2rem;
  color: #ccc;
}

.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 20px;

  flex-wrap: wrap;
}

.tab-btn {
  position: relative;
  overflow: hidden;
  padding: 12px 30px;
  border: 2px solid var(--secondary-color);
  background: transparent;
  color: var(--secondary-color);
  cursor: pointer;
  border-radius: 25px;
  border-radius: 15px 5px 20px 10px / 5px 15px 10px 20px;
  font-size: 1rem;
  font-weight: bold;
  transition: all 0.3s ease;
}

.tab-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(253, 224, 86, 0.4);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.4s ease, height 0.4s ease;
}

.tab-btn:hover::after {
  width: 300%;
  height: 300%;
}

.tab-btn.active,
.tab-btn:hover {
  background: var(--secondary-color);
  color: black;
  transform: translateY(-2px);
}

.menu-container {
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 30px;
  padding: 20px;
}

.menu-header {
  text-align: center;
  margin-bottom: 40px;
}

.menu-header h1 {
  text-align: center;
  font-size: 3rem;
  font-weight: 800;
  color: white;
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
  letter-spacing: -1px;
  font-family: "Cinzel Decorative", cursive;
}

.menu-header h1::before {
  content: "";
  position: absolute;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--secondary-color),
    transparent
  );
  border-radius: 2px;
}

.menu-header p {
  font-size: 1.2rem;
  color: #ccc;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  line-height: 1.6;
}

.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.tab-btn {
  position: relative;
  overflow: hidden;
  padding: 12px 30px;
  border: 2px solid var(--secondary-color);
  background: transparent;
  color: var(--secondary-color);
  cursor: pointer;
  border-radius: 25px;
  border-radius: 15px 5px 20px 10px / 5px 15px 10px 20px;
  font-size: 1rem;
  font-weight: 600;
  font-family: "Inter", sans-serif;
  transition: all 0.3s ease;
}

.tab-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(253, 224, 86, 0.4);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.4s ease, height 0.4s ease;
}

.tab-btn:hover::after {
  width: 300%;
  height: 300%;
}

.tab-btn.active,
.tab-btn:hover {
  background: var(--secondary-color);
  color: black;
  transform: translateY(-2px);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  padding: 20px 0;
}

.menu-card {
  background: #2a2a2a;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  position: relative;
  padding: 20px;
  margin-top: 40px;
  margin-left: 40px;
  height: auto;
  min-height: 200px;
  display: flex;
  flex-direction: column;
}

.menu-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.card-image {
  width: 150px;
  height: 150px;
  background-size: cover;
  background-position: center;
  border-radius: 50%;
  position: absolute;
  top: -40px;
  left: -40px;
  border: 4px solid var(--secondary-color);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  z-index: 2;
}

.card-image::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.1), transparent);
  border-radius: 50%;
  z-index: -1;
}

.card-image img:hover {
  transition: transform 1s ease-in-out;
  transform: rotate(360deg);
}

.card-content {
  margin-top: 10px;
  margin-left: 50px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-title {
  font-size: 1.3rem;
  margin-bottom: 8px;
  margin-top: 90px;
  color: #fff;
  font-weight: 600;
  line-height: 1.3;
  font-family: "Inter", sans-serif;
}

.card-description {
  color: #bbb;
  font-size: 0.9rem;
  margin-bottom: 15px;
  line-height: 1.5;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  flex-grow: 1;
  min-height: 60px;
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 15px;
}

.card-price {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--secondary-color);
  font-family: "Inter", sans-serif;
  text-shadow: 0 2px 4px rgba(253, 224, 86, 0.3);
}

.category-badge {
  position: absolute;
  top: 55px;
  left: 245px;
  background: var(--secondary-color);
  color: black;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  font-family: "Inter", sans-serif;
  letter-spacing: 0.5px;
  box-shadow: 0 0 10px rgba(253, 224, 86, 0.6), 0 0 20px rgba(253, 224, 86, 0.4),
    0 0 30px rgba(253, 224, 86, 0.2);
  backdrop-filter: blur(10px);
}

.fade-in {
  animation: fadeIn 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1150px) {
  .category-badge {
    position: absolute;
    top: 55px;
    left: 180px;
  }
}

@media (max-width: 768px) {
  .menu-header h1 {
    font-size: 2rem;
  }

  .menu-tabs {
    gap: 10px;
  }

  .tab-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .menu-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 20px 10px;
  }

  .menu-card {
    margin-top: 35px;
    margin-left: 35px;
    margin-right: 10px;
  }

  .card-image {
    width: 150px;
    height: 150px;
    top: -35px;
    left: -35px;
  }

  .category-badge {
    position: absolute;
    top: 55px;
    left: 195px;
  }

  .card-content {
    margin-top: 5px;
    margin-left: 40px;
  }

  .card-title {
    font-size: 1.1rem;
    margin-top: 100px;
  }

  .card-description {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .menu-header h1::before {
    content: "";
    position: absolute;
    top: 100px;
  }

  .category-badge {
    position: absolute;
    top: 55px;
    left: 190px;
  }
}
