/* Sección de menú */
.servicios-container {
    padding: 40px 20px;
}


.imagen-fondo-servicios {
  background-image: url('../imgs/servicios-fondo.png');
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
  position: relative;
  z-index: 1;
}



/* Título principal */
.servicios-header {
    text-align: center;
    margin-bottom: 60px;
}

.servicios-title {
    font-size: 48px;
    font-weight: 400;
    color: #333;
    margin-bottom: 20px;
}

.servicios-line {
    width: 30%;
    height: 3px;
    background-color: #333;
    margin: 10px auto;
    opacity: 50%;
}

/* Estilos para la sección premium */
.servicios-premium {
    background-image: url('imgs/autor.jpg'); /* Reemplaza con tu imagen */
    background-size: cover;
    background-position: center;
    height: 500px; /* Ajusta según necesidad */
    position: relative;
    background-attachment: fixed; /* Efecto Parallax */
    margin-bottom: 3rem;
}
.servicios-facil {
    background-image: url('imgs/mesa.png'); /* Reemplaza con tu imagen */
    background-size: cover;
    background-position: center;
    height: 500px; /* Ajusta según necesidad */
    position: relative;
    margin-bottom: 3rem;
    background-attachment: fixed; /* Efecto Parallax */
}
.servicios-casual {
    background-image: url('imgs/buffet.png'); /* Reemplaza con tu imagen */
    background-size: cover;
    background-position: center;
    height: 500px; /* Ajusta según necesidad */
    position: relative;
    background-attachment: fixed; /* Efecto Parallax */
    margin-bottom: 3rem;
}
.servicios-parrilla {
    background-image: url('imgs/coffe.png'); /* Reemplaza con tu imagen */
    background-size: cover;
    background-position: center;
    height: 500px; /* Ajusta según necesidad */
    position: relative;
    background-attachment: fixed; /* Efecto Parallax */
    margin-bottom: 3rem;
}
.servicios-saludable {
    background-image: url('imgs/boxlunch.png'); /* Reemplaza con tu imagen */
    background-size: cover;
    background-position: center;
    height: 500px; /* Ajusta según necesidad */
    position: relative;
    background-attachment: fixed; /* Efecto Parallax */
    margin-bottom: 3rem;
}
.servicios-fingerfood {
    background-image: url('imgs/especialidades.png'); /* Reemplaza con tu imagen */
    background-size: cover;
    background-position: center;
    height: 500px; /* Ajusta según necesidad */
    position: relative;
    background-attachment: fixed; /* Efecto Parallax */
    margin-bottom: 3rem;
}

.servicios-infantil {
    background-image: url('imgs/cocteleria.png'); /* Reemplaza con tu imagen */
    background-size: cover;
    background-position: center;
    height: 500px; /* Ajusta según necesidad */
    position: relative;
    background-attachment: fixed; /* Efecto Parallax */
    margin-bottom: 3rem;
}

.overlay {
    background: rgba(0, 0, 0, 0.5); /* Capa negra semi-transparente */
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}
.premium-title {
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 20px;
    text-decoration: underline;
}

.premium-description {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.6;
    width: 60%; /* Controla el ancho del texto */
    margin-left: auto;
    margin-right: auto;
}


.ordenar-btn {
    background-color: white;
    color: black;
    padding: 12px 25px;
    font-size: 20px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 300;
    transition: transform 0.2s ease-in-out;
}

.ordenar-btn:hover {
    transform: scale(1.1);
}



@media (max-width: 600px) {
    .premium-description {
        width: 80%; /* Controla el ancho del texto */
    }
    .premium-title {
        font-size: 30px;
        font-weight: 400;
        margin-bottom: 20px;
        text-decoration: underline;
    }
}

