/* =========================
   FONTS
   ========================= */
@import url('https://fonts.googleapis.com/css2?family=Anton&family=Bebas+Neue&display=swap');


/* =========================
   MENU HEADER
   ========================= */
.menu-hero{
  background: linear-gradient(
    180deg,
    rgba(0,0,0,.55),
    rgba(0,0,0,.55)
  ),
    url(../library/HEADER_MAMMA.jpg);

  background-size: cover;
  background-position: center;
  padding: 140px 20px 120px;
  text-align: center;
  color: #fff;
}

.menu-hero-inner{
  max-width: 900px;
  margin: 0 auto;
}

.menu-hero-title{
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(60px, 8vw, 110px);
  letter-spacing: .25em;
  margin: 0;
}

.menu-hero-subtitle{
  margin: 20px 0 0;
  font-size: 16px;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: .9;
}

/* =========================
   TAPAS
   ========================= */
.tapas-section{
  background: var(--dark_green);
  padding: 70px 20px 80px;
  text-align: center;
}

.tapas-title{
  font-family: 'Anton', 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 6vw, 64px);
  letter-spacing: .12em;
  color: var(--light-gray);
  margin: 0 0 50px;
}

.tapas-cards{
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  pointer-events: none;
  user-select: none;
}

.tapas-item{
  width: 260px;
  color: var(--light-gray);
}

.tapas-item img{
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  border-radius: 6px;
  box-shadow: 0 5px 5px rgba(0,0,0,.35);
}

.tapas-item h3{
  font-family: 'Anton', 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: .08em;
  margin: 16px 0 6px;
}

.tapas-item p{
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  opacity: .85;
}


/* =========================
   PLATS
   ========================= */
.plats-section{
  background: #ffffff;
  padding: 80px 20px;
}

/* Header */
.plats-header{
  text-align: center;
  margin-bottom: 50px;
  background: #14161b;
  padding: 28px 20px;
}

.plats-title{
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(42px, 6vw, 72px);
  letter-spacing: .18em;
  margin: 0;
  color: #ffffff;
}

.plats-subtitle{
  margin: 8px 0 0;
  font-size: 14px;
  color: rgba(255,255,255,.75);
}

/* Liste plats (2 colonnes) */
.plats-list{
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 80px;
}

.plats-col{
  display: flex;
  flex-direction: column;
  gap: 26px;
}

/* Ligne plat */
.plat-line h3{
  font-size: 16px;
  margin: 0;
  font-weight: 600;
}

/* Nom + Prix */
.plat-name-price{
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
}

/* ✅ PRIX : fond noir, texte blanc */
.plat-name-price span,
.plat-name-price .prices{
  background: #111;
  color: #fff;
  padding: 4px 10px;
  font-size: 13px;
  font-weight: 700;
  border-radius: 3px;
  letter-spacing: .03em;
  display: inline-block;
  white-space: nowrap;
}

/* Simple / Double */
.plat-name-price .prices b{
  color: #fff;
  font-weight: 700;
}

/* Cas "Voir ardoise" si tu l'utilises */
.plat-name-price .muted{
  background: transparent;
  color: rgba(0,0,0,.55);
  padding: 0;
  font-weight: 600;
}

/* Description */
.plat-line p{
  margin: 6px 0 0;
  font-size: 13px;
  color: rgba(0,0,0,.65);
  max-width: 90%;
  line-height: 1.6;
}

/* Note (Camorra etc.) */
.plats-note{
  margin: 18px 0 0;
  font-size: 12.5px;
  color: rgba(0,0,0,.6);
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 820px){
  .plats-list{
    grid-template-columns: 1fr;
    row-gap: 40px;
  }

  .plat-line p{
    max-width: 100%;
  }
}



/* =========================
   SALADES & PASTA
   ========================= */
.sp-section{
  background: var(--dark_green);
  color: #fff;
  padding: 90px 20px;
}

.sp-inner{
  max-width: 1100px;
  margin: 0 auto;
}

.sp-header{
  text-align: center;
  margin-bottom: 50px;
}

.sp-title{
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(42px, 6vw, 72px);
  letter-spacing: .18em;
  margin: 0;
}

.sp-subtitle{
  margin: 8px 0 0;
  font-size: 14px;
  color: rgba(255,255,255,.75);
}

/* Grille 2 colonnes */
.sp-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px 90px;
}

/* Titres colonnes */
.sp-col-title{
  font-family: 'Anton', 'Bebas Neue', sans-serif;
  letter-spacing: .10em;
  font-size: 20px;
  margin: 0 0 18px;
  color: rgba(255,255,255,.95);
}

/* Items */
.sp-col{
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.sp-line h4{
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

/* Nom + prix */
.sp-name-price{
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
}

/* Prix blanc fond blanc texte noir */
.sp-name-price span{
  background: #fff;
  color: #111;
  padding: 4px 10px;
  font-size: 13px;
  font-weight: 800;
  border-radius: 3px;
  letter-spacing: .03em;
  white-space: nowrap;
}

/* Descriptions */
.sp-line p{
  margin: 6px 0 0;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255,255,255,.85);
  max-width: 92%;
}

/* Petite photo sous PASTA */
.sp-photo{
  margin-top: 30px;
  width: 100%;
  aspect-ratio: 3 / 1;
  background-image: url('/assets/library/intro_4.jpg'); /* change l'image */
  background-size: cover;
  background-position: center;
  border-radius: 6px;
  box-shadow: 0 10px 25px rgba(0,0,0,.25);
}

/* Responsive */
@media (max-width: 900px){
  .sp-grid{
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .sp-line p{
    max-width: 100%;
  }
}




/* =========================
   PIZZA
   ========================= */
.pizza-section{
  background: #ffffff;
  padding: 90px 20px;
}

.pizza-inner{
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Photo */
.pizza-photo{
  width: 100%;
  aspect-ratio: 4 / 5;
  background-image: url('/assets/library/PIZZA_2.jpg');
  background-size: cover;
  background-position: center;
}

/* Texte */
.pizza-title{
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 6vw, 72px);
  letter-spacing: .18em;
  margin: 0 0 8px;
}

.pizza-subtitle{
  margin: 0 0 28px;
  font-size: 14px;
  color: rgba(0,0,0,.65);
}

/* Liste */
.pizza-list{
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Details (accordion natif) */
.pizza-item{
  border-bottom: 1px solid rgba(0,0,0,.10);
  padding-bottom: 10px;
}

.pizza-item:first-child{
  border-top: 1px solid rgba(0,0,0,.10);
  padding-top: 10px;
}

/* Summary = ligne cliquable */
.pizza-line{
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 14px;
  cursor: pointer;
  list-style: none;
  user-select: none;
  padding: 8px 0;
}

.pizza-line::-webkit-details-marker{
  display: none;
}

/* Nom + flèche */
.pizza-left{
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.pizza-name{
  font-weight: 600;
  font-size: 15px;
}

/* Prix */
.pizza-price{
  font-weight: 700;
  white-space: nowrap;
}

/* Flèche (petite, clean) */
.pizza-arrow{
  width: 10px;
  height: 10px;
  display: inline-block;
  border-right: 2px solid rgba(0,0,0,.55);
  border-bottom: 2px solid rgba(0,0,0,.55);
  transform: rotate(-45deg);
  transition: transform .25s ease, border-color .25s ease;
  margin-top: 2px;
}

/* Ouvert => flèche vers le bas */
.pizza-item[open] .pizza-arrow{
  transform: rotate(45deg);
  border-color: rgba(0,0,0,.8);
}

/* Contenu déplié */
.pizza-ingredients{
  padding: 0 0 12px;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(0,0,0,.65);
}

/* Petit effet hover */
.pizza-line:hover .pizza-name{
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Focus clavier */
.pizza-line:focus-visible{
  outline: 2px solid rgba(0,0,0,.25);
  outline-offset: 6px;
  border-radius: 6px;
}

/* Responsive */
@media (max-width: 900px){
  .pizza-inner{
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .pizza-photo{
    aspect-ratio: 16 / 9;
  }
}



/* =========================
   DESSERTS / DOLCI
   ========================= */
.dessert-section{
  background: #c8792f; /* orange chaud élégant */
  padding: 90px 20px;
  color: #fff;
}

.dessert-header{
  text-align: center;
  margin-bottom: 50px;
}

.dessert-title{
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(42px, 6vw, 72px);
  letter-spacing: .18em;
  margin: 0;
  color: #fff;
}

.dessert-subtitle{
  margin: 8px 0 0;
  font-size: 14px;
  color: rgba(255,255,255,.85);
}

/* Liste 2 colonnes */
.dessert-list{
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 80px;
  row-gap: 26px;
}

.dessert-col{
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.dessert-line h3{
  font-size: 16px;
  margin: 0;
  font-weight: 700;
  letter-spacing: .02em;
  color: #fff;
}

.dessert-name-price{
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
}

/* Prix fond noir texte blanc */
.dessert-name-price span{
  background: #111;
  color: #fff;
  padding: 4px 10px;
  font-size: 13px;
  font-weight: 800;
  border-radius: 3px;
  letter-spacing: .03em;
  white-space: nowrap;
  display: inline-block;
}

.dessert-prices b{
  color: #fff;
  font-weight: 800;
}

/* Description */
.dessert-line p{
  margin: 6px 0 0;
  font-size: 13px;
  color: rgba(255,255,255,.9);
  line-height: 1.6;
  max-width: 92%;
}

/* Responsive */
@media (max-width: 820px){
  .dessert-list{
    grid-template-columns: 1fr;
    row-gap: 40px;
  }

  .dessert-line p{
    max-width: 100%;
  }
}
