/* Sección Chef */
.section-chef {
  padding: 100px 0;
  background-color: #f8f8f8;
}

.chef-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  flex-wrap: wrap; /* Para adaptarse en pantallas pequeñas */
}

.chef-image img {
  width: 350px;
  height: auto;
  border-radius: 25px; /* Bordes curvos */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2); /* Sombra suave */
  object-fit: cover;
  transition: transform 0.3s ease;
}

.chef-image img:hover {
  transform: scale(1.05); /* Efecto al pasar el mouse */
}

.chef-info {
  max-width: 500px;
}

.chef-name {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #333;
  font-weight: 600;
}

.chef-description {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #555;
}
/* Sección Video Paella */
.section-paella {
  padding: 100px 0;
  background-color: #fff;
}

.paella-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  flex-wrap: wrap;
}

.paella-video {
  position: relative;
  width: 500px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.paella-video video {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 20px;
}

/* Botón de play */
.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 60px;
  color: white;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
  background: rgba(0, 0, 0, 0.4);
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.play-button:hover {
  background: rgba(0, 0, 0, 0.6);
}

.paella-info {
  max-width: 500px;
}

.paella-title {
  font-size: 2rem;
  color: #333;
  margin-bottom: 15px;
}

.paella-description {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #555;
}

/* Responsivo */
@media (max-width: 768px) {
  .paella-container {
    flex-direction: column;
    text-align: center;
  }

  .paella-video {
    width: 100%;
  }
}
