/* ----------------------------------------------------
   1. TYPOGRAFIA – globalne czcionki (Google Fonts)
---------------------------------------------------- */
body, p, .content-wrapper {
    font-family: 'Lato', sans-serif;
    font-weight: 400;
	font-size: 20px;
}

.main-menu .nav-link,
.btn,
input,
select,
textarea {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
}

.header-logo,
.brand-text {
    font-family: 'Raleway', sans-serif;
    font-weight: 500;
}

/* ----------------------------------------------------
   2. GLOBALNE TŁA I STRUKTURA
---------------------------------------------------- */
body {
    background: #bbb;
}

#logo {
    background: #fff;
}

/* Logo w headerze */
#logo img {
    width: 180px;
    padding: 10px;
}

/* ----------------------------------------------------
   3. PRZYCISK W HEADERZE
---------------------------------------------------- */
.header-text a {
    color: white;
    text-decoration: none;
}

.header-text {
    margin-right: 20px;
}

/* ----------------------------------------------------
   4. MENU GŁÓWNE – poziome, WCAG, responsywne
---------------------------------------------------- */
.main-menu {
    background: var(--main-bg, #0d6efd);
    border-top: 1px solid rgba(0,0,0,0.1);
    border-bottom: 1px solid rgba(0,0,0,0.1);
    padding: 0.0rem 0;
}
/* Linki w menu */
.main-menu .nav-link {
    color: var(--text-color, #eee);
    font-size: 1.1rem;
    font-weight: 500;
    padding: 0.5rem 0.8rem;
    border-radius: 6px;
}

/* Hover */
.main-menu .nav-link:hover {
    background: rgba(0,0,0,0.6);
}

/* Focus – zgodny z WCAG 2.2 */
.main-menu .nav-link:focus-visible {
    outline: 3px solid #000;
    outline-offset: 3px;
	opacity: 0.6;
}

/* ----------------------------------------------------
   5. HAMBURGER – mobile
---------------------------------------------------- */
.navbar-toggler {
    border: none;
}

.navbar-toggler:focus-visible {
    outline: 3px solid #005fcc;
    outline-offset: 3px;
}

/* Ikona hamburgera */
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(0,0,0,0.7)' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}
.content-wrapper {
    padding: 2rem 0rem;
    }

/* ----------------------------------------------------
   6. DESKTOP – menu w jednej linii
---------------------------------------------------- */
@media (min-width: 992px) {
    .main-menu .navbar-nav {
        flex-direction: row;
        align-items: center;
    }
}
/* ----------------------------------------------------
   HERO – PARALLAX SLOW SCROLL (DZIAŁA NA MOBILE)
---------------------------------------------------- */

.hero {
    position: relative;
    height: 70vh;
    min-height: 400px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
	background-color: rgb(0 0 0 / 30%);
}

.hero::before {
    content: "";
    position: absolute;
    top: -10%;
    left: 0;
    width: 100%;
    height: 120%;
    background-image: url('../images/img/paralaxa1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    /* klucz do wolniejszego scrolla */
    transform: translateY(calc(var(--scrollY) * 0.6));
    will-change: transform;

    z-index: -1;
}

.hero-inner {
    position: relative;
    z-index: 2;
    text-shadow: 0 0 10px rgba(0,0,0,0.6);
}
.header-tel{
	margin-right: 25px;
}

footer {
    font-size: 0.8rem !important;
}

footer h5 {
    font-size: 1rem !important;
    font-weight: 600;
}

footer p,
footer li,
footer a 
{
    font-size: 1rem !important;
	color: #888; !important;
}

footer a {
    text-decoration: none;
    color: #aaa;
}

footer a:hover {
    color: #fff;
}

.footer-text {
    font-size: 0.8rem !important;
}
/* Animacja slide-down */
.slide {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}
.slide.open {
    max-height: 2000px;
}
.warunki p {
	font-size: 15px;
	margin-bottom: 0.0rem !important;
}
.warunki {
	font-size: 15px;
	margin-bottom: 0.0rem !important;
}
#warunkiShort {
	font-size: 15px;
}
.box {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 25px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}

.box h3 {
    margin-bottom: 15px;
}

.badge {
    display: inline-block;
    background: #f1f1f1;
    padding: 6px 12px;
    border-radius: 8px;
    margin: 4px 0;
}
#konsultant{	
	text-align: center;
	margin-left: auto;
	margin-right: auto;	
}
#konsultant img{
	width: 70%;
}
.pulse-premium {
    display: inline-block;
    animation: pulsePremium 1.6s ease-in-out infinite;
}

@keyframes pulsePremium {
    0% {
        transform: scale(1);
        text-shadow: 0 0 0px rgba(255, 0, 0, 0.0);
    }
    50% {
        transform: scale(1.10);
        text-shadow: 0 0 12px rgba(255, 80, 80, 0.10);
    }
    100% {
        transform: scale(1);
        text-shadow: 0 0 0px rgba(255, 0, 0, 0.0);
    }
}

/* iPhone / mobile – wyłączamy fixed, bo Safari blokuje */
@media (max-width: 767px) {
    .hero {
        background-attachment: scroll;
    }
	.mobil {
		display: none;
	}
	#logo img {
		width: 120px;
	
	}	
	.header-tel{
	margin-right: 0px;
	}
	footer {
		text-align: center;
	}
}