html,
body {
    height: 100%;
    margin: 0;
}

body {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Vrstva pro rozostřené pozadí kláštera */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/background/broumovsky_klaster_letecky.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(6px) brightness(0.45);
    transform: scale(1.05);
    z-index: -1;
}

main {
    flex: 1 0 auto;
    display: flex;
    align-items: center;
}

footer {
    flex-shrink: 0;
}

/* Karta pro hlavní obsah a nadpisy */
.hero-card {
    background-color: rgba(255, 255, 255, 0.92);
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

/* Hover efekt a styl pro karty kandidátů */
.candidate-card {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    border: 2px solid #e9ecef;
    background-color: rgba(255, 255, 255, 0.95);
}

.candidate-card:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15) !important;
    border-color: #dc3545;
}

.candidate-img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    object-position: top center;
}

.leader-card-web {
    transform: scale(1.05);
    z-index: 5;
}

/* Nastavení vysouvacího mobilního menu zprava */
@media(max-width:991.98px) {
    .offcanvas-end {
        width: 280px !important;
    }
}

.extra-small {
    font-size: 0.78rem;
}