/* Reset de márgenes y paddings */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Estilo para el body */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-image: url('fondo.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}
/*
    Estilos Header y Elementos Header
*/
/* Cabecera */
header {
    display: flex;
    justify-content: space-between; /* Coloca los elementos a los extremos */
    align-items: center;
    background: transparent;
    color: white;
    padding: 1rem;
    padding: 100px;
}

/* Contenedor del logo */
.logo-container {
    flex: 0 1 100px; /* Ajusta el tamaño máximo del logo */
}

.header-right{
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-icon{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, filter 0.3s ease;
}
.social-icon img{
    width: 20px; /*Ajustar tamaño iconos sociales*/
    height: auto;
    transition: transform 0.3s ease, filter 0.3s ease; /* Transición para el zoom y filtro */
}

.social-icon:hover img{
    transform: scale(1.2); /* Aumenta el tamaño de la imagen al 120% */
    filter: brightness(1.2); /* Aumenta el brillo de la imagen */
}

#logo {
    width: 180px; /* Ajusta el tamaño del logo */
    height: auto;
}
.call-button {
    padding: 8px 16px;        /* Espaciado dentro del botón */
    font-size: 14px;          /* Tamaño del texto */
    background-color: #ffffff00;   /* Fondo oscuro */
    color: rgb(255, 255, 255);             /* Texto blanco */
    text-decoration: none;    /* Quitar subrayado en caso de ser un enlace */
    border-radius: 5px;       /* Bordes redondeados */
    transition: transform 0.3s ease, filter 0.3s ease; /* Efecto de transición al pasar el ratón */
    font-weight: bold
}

.call-button:hover {
    transform: scale(1.2); /* Aumenta el tamaño de la imagen al 120% */
    filter: brightness(1.2); /* Aumenta el brillo de la imagen */

}

.call-button.pressed{
    color: rgb(0, 0, 0);
}

/*
 ESTILOS MAIN Y ELEMENTOS
*/

.main-content {
    padding: 0;
    margin-top: 20px;
    margin-bottom: 50px;
}

.menu-section {
    padding: 20px;
    margin-bottom: 0;
    background-color: rgb(255, 255, 255);
    border-radius: 0;
}

.menu-section h2 {
    color: #000000;
    margin-bottom: 20px;
    text-align: center;
    font-family: 'Cinzel',serif; /*Modificar sa font a nes gust*/
    font-size: xx-large;
    margin-top: 60px;

}

.menu-section ul {
    list-style-type: none;
    padding: 30px;
}

.menu-section ul li {
    border-radius: 5px;
    justify-content: space-between;
    display: flex;
    font-family: 'Montserrat', serif;
}

.menu-section ul li.name {
    background-color: white;
    justify-content: space-between;
    display: flex;
    font-family: 'Montserrat', serif;
    text-align: left;
}
.menu-section ul li.description {
    display:  flex;
    font-size: 12px;  /* Tamaño de fuente más pequeño */
    color: #888;  /* Color gris más claro */
    font-style: italic;  /* Estilo en cursiva */
    flex-grow: 1;  /* Permite que la descripción ocupe el espacio */
    text-align: left;  /* Alinea la descripción a la derecha */
    margin-top: 0;  /* Espacio pequeño entre el nombre y la descripción */
}
.menu-section ul li strong {
    font-size: 18px;
    color: #333;
}
/* Pie de página */
footer {
    text-align: center;
    background-color: #333;
    color: white;
    padding: 1rem;
    position: fixed;
    width: 100%;
    bottom: 0;
}