/* Przycisk "DZWOŃ" */
#call-us {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ff6600;
    z-index: 2;
    font-size: 30px;
    line-height: 1;
}

/* Tekst na slajdach */
.slide-text {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 40px;
}

/* Zadowoleni klienci */
#good-customers {
    background-color: #333333;
}

/* Belka "SKORZYSTAJ Z NAJNOWSZYCH PROMOCJI" */
#banner-sale .content {
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
    height: 100%;
    font-size: 3.5vw;
}
#banner-sale .content span {
    color: #ff6600 !important;
    -webkit-text-stroke: white 1px;
}
@media screen and (min-width: 1801px) {
    #banner-sale .content {
        font-size: 60px;
    }
}

/* Belka "BEZ PROBLEMU..." */
#banner-noproblem .content {
    width: 100% !important;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
    height: 100%;
    font-size: 3.5vw;
    color: #17223d !important;
    -webkit-text-stroke: white 1px;
}
@media screen and (min-width: 1801px) {
    #banner-noproblem .content {
        font-size: 60px;
    }
}

/* Mapa */
#map-container {
    line-height: 1.3;
    font-size: 20px;
}
#map-container iframe {
    height: 400px;
    width: 100%;
}

/* Opinie Google */
#google-reviews iframe {
    background-color: white;
}

/* Kontakt */
#contact .content {
    width: 800px !important;
}
#top-text {
    font-size: 20px;
    line-height: 1.8;
}

/* Formularz kontaktowy */
form input:not([type=submit]), form textarea {
    width: 100%;
    border: none;
    color: #17223d;
    text-align: center;
}
form input:not([type=submit])::placeholder, form textarea::placeholder {
    color: #17223d;
}
form input[type=submit] {
    background: rgb(23,34,61);
    background: linear-gradient(to right, transparent 0, transparent 10%, rgba(255,102,0,1) 10%, rgba(255,102,0,1) 90%, transparent 90%, transparent);
    color: white;
    font-size: 30px;
    border: none;
}

/* Przycisk "DZWOŃ" pod formularzem */
#call-us-2 {
    background-color: #ff6600;
    font-size: 30px;
    line-height: 1;
}

/* Odwracalne karty */
.flip-card {
    background-color: transparent;
    perspective: 1000px;
    width: 30%;
    height: 300px;
}
.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}
.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}
.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden; /* Safari */
    backface-visibility: hidden;
}
.flip-card-front, .flip-card-back {
    display: flex;
    justify-content: center;
    align-items: center;
}
.flip-card-front {
    font-size: 1.7vw;
}
.flip-card-back {
    background-color: #ff6600;
    transform: rotateY(180deg);
}

/* Podpis pod galerią */
#see-gallery {
    font-size: 35px;
    text-align: right;
    cursor: pointer;
}
#see-gallery:hover {
    text-decoration: underline;
}

/* Zdjęcia w galerii */
.lb-image {
    max-height: 80vh !important;
    width: initial !important;
}
@media screen and (orientation: portrait) {
    .lb-image {
        max-width: 80vw;
        height: initial;
    }
}