.menu-container {
  max-width: 1200px;
  margin: 2rem auto;
  background-color: transparent;
  padding: 2rem;
  border-radius: 10px;
}

.menu-title {
    font-family: 'Century Gothic', Arial, sans-serif;
    text-align: center;
    font-size: 3rem;
    color: white;
  font-weight: 700;
    margin: 10px 0 20px 0;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.7);
}

.menu-section {
  margin-bottom: 3rem;
}

.menu-section h2 {
  border-bottom: 2px solid #00ff00;
  padding-bottom: 0.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
  font-size: xx-large;
  font-weight: 700;
}

/* Details/summary for collapsible categories */
.menu-details {
  background: transparent;
  margin-bottom: 1rem;
}
.menu-summary {
  list-style: none;
  cursor: pointer;
  border-bottom: 2px solid #00ff00;
  padding: 0.6rem 0;
  margin-bottom: 0.8rem;
  text-align: center;
  font-size: x-large;
  color: white;
  font-weight: 700;
}
.menu-summary::-webkit-details-marker { display: none; }

.menu-details[open] .menu-summary {
  /* subtle style when open */
  color: #e8ffe8;
}

.gril-dodaci {
    display: block;
    width: fit-content;
    text-align: center;
    margin: 20px auto 0 auto;
    font-size: 25px;
    color: #fff;
    background-color: rgba(0,0,0,0.5);
    padding: 10px 15px;
    border-radius: 10px;
}

/* Grid kartice */
.menu-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.menu-card {
  width: 200px;
  min-height: 320px;
  border-radius: 10px;
  padding: 15px;
  text-align: center;
  background-color: rgba(0,0,0,0.6);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.2s, box-shadow 0.2s, background-color 0.2s;
}

.menu-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0,0,0,0.5);
  background-color: rgba(0,0,0,0.8);
}

.menu-card img {
  width: 100%;
  height: 110px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 10px;
}

.menu-card h3 {
  font-size: 1.1rem;
  margin: 5px 0;
  color: #d4ffd4;
}

.menu-card p {
  font-size: 0.9rem;
  color: #ccc;
  margin-bottom: 10px;
}

.menu-card .cena {
  color: #00ff00;
  font-weight: bold;
  font-size: 1rem;
}

.menu-card .cena s {
  color: #888;
  margin-right: 5px;
  font-size: 0.9rem;
}

.menu-card .nova-cena {
  color: #00ff00 !important;
  font-weight: bold;
  font-size: 1rem;
}

/* Responsivnost */
@media (max-width: 768px) {
  .menu-card {
    width: 45%;
  }
}

@media (max-width: 480px) {
  .menu-card {
    width: 90%;
  }
}

.delivery-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 2rem 0;
}

.delivery-buttons a {
    display: inline-block;
    width: 100px;
    height: 100px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.delivery-buttons a img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.delivery-buttons a:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}
.call-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.call-popup-box {
    background: white;
    padding: 25px;
    border-radius: 12px;
    width: 300px;
    text-align: center;
    font-family: 'Century Gothic', sans-serif;
}

.call-popup-box h3 {
    margin-top: 0;
    font-size: 22px;
    color: #000;
}

.call-number {
    font-size: 24px;
    font-weight: bold;
    margin: 15px 0;
    color: #00aa00;
}

.copy-btn, .close-btn {
    padding: 10px 20px;
    margin: 6px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
}

.copy-btn {
    background: #00ff00;
    color: black;
}

.copy-btn:hover {
    background: #00cc00;
}

.close-btn {
    background: #ddd;
}

.close-btn:hover {
    background: #ccc;
}
