/* --- Reset suave --- */
body {
    margin: 0;
    padding: 0;
    background: #000;
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.5;
}

/* --- Enlaces --- */
a {
    text-decoration: none;
    color: #000;
}

a:hover {
    opacity: 0.8;
}

/* --- Imagen central de index.html (minifoto) --- */
img[src="minifoto.jpg"] {
    max-width: 80%;
    height: auto;
    border-radius: 6px;
}

/* --- Fotos interiores grandes --- */
.interior {
    max-width: 800px;
    width: 100%;
    height: auto;
    max-height: 80vh;
    object-fit: contain;
    display: block;
    margin: 20px auto;
}

/* --- Caja blanca de contenido --- */
.contenido {
    width: 80%;
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0,0,0,0.4);
    display: flex;
    flex-direction: column;
    align-items: center;	
}

/* --- Cabecera moderna sin tablas --- */
.cabecera {
    display: flex;
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid #000;
    padding: 10px 0;
    align-items: center;
}

.cabecera-logo img {
    max-height: 80px;
    margin-left: 20px;
}

.cabecera-info {
    flex: 1;
    text-align: center;
    font-size: 16px;
    padding-right: 20px;
}

/* --- Sección central con fondo --- */
.seccion-central {
    background-image: url("restaurante014.jpg");
    background-size: cover;
    background-position: center;
    padding-top: 40px;
    padding-bottom: 40px;
}

/* ============================================================
   MENÚ HORIZONTAL (ESCRITORIO)
   ============================================================ */
.menu-escritorio {
    background: #FFFF99;
    border-bottom: 1px solid #000;
    padding: 10px;
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: nowrap;
}

.menu-btn {
    background: #fff;
    border: 1px solid #000;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    color: #000;
    text-decoration: none;
    border-radius: 4px;
    box-shadow: 0 0 4px rgba(0,0,0,0.3);
    white-space: nowrap;
    transition: all 0.2s ease-in-out;
}

.menu-btn:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.4);
}

/* ============================================================
   MENÚ MÓVIL (solo visible en pantallas pequeñas)
   ============================================================ */
.menu-movil {
    display: none; /* oculto por defecto */
}

.menu-toggle {
    display: none;
}

.menu-boton {
    display: inline-block;
    background: #fff;
    border: 1px solid #000;
    padding: 10px 15px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 4px;
    box-shadow: 0 0 4px rgba(0,0,0,0.3);
}

.menu-panel {
    display: none;
    margin-top: 10px;
    background: #FFFF99;
    padding: 10px;
    border: 1px solid #000;
    border-radius: 4px;
}

.menu-toggle:checked ~ .menu-panel {
    display: block;
}

.menu-item {
    display: block;
    background: #fff;
    border: 1px solid #000;
    padding: 10px;
    margin-bottom: 10px;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    color: #000;
    text-decoration: none;
    border-radius: 4px;
    box-shadow: 0 0 4px rgba(0,0,0,0.3);
}

/* ============================================================
   MEDIA QUERY: versión móvil
   ============================================================ */
@media (max-width: 700px) {

    /* Ocultar menú escritorio */
    .menu-escritorio {
        display: none;
    }

    /* Mostrar menú móvil */
    .menu-movil {
        display: block;
        background: #FFFF99;
        border-bottom: 1px solid #000;
        padding: 10px;
    }
}

/* --- Pie de página moderno --- */
.pie {
    width: 100%;
    background: #ffffff;
    border-top: 1px solid #000;
    padding: 15px 0;
    text-align: center;
    /*margin-top: 40px;*/
}

.pie-contenido {
    font-size: 12px;
    line-height: 1.4;
}

.pie-contenido a:hover {
    opacity: 0.7;
}

/* Contenedor de la galería */
.galeria-contenedor {
    height: auto;
    max-width: 80vw;
    max-height: 50vh;
    display: flex;
    justify-content: center;
    align-items: center;

    overflow: clip;
    background: #000;
    padding: 2px;
    border-radius: 4px;

    margin: 2px;
}

/* Imagen de la galería */
img.galeria {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;

    object-fit: contain;
    display: block;
}

