/* =====================================================
   cocktails.css — Section formules COCKTAIL'S
===================================================== */

#cocktails {
  background: linear-gradient(160deg, #064a62 0%, #0a3545 40%, #0d6e7a 100%);
  padding: 6rem 5vw;
  position: relative;
  overflow: hidden;
  text-align: center;
}

/* Filigrane 🍹 en fond */
#cocktails::before {
  content: '🍹';
  position: absolute;
  font-size: 26rem;
  opacity: 0.04;
  top: 50%;
  right: -4rem;
  transform: translateY(-50%) rotate(15deg);
  pointer-events: none;
  line-height: 1;
  z-index: 0;
}

/* Tout le contenu au-dessus du filigrane */
#cocktails > * { position: relative; z-index: 1; }

#cocktails .label-sup {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #ff8c00;
  margin-bottom: 0.6rem;
  text-align: center;
}

#cocktails h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  letter-spacing: 0.05em;
  color: white;
  line-height: 1;
  margin-bottom: 0.8rem;
  text-align: center;
}

#cocktails h2 span { color: #ff8c00; }

/* ── Description centrée ── */
#cocktails .section-desc {
  display: block;
  font-size: 1rem;
  font-weight: 300;
  color: rgba(200, 247, 251, 0.65);
  max-width: 520px;
  line-height: 1.7;
  margin: 0 auto 3.5rem auto;
  text-align: center;
}

/* ── Grille ── */
.cocktails-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.6rem;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ── Carte ── */
.cocktail-card {
  text-align: left;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 140, 0, 0.18);
  border-radius: 1.4rem;
  padding: 1.8rem 2rem;
  position: relative;
  overflow: hidden;
  width: 100%;
  transition: transform 0.3s, background 0.3s, box-shadow 0.3s;
}

.cocktail-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

/* Filigrane emoji en fond de carte */
.cocktail-card::before {
  content: attr(data-glass);
  position: absolute;
  font-size: 7rem;
  opacity: 0.08;
  bottom: -1rem;
  right: -0.5rem;
  line-height: 1;
  pointer-events: none;
  transition: opacity 0.3s;
  z-index: 0;
}
.cocktail-card:hover::before { opacity: 0.14; }

/* Tout le contenu de la carte au-dessus du filigrane */
.cocktail-card > * { position: relative; z-index: 1; }

/* Prix en haut à droite */
.cocktail-prix {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.06em;
  color: #ff8c00;
  z-index: 2;
}

/* Header : emoji + nom */
.cocktail-header {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1.2rem;
}

.cocktail-glass { font-size: 2.4rem; line-height: 1; }

.cocktail-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  color: white;
  line-height: 1;
}

.cocktail-sous-titre {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ff8c00;
  margin-top: 0.15rem;
}

/* Liste des activités incluses */
.cocktail-ingredients {
  list-style: none;
  margin-bottom: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.cocktail-ingredients li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: rgba(200, 247, 251, 0.8);
  line-height: 1.4;
}

.cocktail-ingredients li::before {
  content: '+';
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  color: #ff8c00;
  flex-shrink: 0;
}

.cocktail-ingredients li:first-child::before {
  content: '';
  width: 12px;
  display: inline-block;
}

.ing-emoji { font-size: 1.1rem; flex-shrink: 0; }

/* Note descriptive */
.cocktail-note {
  font-size: 0.82rem;
  font-weight: 300;
  color: rgba(200, 247, 251, 0.5);
  line-height: 1.55;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 1.4rem;
}

/* Bouton */
.cocktail-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: linear-gradient(90deg, #ff8c00, #ff5040);
  color: white;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 0.55rem 1.3rem;
  border-radius: 2rem;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(255, 100, 0, 0.3);
  transition: transform 0.2s, box-shadow 0.2s;
}

.cocktail-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 100, 0, 0.5);
}

/* Badge "Populaire" */
.badge-pop {
  display: inline-block;
  background: #ff8c00;
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.18rem 0.7rem;
  border-radius: 2rem;
  margin-left: 0.5rem;
  vertical-align: middle;
}

/* ── Responsive ── */
@media (max-width: 800px) {
  .cocktails-grid { grid-template-columns: 1fr; }
  #cocktails::before { font-size: 14rem; }
}