/* =========================
   FONTS
   ========================= */
@import url('https://fonts.googleapis.com/css2?family=Anton&family=Bebas+Neue&display=swap');

/* =========================
   GLOBAL MENU
   ========================= */
body {
  background: #fff;
  color: #111;
}

.section-kicker {
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: 12px;
  font-weight: 800;
  color: #a65318;
  margin-bottom: 10px;
}

/* =========================
   MENU HERO
   ========================= */
.menu-hero {
  min-height: 75vh;
  background:
    linear-gradient(rgba(0,0,0,.58), rgba(0,0,0,.58)),
    url('/assets/library/images/caesar.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 20px 100px;
  text-align: center;
  color: #fff;
}

.menu-hero-inner {
  max-width: 1000px;
}

.menu-hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(70px, 12vw, 150px);
  letter-spacing: .18em;
  margin: 0;
  line-height: .9;
}

.menu-hero p:last-child {
  margin: 25px 0 0;
  font-size: clamp(14px, 2vw, 18px);
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* =========================
   MENU INTRO
   ========================= */
.menu-intro {
  max-width: 900px;
  margin: 0 auto;
  padding: 90px 20px;
  text-align: center;
}

.menu-intro h2 {
  font-size: clamp(34px, 5vw, 60px);
  font-weight: 900;
  line-height: 1.1;
  margin: 0 0 22px;
}

.menu-intro p:last-child {
  font-size: 17px;
  line-height: 1.8;
  color: rgba(0,0,0,.65);
}

/* =========================
   MENU SECTIONS
   ========================= */
.menu-section,
.split-section,
.tapas-section,
.dessert-section,
.kid-menu-section,
.allergen-section {
  padding: 95px 20px;
}

.dark-section {
  background: var(--dark-blue);
  color: #fff;
}

.light-section {
  background: #fff;
  color: #111;
}

.menu-section-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 60px;
}

.menu-section-header.left {
  text-align: left;
  margin: 0 0 35px;
}

.menu-section-header h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 7vw, 86px);
  letter-spacing: .14em;
  margin: 0;
  text-transform: uppercase;
}

.menu-section-header p:last-child {
  opacity: .7;
  margin-top: 8px;
}

/* =========================
   MENU GRID
   ========================= */
.menu-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 80px;
  row-gap: 28px;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 25px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,.18);
}

.light-section .menu-item {
  border-bottom: 1px solid rgba(0,0,0,.12);
}

.menu-item h3 {
  margin: 0;
  font-size: 17px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.menu-item p {
  margin: 7px 0 0;
  font-size: 13.5px;
  line-height: 1.6;
  opacity: .75;
  max-width: 520px;
}

.menu-item span {
  background: #fff;
  color: var(--dark-blue);
  padding: 5px 11px;
  border-radius: 3px;
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}

.light-section .menu-item span {
  background: var(--dark-blue);
  color: #fff;
}

.menu-item.highlight h3 {
  color: #f2b544;
}

/* =========================
   SUPPLEMENTS
   ========================= */
.supplements {
  max-width: 900px;
  margin: 50px auto 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

.supplements span {
  border: 1px solid rgba(255,255,255,.25);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 13px;
}

/* =========================
   IMAGE BREAK
   ========================= */
.image-break {
  min-height: 430px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 60px 20px;
  position: relative;
}

.image-break::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.48);
}

.image-break > div {
  position: relative;
  z-index: 1;
}

.image-break h2 {
  font-size: clamp(34px, 6vw, 72px);
  font-weight: 900;
  margin: 0;
}

.image-break-burger {
  background-image: url('/assets/library/images/pdj1');
}

/* =========================
   SPLIT SECTION
   ========================= */
.split-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 80px;
}

/* =========================
   SMALL GRID
   ========================= */
.compact-section {
  padding-top: 75px;
  padding-bottom: 75px;
}

.small-grid {
  max-width: 1050px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
}

.small-grid article {
  border-top: 2px solid var(--dark-blue);
  padding-top: 18px;
}

.small-grid h3 {
  font-size: 16px;
  font-weight: 900;
  text-transform: uppercase;
  margin: 0 0 8px;
}

.small-grid p {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(0,0,0,.65);
}

.small-grid span {
  display: inline-block;
  background: var(--dark-blue);
  color: #fff;
  padding: 5px 10px;
  font-weight: 900;
  border-radius: 3px;
  font-size: 13px;
}

/* =========================
   TAPAS
   ========================= */
.tapas-section {
  background: #f4f1ec;
}

.tapas-grid {
  max-width: 1150px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}

.tapas-grid article {
  background: #fff;
  padding-bottom: 22px;
  box-shadow: 0 12px 30px rgba(0,0,0,.07);
}

.tapas-img {
  height: 230px;
  background-size: cover;
  background-position: center;
  margin-bottom: 22px;
}

.tapas-1 { background-image: url('/assets/library/tapas-camembert.jpg'); }
.tapas-2 { background-image: url('/assets/library/tapas-babybel.jpg'); }
.tapas-3 { background-image: url('/assets/library/tapas-planche.jpg'); }
.tapas-4 { background-image: url('/assets/library/tapas-acras.jpg'); }
.tapas-5 { background-image: url('/assets/library/food/NACHOS'); }
.tapas-6 { background-image: url('/assets/library/tapas-patatas.jpg'); }

.tapas-grid h3,
.tapas-grid p,
.tapas-grid span {
  margin-left: 22px;
  margin-right: 22px;
}

.tapas-grid h3 {
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
}

.tapas-grid p {
  font-size: 13.5px;
  line-height: 1.6;
  color: rgba(0,0,0,.65);
}

.tapas-grid span {
  display: inline-block;
  background: var(--dark-blue);
  color: #fff;
  padding: 5px 11px;
  border-radius: 3px;
  font-weight: 900;
}

/* =========================
   KID MENU
   ========================= */
.kid-menu-section {
  background:
    linear-gradient(rgba(10,34,64,.88), rgba(10,34,64,.88)),
    url('/assets/library/kid-menu.jpg');
  background-size: cover;
  background-position: center;
  color: #fff;
}

.kid-menu-box {
  max-width: 1000px;
  margin: 0 auto;
  border: 1px solid rgba(255,255,255,.25);
  padding: 55px;
  text-align: center;
}

.kid-menu-box h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(50px, 7vw, 88px);
  letter-spacing: .16em;
  margin: 0;
}

.kid-price {
  display: inline-block;
  background: #fff;
  color: var(--dark-blue);
  font-size: 18px;
  font-weight: 900;
  padding: 8px 16px;
  margin: 18px 0 35px;
}

.kid-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  text-align: left;
}

.kid-grid h3 {
  font-size: 17px;
  text-transform: uppercase;
  font-weight: 900;
}

.kid-grid p {
  opacity: .8;
  font-size: 14px;
  line-height: 1.6;
}

/* =========================
   DESSERTS
   ========================= */
.dessert-section {
  background: #a65318;
  color: #fff;
}

.dessert-section .menu-item span {
  background: #111;
  color: #fff;
}

/* =========================
   ALLERGENES
   ========================= */
.allergen-section {
  background: #111;
  color: #fff;
  text-align: center;
}

.allergen-section h2 {
  font-size: 24px;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.allergen-section p {
  max-width: 1000px;
  margin: 12px auto;
  color: rgba(255,255,255,.75);
  font-size: 13px;
  line-height: 1.7;
}

.allergen-section small {
  color: rgba(255,255,255,.55);
}

/* =========================
   RESPONSIVE
   ========================= */
@media (max-width: 950px) {
  .menu-grid,
  .split-inner,
  .kid-grid {
    grid-template-columns: 1fr;
  }

  .small-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tapas-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 620px) {
  .menu-section,
  .split-section,
  .tapas-section,
  .dessert-section,
  .kid-menu-section,
  .allergen-section {
    padding: 70px 18px;
  }

  .menu-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .menu-hero {
    min-height: 60vh;
  }

  .menu-hero h1 {
    letter-spacing: .1em;
  }

  .menu-section-header h2 {
    letter-spacing: .08em;
  }

  .small-grid,
  .tapas-grid {
    grid-template-columns: 1fr;
  }

  .kid-menu-box {
    padding: 35px 22px;
  }

  .image-break {
    min-height: 300px;
  }
}