* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.5;
    background-color: #fafafa;
    color: #222;
}

.page-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 12px 12px 24px;
}

header {
    text-align: center;
    padding: 16px 0 20px;
}

.logo {
    max-width: 130px;
    height: auto;
    display: block;
    margin: 0 auto 8px;
}

.site-title {
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.site-address {
    margin-top: 6px;
    font-size: 0.95rem;
}

.site-address a {
    color: #007b7f;
    text-decoration: none;
}

.site-address a:hover {
    text-decoration: underline;
}

/* BOTONES DE CONTACTO */
.contact-line {
    margin-top: 8px;
}

.btn-contact {
    display: inline-block;
    background-color: #C4680A;
    color: #fff;
    padding: 8px 14px;
    margin: 4px 6px;
    border-radius: 6px;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-contact:hover,
.btn-contact:focus {
    background-color: #F1B801;
    color: #160E16;
}

main {
    margin-top: 8px;
}

.menu-image {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 14px;
    border-radius: 6px;
    cursor: zoom-in;
    transition: transform 0.12s ease-out, box-shadow 0.12s ease-out;
}

.menu-image:hover,
.menu-image:focus {
    transform: scale(1.01);
    box-shadow: 0 4px 10px rgba(0,0,0,0.09);
}

footer {
    margin-top: 24px;
    padding-top: 14px;
    border-top: 1px solid #ddd;
    font-size: 0.9rem;
    text-align: center;
}

footer a {
    color: #007b7f;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

.social-links a {
    margin: 0 4px;
    white-space: nowrap;
}

/* CRÉDITOS */
.credits {
    margin-top: 10px;
    font-size: 0.65rem;
    opacity: 0.7;
    text-align: center;
}

.credits a {
    color: #007b7f;
    text-decoration: none;
}

.credits a:hover {
    text-decoration: underline;
}

/* LIGHTBOX */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.lightbox.is-visible {
    display: flex;
}

.lightbox-inner {
    max-width: 100%;
    max-height: 100%;
    padding: 10px;
}

.lightbox-img {
    max-width: 100%;
    max-height: 100vh;
    border-radius: 6px;
}

.lightbox-close {
    position: fixed;
    top: 12px;
    right: 16px;
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
}

.lightbox-hint {
    position: fixed;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    color: #f5f5f5;
    font-size: 0.8rem;
    opacity: 0.85;
}

@media (min-width: 768px) {
    .site-title {
        font-size: 1.4rem;
    }

    .page-wrapper {
        padding: 16px 16px 32px;
    }
}
