
/* Kontener popupa */
.brand-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* Widoczny popup */
.brand-popup.show {
    opacity: 1;
    visibility: visible;
}

/* Tło popupa */
.brand-popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1520607162513-77705c0f0d4a') center/cover no-repeat; /* Zmień URL na swoje zdjęcie */
    filter: brightness(0.5); /* Przyciemnienie tła */
    z-index: 1;
}

/* Zawartość popupa */
.brand-popup-content {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.9); /* Półprzezroczyste tło */
    border-radius: 12px;
    width: 90%;
    max-width: 600px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    text-align: center;
}

/* Wewnętrzna zawartość */
.brand-popup-inner {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Tytuł popupa */
.brand-popup-title {
    font-size: 28px;
    font-weight: 700;
    color: #003E7E; /* Kolor brandowy */
    border: none;
}

/* Tekst w popupie */
.brand-popup-text {
    font-size: 22px;
    color: #003E7E;; /* Neutralny kolor tekstu */
    line-height: 1.5;
    border: none;
    font-weight: 600;

}

/* Dane kontaktowe */
.brand-popup-contact{
    margin-top: 16px;
    font-size: 26px;
    color: #2E3A45;
    line-height: 1.8;
}

.brand-popup-contact a {
    color: #003E7E; /* Kolor linków */
    text-decoration: none;
    font-weight: 600;
    word-wrap: break-word;
}

.brand-popup-contact a:hover {
    color: #ED1878; /* Akcentowy różowy kolor przy hover */
}

/* Przycisk zamknięcia */
.brand-popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 24px;
    color: #ED1878; /* Akcentowy różowy kolor */
    cursor: pointer;
    transition: color 0.3s ease;
}

.brand-popup-close:hover {
    color: #003E7E; /* Zmiana koloru na niebieski przy hover */
}

/* Responsywność */
@media (max-width: 768px) {
    .brand-popup-content {
        width: 90%;
        padding: 20px;
    }

    .brand-popup-title {
        font-size: 24px;
        
    }

    .brand-popup-text {
        font-size: 24px;
    }

    .brand-popup-contact {
        font-size: 24px;
    }
}

/* Stylizacja przycisku e-mail w prawym dolnym rogu */
.email-button {
    position: fixed;
    bottom: 100px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #003E7E; /* Kolor brandowy */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 1000000;
}

.email-button img {
    width: 28px;
    height: 28px;
    transition: transform 0.3s ease;
}

.email-button:hover {
    background: #ED1878; /* Akcentowy różowy kolor przy hover */
    transform: scale(1.1); /* Powiększenie przy hover */
}

.email-button:hover img {
    transform: scale(1.2); /* Powiększenie ikony przy hover */
}

/* #callnowbutton{
    display: none!important;
} */