/* Globális tipográfiai beállítások */
body {
    font-family: var(--menu-font), sans-serif;
    line-height: 1.6;
    font-size: 16px;
    color: var(--text-color);
}

/* Fejléc stílusok */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--menu-font), sans-serif;
    color: var(--header-color);
    margin-bottom: var(--spacing-sm);
    line-height: 1.2;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

/* Szöveg elemek */
p {
    margin-bottom: var(--spacing-md);
}

small {
    font-size: 0.8rem;
    color: var(--allergen-color);
}

/* Hivatkozások */
a {
    color: var(--brand-color);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--primary-hover);
    text-decoration: underline;
}

/* Kiemelt szövegek */
.highlight {
    font-weight: bold;
    color: var(--brand-color);
}

/* Oldal tartalom fade-in */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

main { animation: fadeInUp 0.4s ease-out; }

/* Mobilon kisebb betűméretek */
@media (max-width: 768px) {
    body {
        font-size: 14px;
    }

    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }
    h4 { font-size: 1.25rem; }
    h5 { font-size: 1rem; }
    h6 { font-size: 0.9rem; }
}