/**
 * Menu Card Section
 * Carte de menu avec colonnes, catégories et articles
 *
 * @package Annecy_Unik_Lodges
 */

/* ========================================
   Section
   ======================================== */
.section-menu-card {
  background-color: var(--menu-bg, #f3f1ee);
  padding: var(--section-pt, 9.375rem) 0 var(--section-pb, 9.375rem);
}

/* ========================================
   Titre global (ex: SNACKS — span toute la largeur)
   ======================================== */
.menu-card__layout-title {
  font-family: var(--font-body);
  font-size: 42px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #1b1f0d;
  margin: 0 0 50px 0;
  line-height: normal;
}

/* ========================================
   Colonnes
   ======================================== */
.menu-card__columns {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.menu-card__col {
  flex: 1;
  min-width: 0;
}

/* ========================================
   Titre de section (ex: BOISSONS CHAUDES)
   ======================================== */
.menu-section__title {
  font-family: var(--font-body);
  font-size: 42px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #1b1f0d;
  margin: 0 0 50px 0;
  line-height: normal;
}

/* ========================================
   Sous-catégorie (ex: Cafés)
   ======================================== */
.menu-subcategory {
  margin-top: 50px;
}

.menu-subcategory:first-of-type {
  margin-top: 0;
}

.menu-subcategory__title {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 500;
  font-style: normal;
  color: #1b1f0d;
  margin: 0 0 20px 0;
  padding-bottom: 16px;
  border-bottom: 1px solid #1b1f0d;
  line-height: normal;
}

/* ========================================
   Liste d'articles
   ======================================== */
.menu-items-list {
  list-style: none;
  margin: 0;
  padding: 0 60px 0 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ========================================
   Article : nom + description + prix
   ======================================== */
.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
}

.menu-item__info {
  flex: 1;
  min-width: 0;
}

.menu-item__name {
  display: block;
  font-family: var(--font-body);
  font-size: 30px;
  font-weight: 300;
  line-height: 35px;
  color: #1b1f0d;
}

.menu-item__desc {
  display: block;
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 300;
  line-height: 35px;
  color: #1b1f0d;
  opacity: 0.75;
}

.menu-item__price {
  font-family: var(--font-body);
  font-size: 30px;
  font-weight: 300;
  line-height: 35px;
  color: #1b1f0d;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1200px) {
  .menu-section__title {
    font-size: 34px;
  }

  .menu-subcategory__title {
    font-size: 34px;
  }

  .menu-item__name {
    font-size: 24px;
    line-height: 30px;
  }

  .menu-item__desc {
    font-size: 18px;
    line-height: 28px;
  }

  .menu-item__price {
    font-size: 24px;
    line-height: 30px;
  }
}

@media (max-width: 900px) {
  .menu-card__columns {
    flex-direction: column;
    gap: 60px;
  }

  .menu-section__title {
    font-size: 28px;
  }

  .menu-subcategory__title {
    font-size: 28px;
  }
}

@media (max-width: 600px) {
  .section-menu-card {
    padding: 80px 0;
  }

  .menu-section__title {
    font-size: 24px;
    margin-bottom: 36px;
  }

  .menu-subcategory__title {
    font-size: 24px;
  }

  .menu-item__name {
    font-size: 20px;
    line-height: 26px;
  }

  .menu-item__desc {
    font-size: 16px;
    line-height: 24px;
  }

  .menu-item__price {
    font-size: 20px;
    line-height: 26px;
  }

  .menu-item {
    gap: 12px;
  }
}
