
body, html {
    margin: 0;
    padding: 0;
    min-height: 100%;
    box-sizing: border-box;
}

body {
    display: flex;
    flex-direction: column;
}

.container {
    flex: 1;
    position: relative; /* Důležité pro správné vrstvení obsahu */
    z-index: 1;
}

/* Header */
header {
    margin-top: 0;
    margin-bottom: 10px;
    position: sticky;
    top: 0;
    z-index: 1020;
    background-color: white;
}
/* Footer */
.footer {
    background-color: white;
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 1020;
    height: 60px;
}

.footer-katalog{
    background-color: white;
    bottom: 0;
    width: 100%;
    z-index: 1020;
}

.content {
    padding-bottom: 60px;
}

/* Dropdown menu */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 160px;
    z-index: 1050; /* Zvýšený z-index pro dropdown */
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background-color: #ddd;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown:hover .dropbtn {
    background-color: #3e8e41;
}

/* Obrázky v kartách */
img.karta-obrazek {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

/* Styl pro tlačítka */
.btn-orange {
    background-color: #ffb972;
    color: #ff6700;
}

.btn-orange:hover {
    background-color: #ff6700;
    color: #ffb972;
}

.btn-orange-dark:hover {
    background-color: #ffb972;
    color: #ff6700;
}

.btn-orange-dark {
    background-color: #ff6700;
    color: #ffb972;
}

.btn-pink:hover {
    background-color: #ffcbd2;
    color: #ff5588;
}

.btn-pink {
    background-color: #ff5588;
    color: #ffcbd2;
}
.btn-white {
    background-color: white;
    color: #ff6700;
}
.btn-white:hover {
    background-color: #ff6700;
    color: white;
}
.btn-white-on {
    background-color: #ff6700;
    color: white;
}
.btn-white-on:hover {
    background-color: white;
    color: #ff6700;
}

.pink {
    color: #ffcbd2;
}

.orange {
    color: #ff6700;
}

.pink-dark {
    color: #ff5588;
}

.pink:hover {
    color: #ffcbd2;
}

.bg-pink {
    background-color: #ffcbd2;
}

.bg-orange {
    background-color: #ffb972;
    margin: 5px;
}

.bg-light-pink {
    background-color: #ffeeee;
}

.bg-grey {
    background-color: lightgray;
}

/* Poznámky */
.poznamka {
    font-size: x-small;
    color: gray;
    text-align: right;
}

.poznamka2 {
    font-size: x-small;
    color: gray;
    text-align: left;
}

.nadpis {
    color: whitesmoke;
    font-size: 64px;
    font-weight: bold;
    letter-spacing: 2px;
}

.info-bubble {
    background-color: #f8f9fa; /* světle šedé pozadí */
    color: #6c757d; /* šedý text */
    font-size: 0.9rem;
    padding: 2px 8px;
    border-radius: 12px;
    display: inline-block;
    margin-bottom: 4px;
}

.vitaci-karta{
    position: absolute;
    border-radius: 10px;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255,255,255,0.6);
}
.karta {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    color: black;
    min-height: 350px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.uvodni-blok {
    padding: 40px 0; /* Odsazení uvnitř bloku, aby vypadal vzdušněji */
    display: flex;
    justify-content: center;
    align-items: center;
    /* Nastavuje minimální výšku bloku na výšku viditelné plochy (100vh) minus výšku headeru a footeru (200px).
   Zajišťuje, že blok bude vždy vycentrovaný mezi headerem a footerem, i při změně velikosti okna. */
    min-height: calc(100vh - 200px); /* Přizpůsobení pro dynamický prostor */
}

.vitaci-karta {
    position: absolute;
    border-radius: 10px;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255,255,255,0.6);
    z-index: 1;
}

.karta-text {
    position: relative;
    z-index: 2;
    color: black;
    font-weight: bold;
}

.karta-btns {
    gap: 20px;
    margin: 0 0 10px 0; /* při kolizi nebudou nalepený na obrázek */
}

.karta-btn {
    padding: 20px;
    font-size: 20px;
    font-weight: bold;
    border-radius: 15px;
    text-align: center;
}


.blok {
    border-radius: 10px;
}