/* Importar fuente moderna con estilo */
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300;600&display=swap');

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    font-family: 'Raleway', sans-serif;
    text-align: center;
    background: none;
    position: relative;
}

/* Fondo */
.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    z-index: -2;
    animation: zoomOut 2s ease forwards;  /* Aplicamos la animación de zoom out */
}

/* Animación de zoom out */
@keyframes zoomOut {
    from {
        transform: scale(1.5);  /* Fondo más grande al inicio */
    }
    to {
        transform: scale(1);  /* Fondo a su tamaño original */
    }
}

/* Overlay negro para el fondo */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: -1;
}

/* Animación de la caja del menú */
@keyframes menuEntrance {
    from {
        opacity: 0;
        transform: translateY(50px); /* Empuja la caja desde abajo */
    }
    to {
        opacity: 1;
        transform: translateY(0); /* La caja llega a su posición original */
    }
}

/* Contenedor principal */
.container {
    max-width: 400px;
    margin: 20px auto;
    padding: 20px;
    background: rgb(65 0 0 / 80%)
    border-radius: 15px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    z-index: 1;
    position: relative;
    top: 15%;
    opacity: 0;  /* Inicialmente invisible */
    animation: menuEntrance 3s ease forwards; /* Animación de entrada más lenta */
    animation-delay: 1s;  /* Retraso de 1 segundo antes de que inicie la animación */

}

/* Logo */
.logo {
    width: 120px;
    border-radius: 50%;
    margin-bottom: 10px;
}

/* Título */
h1 {
    font-size: 24px;
    color: #ffc700;
    margin-bottom: 5px;
}

/* Subtítulo */
.subtitle {
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 20px;
}

/* Botones (menú vertical) */
.buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

/* Estilos generales de los botones */
.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 90%;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    color: white;
    border-radius: 50px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;  /* Aseguramos la transición */
}

/* Botón destacado (Ver Menú) */
.btn-highlight {
    background: #d35400;
}

.btn-highlight:hover {
    background: #b03a00;
    transform: scale(1.05);  /* Agrandar el botón al pasar el mouse */
    box-shadow: 0px 5px 15px rgba(211, 84, 0, 0.5); /* Sombra al pasar el mouse */
}

/* Botón de WhatsApp */
.whatsapp {
    background: #25d366;
}

.whatsapp:hover {
    background: #1da851;
    transform: scale(1.05);  /* Agrandar el botón al pasar el mouse */
    box-shadow: 0px 5px 15px rgba(37, 211, 102, 0.5); /* Sombra al pasar el mouse */
}

/* Botón de Tiktok */
.tiktok {
    background: #b040e4;
}

.tiktok:hover {
    background: #7805ae;
    transform: scale(1.05);  /* Agrandar el botón al pasar el mouse */
    box-shadow: 0px 5px 15px rgba(228, 64, 95, 0.5); /* Sombra al pasar el mouse */
}

/* Botón de Instagram */
.instagram {
    background: #e4405f;
}

.instagram:hover {
    background: #c1355a;
    transform: scale(1.05);  /* Agrandar el botón al pasar el mouse */
    box-shadow: 0px 5px 15px rgba(228, 64, 95, 0.5); /* Sombra al pasar el mouse */
}

/* Botón de Facebook */
.facebook {
    background: #3b5998;
}

.facebook:hover {
    background: #2e4272;
    transform: scale(1.05);  /* Agrandar el botón al pasar el mouse */
    box-shadow: 0px 5px 15px rgba(59, 89, 152, 0.5); /* Sombra al pasar el mouse */
}

/* Botón de mensaje */
.mensaje {
    background: #ff9800;
}

.mensaje:hover {
    background: #e68900;
    transform: scale(1.05);  /* Agrandar el botón al pasar el mouse */
    box-shadow: 0px 5px 15px rgba(255, 152, 0, 0.5); /* Sombra al pasar el mouse */
}

/* Pie de página */
footer {
    margin-top: 20px;
    font-size: 12px;
    color: white;
}

/* Estilo para la frase debajo del pie de página */
.call-to-action p {
    font-size: 9px;         /* Tamaño pequeño */
    font-style: italic;      /* Cursiva */
    color: #ffffff;             /* Color gris oscuro para el texto */
    margin-top: 8px;        /* Espacio entre el pie de página y la frase */
}

/* Responsividad para dispositivos móviles */
@media (max-width: 480px) {
    .container {
        width: 70%;  /* Reduce el ancho a un 70% del contenedor */
        padding: 15px;
        top: 10%;
    }

    .logo {
        width: 100px;
    }

    h1 {
        font-size: 22px;
    }

    /* Estilo para el texto "Gastronomía Tex Mex" */
    .subtitle {
        font-size: 16px;
        color: #555;
        margin-top: 5px; /* Ajusta este valor para pegarlo más al nombre */
        font-weight: bold; /* Aplica negrita al texto */
    }


    .btn {
        font-size: 14px;
    }
}
