#inpo-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    max-width: 800px;
    height: auto;
    max-height: 90vh;
    background-color: black;
    border: 2px solid #d7aa64;
    border-radius: 10px;
    display: none;
    z-index: 9999;
    box-sizing: border-box;
    overflow: hidden;
}

#inpo-popup .popup-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Hintergrundbild komplett skalieren */
    z-index: 0;
}

#inpo-popup .popup-text {
    position: relative;
    z-index: 1;
    padding: 20px;
    text-align: center;
    color: white;
}

#inpo-popup .popup-text h2 {
    font-family: 'Myriad Pro', sans-serif;
    font-weight: normal;
    font-size:  2.6rem;;
    color: #d7aa64;
    margin-bottom: 15px;
}

#inpo-popup .popup-text p {
    font-family: 'Myriad Pro', sans-serif;
    font-weight: normal;
    font-size: 1.9rem;
    color: #ffffff;
    line-height: 1.8;
	white-space: pre-line; 
}

#inpo-popup .popup-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 2rem;
    color: #d7aa64;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 2;
}

#inpo-popup .popup-logo {
    position: absolute;
    bottom: 15px;
    left: 15px;
    width: 180px;
    height: auto;
    z-index: 2;
}

@media (max-width: 768px) {
    #inpo-popup .popup-text h2 { font-size: 1.5rem; }
    #inpo-popup .popup-text p { font-size: 1rem; }
    #inpo-popup .popup-logo { width: 180px; }
}
