body {
    background-color: #1a1a1a;
    color: #e5e5e5;
    font-family: "Open Sans", sans-serif;
}
.navbar {
    background-color: #1a1a1a;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}
.navbar-brand img {
    margin-right: 10px;
    filter: drop-shadow(0px 0px 5px rgba(255, 255, 255, 1))
}
/* Karuzela */
.carousel {
    position: relative;
    height: 500px; /* Wysokość karuzeli */
    overflow: hidden;
}

.carousel-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 0;
    /*
    transform: scale(1.05);
    filter: blur(2px); /* Lekkie rozmycie tła
    */
}

.carousel-inner {
    position: relative;
    z-index: 1; /* Napisy nad tłem */
}

.carousel-item {
    height: 500px; /* Dopasuj do wysokości karuzeli */
}

.carousel-caption {
    background: rgba(0, 0, 0, 0.6); /* Półprzezroczyste tło napisów */
    padding: 20px;
    border-radius: 10px;
    transition: opacity 0.5s ease-in-out; /* Płynne pojawianie się napisów */
}

.carousel-item.active .carousel-caption {
    opacity: 1;
}

.carousel-item .carousel-caption {
    opacity: 0;
}

.carousel-control-prev, .carousel-control-next {
    z-index: 2; /* Przyciski nad tłem i napisami */
}
.plan-box {
    background: #1B2F34;
    /*linear-gradient(135deg, #2c2c2c, #3a3a3a);*/
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
}
.plan-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}
.plan-box h3 {
    color: #ffd700;
    font-weight: bold;
}
.plan-box h4 {
    color: #00ffcc;
    margin-top: 15px;
}
.form-control.is-invalid {
    border-color: #dc3545;
}
.btn-primary {
    background-color: #ffd700;
    border-color: #ffd700;
    color: #1a1a1a;
    font-weight: bold;
}
.btn-primary:hover {
    background-color: #e6c200;
    border-color: #e6c200;
}
.modal-content {
    background-color: #2c2c2c;
    color: #fff;
}
.modal-header, .modal-footer {
    border-color: #3a3a3a;
}
.footer {
    background-color: #1B2F34;
    color: #fff;
    padding: 20px 0;
    text-align: center;
    font-size: 0.9rem
}

.footer .container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer p {
    margin: 5px 0;
}

.footer .privacy-link {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer .privacy-link:hover {
    color: #0056b3;
    text-decoration: underline;
}
.alert-info {
    background-color: #1B2F34;
    border-color: #fff;
    color: #fff; /* Ciemniejszy tekst dla kontrastu */
    padding: 20px;
    border-radius: 8px;
    font-weight: bold
}
.dropdown-toggle{
    background-color: #1B2F34;
    color: #fff;
    border-color: #1B2F34
}
.dropdown-menu{
    background-color: #C6C7C8
}
.plan-box{
    display: flex;
    flex-direction: column;
    height: 100%;
}
h4.regular{
    text-decoration: line-through;
    color: #606e6b
}
h4:not(.regular){
    font-size: 30px
}
h4.promo-price{
    color: #ff0000;
    font-weight: bold;
}
h4.promo-price .peroid{
    font-size: 20px;
    margin: auto 0 auto 0;
    font-weight: normal;
}
.plan-box h4{
    margin-top: auto;
    display: flex;
    align-items: flex-start;
    justify-content: center
}
span.currency{
    font-size: 18px;
}
.strong{
    font-weight: bold
}
.form-check-label, .form-radio-label{
    cursor: pointer
}
.subscribers{
    font-size: 14px;
    color: #b3b3b3
}
.form-check-input,.form-control{
    background-color: #e5e5e5;
}
@media (max-width: 991px) {
    .navbar-collapse{
        text-align: right;
    }
    .navbar-toggler{
        margin-bottom: 8px
    }
}
@media (max-width: 991px) {

}
@media (max-width: 768px) {
    .col-md-4.plan{
        margin-bottom: 32px
    }
    .col-md-4.plan:last-of-type{
        margin-bottom: 0
    }
    
}