/* Estilos generales */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #fffceb;
  color: #333;
  text-align: center;
}

.icono-heart {
  width: 24px;
  height: 24px;
  vertical-align: middle;
}

/* Hero */
.hero {
  background: linear-gradient(to bottom, #ffd700, #fffceb);
  padding: 60px 20px;
}
.hero h1 {
  font-size: 2.5rem;
  color: #444;
}
.hero button {
  margin-top: 20px;
  padding: 10px 20px;
  font-size: 1.2rem;
  background: #ffd700;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}
.hero button:hover {
  background: #ffcc00;
}

/* Sección Kpop */
.kpop {
  padding: 40px 20px;
}
.kpop .gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}
.kpop img {
  width: 200px;
  border-radius: 10px;
  box-shadow: 0px 3px 10px rgba(0,0,0,0.2);
}

/* Sección Kdramas */
.kdrama {
  padding: 40px 20px;
  background: #fff0f6;
}
.kdrama img {
  width: 300px;
  border-radius: 15px;
  margin: 15px 0;
}

/* Sorpresa flores */
.flores {
  display: block;
  padding: 50px 20px;
  background: #eaffea;
}
.flores img {
  width: 250px;
}


/* Íconos personalizados */
.fa-sun {
  color: #FFD700; /* Amarillo dorado */
}

.fa-heart {
  color: #A020F0; /* Rojo corazón */
}


/* .fa-heartpurple {
  color: #4c00da; /* Rojo corazón 
} */

.fa-gem {
  color: #3a86ff; /* Azul brillante */
}

.fa-seedling {
  color: #2a9d8f; /* Verde natural */
}

.fa-star {
  color: #ffb703; /* Amarillo estrella */
}

.fa-gift {
  color: #ff006e; /* Rosa fuerte */
}

.fa-face-smile {
  color: #ffb347; /* Naranja suave */
}

.fa-clapperboard {
  color: #6c63ff; /* Morado para kdramas */
}
