/* Estilos generales */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    background: #fffaf0;
    color: #444;
    padding: 20px;
}

/* Navegación */
header {
    background: #ffb6c1;
    color: white;
    text-align: center;
    padding: 20px 0;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
}

nav ul li a:hover {
    color: #ff69b4;
}

/* Secciones */
section {
    padding: 50px;
    text-align: center;
}

section h2 {
    color: #ff69b4;
    margin-bottom: 20px;
}

/* Productos del menú */
.producto {
    margin: 20px;
    padding: 15px;
    border: 1px solid #ccc;
    background: white;
    box-shadow: 2px 2px 10px #ddd;
    border-radius: 10px;
    transition: transform 0.3s;
}

.producto:hover {
    transform: scale(1.05);
}

.producto h3 {
    color: #ff69b4;
    font-size: 22px;
}

.producto p {
    font-size: 18px;
    color: #444;
}

.producto strong {
    font-size: 20px;
    color: #ff69b4;
}

/* Galería */
.imagenes {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.imagenes img {
    width: 100%;
    max-width: 300px;
    border-radius: 10px;
    transition: transform 0.3s;
}

.imagenes img:hover {
    transform: scale(1.1);
}

/* Formulario de contacto */
form {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 20px;
    box-shadow: 2px 2px 10px #aaa;
    border-radius: 10px;
}

input, textarea, button {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
    border: 1px solid #ccc;
}

button {
    background: #ff69b4;
    color: white;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    background: #ffb6c1;
}

/* Pie de página */
footer {
    text-align: center;
    padding: 20px;
    background: #ffb6c1;
    color: white;
    margin-top: 20px;
}

.logo {
    width: 350px;  /* Ajusta el tamaño según lo necesites */
    height: auto;
    display: block;
    margin: 0 auto 20px;
}
