/* Avid Menu Manager — default styles.
   Uses CSS custom properties for colors/fonts so each site can override
   without touching this file directly — just add CSS after this stylesheet
   loads (in the theme, a customizer, etc.) redefining these variables. */

.avid-menu {
  --avid-accent: #a86a2a;
  --avid-text: #1a1410;
  --avid-muted: #7b6e60;
  --avid-heading-font: Georgia, serif;
  --avid-body-font: Georgia, serif;

  font-family: var(--avid-body-font);
  color: var(--avid-text);
}

.avid-menu__tabs {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.avid-menu__tab {
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  padding: 0.5rem 0;
  font-family: var(--avid-heading-font);
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  color: var(--avid-muted);
}

.avid-menu__tab.active {
  color: var(--avid-text);
  border-bottom-color: var(--avid-accent);
}

.avid-menu__panel {
  display: none;
}

.avid-menu__panel.active {
  display: block;
}

.avid-menu__sections {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 3rem);
}

.avid-menu__section--col1 {
  width: 100%;
}

.avid-menu__section--col2 {
  width: calc(50% - clamp(1.5rem, 3vw, 3rem) / 2);
}

.avid-menu__section h2 {
  font-family: var(--avid-heading-font);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.avid-menu__item {
  margin-bottom: clamp(2.25rem, 2.4vw, 3.75rem);
}

.avid-menu__item-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
}

.avid-menu__item h3 {
  font-family: var(--avid-heading-font);
  margin: 0;
}

.avid-menu__price {
  white-space: nowrap;
  color: var(--avid-accent);
}

.avid-menu__item p {
  color: var(--avid-muted);
  margin: 0.25rem 0 0;
}

.avid-menu__image {
  width: 100%;
  margin-bottom: clamp(1.5rem, 3vw, 3rem);
}

.avid-menu__image--full img {
  display: block;
  width: 100%;
  height: auto;
}

.avid-menu__image--gallery {
  display: grid;
  grid-template-columns: repeat(var(--image-count, 3), 1fr);
  gap: 1.5rem;
}

.avid-menu__image--gallery img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (max-width: 576px) {
  .avid-menu__section--col2 {
    width: 100%;
  }
}
