/* Pantalla inicial: título "Reservaciones" */
#events h3 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: #B76E79; /* Rose Gold */
  text-align: center;
  margin-bottom: 20px;
}

/* Botón principal de reservar */
#events input.reserve_time_btn {
  background: #B76E79;
  color: #fff;
  border-radius: 30px;
  padding: 15px 40px;
  font-size: 18px;
  font-weight: bold;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}
#events input.reserve_time_btn:hover {
  background: #A05C68; /* tono más oscuro */
}

/* Fondo elegante desenfocado */
body {
  background: url('tu-imagen-de-fondo.jpg') no-repeat center center fixed;
  background-size: cover;
}
div.ui-widget-content {
  backdrop-filter: blur(8px);
  background-color: rgba(255,255,255,0.7);
  border-radius: 20px;
  padding: 20px;
}

/* Categorías de servicios como botones con imagen */
.category-button {
  display: inline-block;
  width: 220px;
  height: 180px;
  margin: 15px;
  border-radius: 20px;
  overflow: hidden;
  text-align: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.category-button img {
  width: 100%;
  height: 120px;
  object-fit: cover;
}
.category-button span {
  display: block;
  background: #fff;
  color: #B76E79;
  font-weight: bold;
  padding: 10px;
}

/* Servicios dentro de cada categoría */
.service-card {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.85);
  border-radius: 15px;
  margin: 15px 0;
  padding: 15px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
}
.service-card img {
  width: 80px;
  height: 80px;
  border-radius: 10px;
  margin-right: 15px;
}
.service-card .info {
  flex: 1;
}
.service-card .info h4 {
  margin: 0;
  color: #B76E79;
  font-size: 18px;
}
.service-card .info p {
  margin: 5px 0;
  color: #555;
  font-size: 14px;
}
.service-card button {
  background: #B76E79;
  color: #fff;
  border: none;
  border-radius: 20px;
  padding: 10px 20px;
  cursor: pointer;
}
.service-card button:hover {
  background: #A05C68;
}


