/* Nabídka bytů - Image Section */
.nabidka_obrazek_sekce {
    width: 100%;
    height: 293px;
    background-image: url('/img/prostredni-obrazek-homepage.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    justify-content: center;
}

.nabidka_obrazek_container {
    width: 100%;
    max-width: 1440px;
    height: 293px;
    position: relative;
}

.nabidka_hlavni_obrazek {
    width: 100%;
    max-width: 1440px;
    height: 293px;
    object-fit: cover;
    display: block;
    margin: 0 auto;
}

.nabidka_map_pin_velky {
    position: absolute;
    bottom: 121px;
    right: 453px;
}

.nabidka_obrazek_text {
    position: absolute;
    width: 502px;
    height: 61px;
    top: 50%;
    transform: translateY(-50%);
    left: 118px;
    opacity: 1;
    font-family: Roboto;
    font-weight: 700;
    font-style: normal;
    font-size: 52px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #FFFFFF;
    margin: 0;
    padding: 0;
}

/* Nabídka bytů - Filter Section */
.nabidka_filtr_sekce {
    width: 100%;
    padding: 60px 20px 0 20px;
    background-color: #F6F2F0;
    display: flex;
    justify-content: center;
}

.nabidka_filtr_container {
    width: 1200px;
    max-width: 100%;
    margin: 0 auto;
}

.nabidka_filtr_nadpis {
    font-family: Roboto, sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 32px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #0B3D77;
    margin: 0 0 40px 0;
    text-align: left;
}

.nabidka_filtr_panel {
    background-color: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    display: flex;
    align-items: center;
    gap: 30px;
    height: auto;
    box-sizing: border-box;
}

.nabidka_filtr_input {
    width: 200px;
    height: 50px;
    padding: 12px 15px;
    border: 1px solid #F6F2F0;
    border-radius: 5px;
    font-family: Roboto, sans-serif;
    font-size: 16px;
    color: #0B3D77;
    background-color: #FFFFFF;
    appearance: none;
    background-image: url('/img/ikony/sipka_filtr.svg');
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
    padding-right: 40px;
    cursor: pointer;
    box-sizing: border-box;
}

.nabidka_filtr_input:focus {
    outline: none;
    border-color: #4CA7DD;
}

/* Nabídka bytů - Apartment Listing Section */
.nabidka_byty_sekce {
    width: 100%;
    padding: 60px 20px;
    background: linear-gradient(to bottom, #F6F2F0 0px, #F6F2F0 200px, #FFFFFF 200px, #FFFFFF 100%);
    display: flex;
    justify-content: center;
}

.nabidka_byty_container {
    width: 1200px;
    max-width: 100%;
}

.byty_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.byty_grid .byt_karta {
    text-decoration: none;
}

/* Pagination */
.pagination_wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-top: 60px;
    position: relative;
}

.pagination_button {
    background-color: #4CA7DD;
    color: #FFFFFF;
    width: 150px;
    height: 50px;
    border-radius: 10px;
    border: none;
    font-family: Roboto, sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination_button:hover {
    background-color: #3a8fc7;
}

.pagination_numbers {
    display: flex;
    gap: 15px;
    align-items: center;
    position: absolute;
    right: 0;
}

.page_number {
    font-family: Roboto, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 23px;
    letter-spacing: 0%;
    color: #0B3D77;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.page_number:hover {
    opacity: 0.7;
}

.page_number.active {
    font-weight: 700;
}

/* Responsive */
@media (max-width: 768px) {
    .nabidka_obrazek_sekce {
        height: auto;
    }
    
    .nabidka_hlavni_obrazek {
        height: 200px;
    }
    
    .nabidka_filtr_sekce {
        padding: 40px 20px;
    }
    
    .nabidka_filtr_nadpis {
        font-size: 24px;
        margin: 0 0 30px 0;
    }
    
    .nabidka_filtr_panel {
        flex-direction: column;
        height: auto;
        gap: 12px;
        padding: 20px;
    }
    
    .nabidka_filtr_input {
        width: 100%;
    }
}
