body {
    font-family: 'Roboto', sans-serif;
    color: #333;
    margin: 0;
    padding: 0;
}

.header {
    background-image: url('fondo.jpg');
    background-size: cover;
    background-position: center;
    height: 60vh;
    display: flex;
    align-items: center;
}

.header-overlay {
    width: 100%;
    text-align: center;
    color: white;
}


.logo-img {
    width: 60%; /* Ajusta este valor según el tamaño deseado */
    height: auto;
}

.restaurant-name {
    font-size: 48px;
    font-weight: bold;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.menu-section {
    background-color: #f8f9fa;
    padding: 50px 0;
}

.menu-item {
    text-align: center;
    margin-bottom: 30px;
}

.menu-item i {
    font-size: 48px;
    color: #ff6f61;
}

.menu-item h2 {
    color: #333;
    font-size: 24px;
}

.about-section {
    padding: 50px 0;
}

.about-section h2 {
    color: #333;
    font-size: 24px;
    margin-bottom: 20px;
}

.about-section p {
    color: #555;
    font-size: 16px;
}

.footer {
    background-color: #333;
    color: white;
    padding: 20px 0;
    text-align: center;
}

.social-links {
    margin-top: 20px;
}

.social-links a {
    color: white;
    font-size: 24px;
    margin: 0 10px;
}

.social-links a:hover {
    color: #ff6f61;
    text-decoration: none;
}
