

/* Tlačidlá */
.btn {
    display: inline-block;
    padding: 0.65rem 1.4rem;
    border-radius: 8px;
    font-size: 1rem;
    transition: 0.25s ease;
    text-align: center;
}

.sr-only {
    position: absolute;
    left: -9999px;
}

.sr-only:focus {
    left: 10px;
    top: 10px;
    background: #fff;
    padding: 1rem;
    z-index: 10000;
    border-radius: 6px;
}


section {
    width: min(1200px, 100%);
}

.sekcia-popis {
    font-size: 1.15rem;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
}



@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --------------------------------------------------------------
   MODAL
----------------------------------------------------------------*/
.modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 200;
}

.modal-content {
    background: #fff;
    padding: 1.7rem;
    width: min(500px, 90%);
    border-radius: 14px;
    animation: fadeInUp 1s ease-out;
}

.modal-header h2 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
}

.modal-close {
    border: none;
    background: none;
    font-size: 1.7rem;
    float: right;
    cursor: pointer;
}

/* --------------------------------------------------------------
   FOOTER
----------------------------------------------------------------*/
footer {
    background: #3d2b12;
    color: #fff;
    padding: 2rem 0;
    margin-top: 3rem;
}

.footer-content {
    width: min(1200px, 92%);
    margin: auto;
    text-align: center;
}

.footer-content svg {
    margin-top: 1rem;
    width: 32px;
    height: 32px;
    fill: #fff;
    transition: 0.25s ease;
}

.footer-content svg:hover {
    transform: scale(1.15);
}
