/* Estil per a la recepta amb un toc de rap Genz */ 
/* Només afecta .section-rap */
.section-rap {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(135deg, #fff8ee 0%, #f9f4e8 100%);
}
/* La resta de sections mantenen el seu estil per defecte */

 .rap-genz {
  font-family: 'Segoe UI', Roboto, -apple-system, sans-serif;
  max-width: 600px;
  margin: 20px auto;
  padding: 25px;
    background: rgba(249, 244, 232, 0.8); /* Fons translúcid per a un toc modern */
  /*background: #f9f4e8; /* Fons crema suau */
  /*background: linear-gradient(135deg, #f9f4e8 0%, #fff8ee 100%); /*més street style*/
  /* border-left: 4px solid #d4a017; /*més street style*/
  backdrop-filter: blur(10px);   /* Efecte de desenfocament per a un toc modern */
  border-radius: 16px;
  border: 1px solid #e8d5b5;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  line-height: 1.6;
}

.rap-genz h1 {
  color: #d4a017; /* Or gastronòmic */
  text-align: center;
  font-size: 2.2em;
  margin-bottom: 20px;
  font-weight: 800;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.rap-genz p {
  color: #5a4a3a; /* Marró cálid */
  margin-bottom: 15px;
}

.rap-genz em {
  font-style: italic;
  color: #b38a58; /* Marró clar */
  font-weight: 500;
}

.rap-genz strong {
  color: #c45a1a; /* Taronja terra */
  font-weight: 700;
}

.mic-drop {
  display: inline-block;
  animation: micDrop 0.5s ease-in-out;
  color: #d4a017;
  font-weight: bold;
}

@keyframes micDrop {
  0% { transform: translateY(0); }
  50% { transform: translateY(10px); }
  100% { transform: translateY(0); }
}

/* Efecte hover per a més interactivitat */
.rap-genz:hover {
  transform: translateY(-2px);
  transition: transform 0.3s ease;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}
/* Estil per a la recepta amb un toc de rap Genz */