body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

header {
    background-color: #333;
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header h1 {
    margin: 0;
}

.nav a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
}

.nav a:hover {
    text-decoration: underline;
}

.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex; /* Flexbox para disposición horizontal */
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 20px; /* Espacio entre las palabras */
    flex-wrap: nowrap; /* Asegura que el texto no se envuelva */
}

.hero-overlay h1 {
    font-size: 10em;
    color: white;
    font-weight: bold;
    animation: fadeIn 2s ease-in-out; /* Aplicando animación */
    white-space: nowrap; /* Mantiene el texto en una sola línea */
}

/* Animación de Fade-in */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.menu {
    padding: 40px 20px;
    background-color: #f9f9f9
}

.menu h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 15em;
}

.menu .category {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.menu .category .item {
    width: 250px;
    text-align: center;
    margin-bottom: 30px;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    border-radius: 8px;
}

.menu .category .item img {
    width: 100%;
    border-radius: 8px;
}

.menu .category .item h3 {
    margin: 15px 0 10px;
    font-size: 22px;
}

.menu .category .item p {
    color: #555;
}

.menu-section {
    padding: 40px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.menu-section h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #333;
}

.menu-category {
    margin-bottom: 40px;
}

.menu-category h3 {
    font-size: 2em;
    color: #444;
    margin-bottom: 20px;
}

.menu-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Ajuste responsivo */
    gap: 20px;
}

.item {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    padding: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.item:hover {
    transform: scale(1.05);
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.15);
}

.item video {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 10px;
}

.item h4 {
    font-size: 1.5em;
    color: #555;
    margin-bottom: 10px;
}

.item p {
    font-size: 1em;
    color: #666;
    margin: 5px 0;
}


footer {
    background-color: #333;
    color: white;
    padding: 20px;
    text-align: center;
}

.footer-content {
    margin-bottom: 10px;
}

.footer-content a {
    color: #f0c14b; /* Color para los enlaces */
    text-decoration: none;
}

.footer-content a:hover {
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 10px;
    font-size: 0.9em;
}
