/* Popup Overlay */
.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
}

/* Base Popup Container */
.popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgb(0, 0, 0);
    padding: 30px;
    border-radius: 12px;
    border-color: #C8B568;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    width: 90%;
    text-align: center;
}

/* Close Button */
.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
    color: #C8B568;
    background: none;
    border: none;
}

.close-btn:hover {
    color: gold;
}

/* Open Buttons */
.open-btn {
    cursor: pointer;
}


/* Newsletter Popup Styles */
.newsletter-popup {
    background: linear-gradient(135deg, #000000 0%, #000000 100%);
    color: #C8B568;
}

.newsletter-popup h2 {
    margin-bottom: 10px;
    font-size: 24px;
}

.newsletter-popup p {
    margin-bottom: 20px;
    opacity: 0.9;
}

.newsletter-popup input[type="email"] {
    background-color: #2f2f2f;
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    box-sizing: border-box;
        }

/* Social Media Popup Styles */
.social-popup {
    background-color: #000000;
    color: #C8B568;
}

.social-popup h2 {
    color: #C8B568;
    margin-bottom: 15px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
}

.social-link {
    display: inline-block;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    text-decoration: none;
    color: #C8B568;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: transform 0.3s;
}

.social-link:hover {
    transform: scale(1.1);
}

.facebook { background-color: #3b5998; }
.mastodon { background-color: #5a48db; }
.twitter { background-color: #1da1f2; }
.youtube { background-color: #ff0000; }

/* Kontakt */
.contact-pop {
    background-color: #000000;
    color: #C8B568;
}

.banner {
    margin-bottom: 25px;
}

.logo {
    margin-top: 25px;
}