/* ================================================
   BRATŘI SADAŘI BANNER
   ================================================ */
.footer-banner.col-lg-2 {
    width: 100%;
}

.bratri-banner {
    display: flex;
    position: relative;
    align-items: stretch;
    min-height: 500px;
    overflow: hidden;
}

/* ================================================
   LEVÁ STRANA - TEXT NA BÉŽOVÉM POZADÍ
   ================================================ */

.bratri-left-side {
    flex: 0 0 50%;
    width: 50%;
    min-width: 0;
    background-color: #fcf5f2;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 4rem 3rem;
}

/* Dekorace - šipky dolů vlevo nahoře */
.arrows-decoration {
    position: absolute;
    top: 2rem;
    left: 2rem;
    width: 30px;
    height: 90px;
    opacity: 0.8;
    z-index: 1;
}

.arrows-decoration svg {
    width: 100%;
    height: 100%;
}

/* Obsah */
.bratri-content {
    max-width: 500px;
    z-index: 2;
    position: relative;
    padding: 2rem;
}

.bratri-content h2 {
    font-size: 2.25rem;
    line-height: 2.75rem;
    font-weight: 700;
    color: #20421c;
    margin: 0 0 1.5rem 0;
}

.bratri-text {
    color: #20421c;
}

.bratri-text p {
    font-size: 1rem;
    line-height: 1.65rem;
    color: #20421c;
    margin: 0;
}

/* Speciální iniciála T */
.initial-letter {
    font-size: 3rem;
    line-height: 1;
    font-weight: 700;
    color: #20421c;
    float: left;
    margin-right: 0.3rem;
    margin-top: -0.2rem;
    font-family: krete, serif;
}

/* ================================================
   PRAVÁ STRANA - OBRÁZEK
   ================================================ */

.bratri-right-side {
    flex: 0 0 50%;
    width: 50%;
    min-width: 0;
    position: relative;
    overflow: hidden;
    background-color: #fcf5f2;
}

.bratri-right-side img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* ================================================
   DEKORATIVNÍ ORANŽOVÝ KRUH
   ================================================ */

.orange-circle-decoration {
    position: absolute;
    top: 2rem;
    left: 47%;
    transform: translateX(-50%);
    width: 8rem;
    height: 8rem;
    background-color: #E54F18;
    border-radius: 50%;
    z-index: 3;
}

/* ================================================
   RESPONZIVITA
   ================================================ */

/* Tablet */
@media screen and (max-width: 1024px) {
    .bratri-banner {
        min-height: 450px;
    }

    .bratri-left-side {
        padding: 3rem 2.5rem;
    }

    .bratri-content h2 {
        font-size: 2rem;
        line-height: 2.5rem;
    }

    .initial-letter {
        font-size: 2.5rem;
    }

    .orange-circle-decoration {
        width: 8rem;
        height: 8rem;
        top: -3.5rem;
    }

    .arrows-decoration {
        top: 1.5rem;
        left: 1.5rem;
        width: 35px;
        height: 85px;
    }
}

/* Mobil */
@media screen and (max-width: 768px) {
    .bratri-banner {
        flex-direction: column;
        min-height: auto;
    }

    .bratri-left-side,
    .bratri-right-side {
        flex: 1 1 auto;
        width: 100%;
    }

    .bratri-left-side {
        order: 2;
        padding: 2.5rem 1.5rem;
    }

    .bratri-right-side {
        order: 1;
        min-height: 350px;
    }

    .bratri-content h2 {
        font-size: 1.75rem;
        line-height: 2.2rem;
        margin-bottom: 1.25rem;
    }

    .bratri-text p {
        font-size: 0.95rem;
        line-height: 1.6rem;
    }

    .initial-letter {
        font-size: 2.25rem;
    }

    .orange-circle-decoration {
        width: 6rem;
        height: 6rem;
        top: -3rem;
        left: 50%;
    }

    .arrows-decoration {
        top: 1rem;
        left: 1rem;
        width: 30px;
        height: 75px;
    }
}

/* Malý mobil */
@media screen and (max-width: 480px) {
    .bratri-left-side {
        padding: 2rem 1.25rem;
    }

    .bratri-right-side {
        min-height: 100px;
    }

    .bratri-content h2 {
        font-size: 1.5rem;
        line-height: 2rem;
    }

    .bratri-text p {
        font-size: 0.9rem;
        line-height: 1.5rem;
    }

    .initial-letter {
        font-size: 2rem;
    }

    .orange-circle-decoration {
        width: 5rem;
        height: 5rem;
        top: -2.5rem;
    }

    .arrows-decoration {
        width: 25px;
        height: 65px;
        top: 0.75rem;
        left: 0.75rem;
    }
}