/* ============================
Museum Curator Plugin CSS
============================ */
/* ===============================
   Museum Curator Popup Overlay
=============================== */
#museum-curator-overlay {
    display: none;                  /* hidden initially */
    position: fixed;                /* cover entire viewport */
    inset: 0;                       /* top:0; right:0; bottom:0; left:0 */
    background: rgba(0, 0, 0, 0.65); /* semi-transparent black */
    z-index: 99998;                 /* below popup but above content */
}
/* ----------------------------
Floating Catherine Image (Bottom Right)
Slide Animation
---------------------------- */

.museum-curator-widget {
    position: fixed;
    bottom: 20px;
    right: -120px; /* start outside screen */
    z-index: 99999;
    transition: right 0.8s ease;
}

/* visible state */
.museum-curator-widget.show {
    right: 20px;
}

.catherine-face {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #8a6f3a;
    object-fit: cover;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.catherine-face:hover {
    transform: scale(1.05);
}

/* ----------------------------
Popup Form Styling
---------------------------- */
#museum-curator-popup {
    display: none;                   /* hidden initially */
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    max-width: 90%;
    background: #f9f4ef;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    padding: 20px;
    z-index: 100000;                /* above everything */
    font-family: Oswald, Helvetica, sans-serif, sans-serif;
}

/* Popup content spacing */
#museum-curator-popup h3 {
    margin-top: 0;
    margin-bottom: 15px; /* adds space below the heading */
    font-size: 18px;
    color: #5a4630;
}

#museum-curator-popup p {
    margin: 0 0 10px 0; /* bottom margin for spacing between paragraphs */
    line-height: 1.6;
    color: #4b3a2b;
}
/* Inputs and Textarea */
#museum-curator-popup input,
#museum-curator-popup textarea {
    width: 100%;
    margin-bottom: 10px;
    padding: 8px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 14px;
    font-family: Oswald, Helvetica, sans-serif, sans-serif;
}

/* Submit Button */
#museum-curator-popup button {
    background: #8a6f3a;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 14px;
    font-family: Oswald, Helvetica, sans-serif, sans-serif;
    transition: background 0.3s ease;
}

#museum-curator-popup button:hover {
    background: #a18253;
}

/* Close Button */
#museum-curator-popup-close {
    position: absolute;
    top: 10px;
    right: 15px;
    cursor: pointer;
    font-weight: bold;
    font-size: 16px;
    color: #5a4630;
}

/* ----------------------------
Responsive for Mobile
---------------------------- */
@media (max-width: 768px) {
    .catherine-face {
        width: 70px;
        height: 70px;
    }

    #museum-curator-popup {
        width: 90%;
        padding: 15px;
    }

    #museum-curator-popup h3 {
        font-size: 16px;
    }

    #museum-curator-popup p,
    #museum-curator-popup input,
    #museum-curator-popup textarea,
    #museum-curator-popup button {
        font-size: 13px;
    }
}
.museum-curator-popup {
    display: none;
    width: 90%;      /* responsive width */
    max-width: 600px; /* keeps desktop width */
    margin: 0 auto;   /* center on mobile */
    box-sizing: border-box;
}
.museum-curator-popup form input,
.museum-curator-popup form textarea,
.museum-curator-popup form button {
    width: 100%;      /* full width fields on mobile */
    box-sizing: border-box;
}
.museum-curator-popup {
    font-family: 'YourThemeFont', serif; /* Replace with actual theme font */
    font-size: 16px;
    line-height: 1.5;
    background: #fff9f4;
    border: 2px solid #d8cfc1;
    border-radius: 12px;
    padding: 20px;
    max-width: 300px;
    position: fixed;
    bottom: 80px;
    right: 20px;
    z-index: 9999;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}
/* Remove bold but keep colors */
.mc-frontend-msg,
.mc-success-msg,
.mc-error-msg,
.mc-sending-msg {
    font-weight: normal !important; /* removes bold */
    font-family: 'Oswald', Helvetica, sans-serif; /* match popup text */
    font-size: 14px;
    line-height: 1.5;
    margin-top: 10px;
}

/* Optional: color only if needed */
.mc-success-msg {
    color: green; /* or inherit from popup */
}
.mc-error-msg {
    color: #c0392b; /* typical error red */
}
.mc-sending-msg {
    color: #5a4630; /* neutral color */
}
/* Museum Curator Mobile Fix */

.museum-curator-widget{
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
}

.museum-curator-popup{
    max-width:420px;
    width:90%;
    margin:0 auto;
    box-sizing:border-box;
}

/* Inputs */
.museum-curator-popup input,
.museum-curator-popup textarea{
    width:100%;
    box-sizing:border-box;
}

/* Mobile */
@media (max-width:600px){

.museum-curator-popup{
    width:92%;
    padding:18px;
}

.museum-curator-popup h3{
    font-size:20px;
}


.museum-curator-popup textarea{
    min-height:120px;
}

}