/* ==========================================================
   PRZERYWNIK BLOCK - SIMPLIFIED VERSION
   ========================================================== */

.przerywnik {
    min-height: 60vh;
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    position: relative;
    display: flex;
    align-items: center;
    color: white;
}

.przerywnik-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.przerywnik .container {
    position: relative;
    z-index: 2;
}

.przerywnik-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
}

.przerywnik-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 3px;
    background: #e30613;
}

.przerywnik-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.przerywnik-btn {
    background: #e30613;
    border: 2px solid #e30613;
    color: white;
    padding: 0.75rem 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.przerywnik-btn:hover {
    background: transparent;
    border-color: #e30613;
    color: #e30613;
    transform: translateY(-2px);
}

.przerywnik-logo {
    margin-bottom: 2rem;
}

.przerywnik-logo img {
    width: 120px;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.przerywnik-logo:hover img {
    opacity: 1;
}

.przerywnik-social {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.przerywnik-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: white;
    font-size: 20px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.przerywnik-social a:hover {
    background: #e30613;
    border-color: #e30613;
    transform: translateY(-3px);
    color: white;
}

/* Responsive */
@media (max-width: 991px) {
    .przerywnik {
        min-height: 50vh;
        background-attachment: scroll;
    }
    
    .przerywnik-title {
        font-size: 2rem;
    }
    
    .przerywnik-logo {
        text-align: center;
        margin-bottom: 1.5rem;
    }
    
    .przerywnik-social {
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .przerywnik {
        min-height: 40vh;
        text-align: center;
    }
    
    .przerywnik-title {
        font-size: 1.8rem;
    }
    
    .przerywnik-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .przerywnik-description {
        font-size: 1rem;
    }
    
    .przerywnik-btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }
}