/* fonts.css - úpravy a práce s fonty pro Sýrárnu pod Hazmburkem */

body {
    font-family: 'Segoe UI', 'Arial', sans-serif;
    font-size: 1.1rem;
    color: #222;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Allura', cursive, 'Pacifico', 'Segoe UI', sans-serif;
    letter-spacing: 0.5px;
    color: #d4a373;
}

/* Hlavní titulek stránky */
.main-title {
    font-family: 'Allura', cursive, 'Pacifico', 'Segoe UI', sans-serif;
    font-size: 4rem;
    color: #d4a373;
    font-weight: bold;
    letter-spacing: 2px;
}

.header-aktualne {
    /*
    font-family: 'Pacifico', cursive, 'Segoe UI', sans-serif;
    */
    font-size: 1.5rem;
    color: #fff;
    letter-spacing: 1px;
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    text-align: center;
}

.btn-custom, .btn {
    font-family: 'Segoe UI', 'Arial', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.aktualita-thumb {
    font-family: inherit;
}

/* Odkazy */
a {
    font-family: inherit;
    color: #d4a373;
    text-decoration: none;
    transition: color 0.2s;
}
a:hover, a:focus {
    color: #b6893c;
    text-decoration: underline;
}

/* Speciální sekce filozofie */
.philosophy {
    font-family: 'Allura', cursive, 'Pacifico', 'Segoe UI', sans-serif;
    font-size: 2.2rem;
    color: #d4a373;
    font-style: italic;
}


@media (max-width: 768px) {
    .main-title {
        color: black;
        font-size: 2rem;
    }
}