/* Ogólny */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
}



/* Navbar */
.navbar {
    background-color: var(--even-darker-grey2); 
    z-index: 1000;
}

.navbar-nav .nav-link {
    color: var(--white); 
}

.navbar-nav .nav-link:hover {
    color: var(--yellow); 
}

.navbar-nav .nav-item .nav-link.active {
    color: var(--yellow); 
}

.navbar-toggler {
    background-color: var(--another-yellow)!important; 
    border: 4px solid black !important;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='%23FFD700' stroke-width='3' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
     

}

.navbar-toggler:hover .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='%231E1E1E' stroke-width='3' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E"); 
}
/* End Navbar */

/* Hero */
.hero{
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed; /* Dla bardziej estetycznego efektu */
    opacity: 0.9;
    height: 70vh;
    color: var(--another-yellow2);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-box {
    background-color: rgba(0, 0, 0, 0.85); /* Mniejsza przezroczystość */
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    border: 3px solid var(--another-yellow2);
    text-align: justify; /* Lepsze formatowanie tekstu */
}

/* Styl dla przycisku CTA */
/* Kontener dla przycisków */

/* Stylizacja przycisków */
.cta-btn {
    display: inline-block;
    background-color: var(--another-yellow2);
    color: black;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    margin: 5px;
    font-size: 1.2rem; /* Dopasowanie rozmiaru czcionki */
    width: auto;
    max-width: 200px; /* Maksymalna szerokość przycisku */
}

/* Efekt hover na przyciskach */
.cta-btn:hover {
    background-color: var(--light-grey);
    transform: translateY(-5px); /* Efekt przesunięcia przycisku */
}

/* End Hero */

/* Main */
main {
    /* min-height: 100%; */
    display: flex;
    flex-direction: column;
    background-color: var(--even-darker-grey); /* ciemny szary */
    padding-top: 50px;
}

.content {
    flex: 1;
}

.wpis {
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    background-color: var(--even-darker-grey2); /* ciemnoszary */
    border: 1px solid var(--another-yellow); /* brak ramki */
}

.wpis header h3 {
    color: var(--another-yellow); /* żółty */
    font-size: 1.7rem;
    margin-bottom: 20px;
}

.wpis header p {
    color: var(--light-grey); /* jasnoszary */
    font-size: 1.4rem;
}

.text-start p{
    color: var(--light-grey); 
    font-size: 1.4rem;
}

.wpis-end{
    color: var(--another-yellow); /* żółty */
    font-size: 1.5rem;
    margin-top: 20px;
}
/* End Main */


/* Footer */
/* .footer {
    background-color: var(--even-darker-grey2); 
    color: var(--another-yellow); 
    padding: 20px 0;
    font-size: 12px;
    text-align: center;
    position: relative;
    bottom: 0;
    width: 100%;
} */

footer{
    background-color: var(--even-darker-grey2); 
    color: var(--another-yellow);  
}

footer a:hover {
    color: var(--yellow) !important; 
}
/* End footer */


/* Fullscreen img */
.fullscreen-img {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: contain;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    cursor: zoom-out;
    
}
/* End fullscreen img */

/* Media for navbar */
@media (max-width: 768px) {
    .navbar-nav .nav-link{
        margin-top: 10px;
        font-size: 1.3rem;
    }
}


@media (max-width: 992px) {
    .navbar-nav .nav-link{
        margin-top: 10px;
        font-size: 1.4rem;
    }
}

@media (max-width: 1200px) {
    .navbar-nav .nav-link{
        margin-top: 10px;
        font-size: 1.4rem;
    }
}