/* ========================
   SITE LOGO (top-left fixed)
======================== */
.museum-logo-wrapper {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1000;
}

.museum-logo-wrapper .site-logo img {
    width: 60px;
    height: 60px;
    object-fit: cover;
}

/* ========================
   BANNER
======================== */
.museum-banner-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    max-width: 1000px;
}

.museum-banner-wrapper .museum-banner {
    width: 100%;
    max-width: 800px;
    height: auto;
    display: block;
}

/* ========================
   MUSEUM CONTENT
======================== */
.museum-wrapper {
    max-width: 800px;
    margin: 30px auto 50px auto;
    padding: 0 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.museum-wrapper h1.decorative {
    font-family: 'IsabellaStd', serif;
    font-size: 32px;
    color: #665d53;
    text-align: center;
}

/* Make iframe responsive */
.museum-wrapper iframe {
    width: 100%;
    max-width: 800px;
    height: 352px;
    border-radius: 12px;
}

/* ========================
   RESPONSIVE
======================== */
@media (max-width: 800px) {
    .museum-logo-wrapper .site-logo img {
        width: 50px;
        height: 50px;
    }

    .museum-banner-wrapper {
        margin-top: 15px;
    }

    .museum-wrapper {
        margin: 20px 10px 30px 10px;
    }

    .museum-wrapper iframe {
        height: 300px;
    }
}
