/* ================== ALAP ================== */

body {
    margin: 0;
    font-family: 'Cinzel', serif;
    font-weight: 500;
    letter-spacing: 0.03em;
    line-height: 1.6;
    color: #3b2f2f;
    background-color: #efe6d8;
    overflow-x: hidden;
}


/* finom, absztrakt háttér – stabil verzió */
/* sötétebb, melegebb absztrakt háttér */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    background:
        radial-gradient(900px 900px at 18% 22%, rgba(110,70,160,0.38), transparent 60%),
        radial-gradient(850px 850px at 82% 30%, rgba(170,90,160,0.34), transparent 65%),
        radial-gradient(1100px 1100px at 50% 88%, rgba(90,60,140,0.32), transparent 70%);
    z-index: -1;
    pointer-events: none;
}


body {
    position: relative;
}

/* ================== TOPBAR ================== */

.topbar {
    position: sticky;
    top: 0;
    background: rgba(239,230,216,0.95);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    z-index: 100;
}

.brand {
    font-size: 0.9em;
    letter-spacing: 0.14em;
    white-space: nowrap;
}

/* nyelvváltó */
.lang-switch {
    display: flex;
    gap: 8px;
}

.lang-switch button {
    background: transparent;
    border: 1px solid #8b5e3c;
    color: #3b2f2f;
    padding: 4px 8px;
    border-radius: 6px;
    font-family: 'Cinzel', serif;
    letter-spacing: 0.08em;
    cursor: pointer;
}

.lang-switch button.active {
    background: #8b5e3c;
    color: #fff;
}

/* ================== NAV ================== */

.nav {
    display: flex;
    gap: 20px;
}

.nav a {
    text-decoration: none;
    color: #3b2f2f;
    font-size: 0.85em;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

/* hamburger */
.burger {
    display: none;
    font-size: 1.8em;
    cursor: pointer;
    position: relative;
    z-index: 200;
}

/* ================== HERO ================== */

.hero {
    text-align: center;
    padding: 60px 20px;
}

.hero h1 {
    font-size: 3.2em;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

/* ================== SZEKCIÓK ================== */

.section {
    max-width: 1100px;
    margin: auto;
    padding: 40px 20px;
}

h1, h2, h3 {
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

/* ================== TERMÉKEK ================== */

.produkt-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.produkt {
    background: #f7f1e8;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.produkt img {
    width: 100%;
    border-radius: 10px;
}

.preis {
    display: block;
    font-weight: bold;
    margin: 10px 0;
}

/* ================== GOMBOK ================== */

button {
    background: #8b5e3c;
    color: #fff;
    border: none;
    padding: 10px 18px;
    border-radius: 25px;
    font-family: 'Cinzel', serif;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
}

button:hover {
    background: #734a2d;
}

/* ================== ŰRLAP ================== */

form {
    max-width: 500px;
    margin: auto;
}

input,
textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 12px;
    border-radius: 8px;
    border: 1px solid #ccc;
}

/* ================== KONTAKT ================== */

.kontakt {
    text-align: center;
}

.kontakt-text {
    max-width: 650px;
    margin: 0 auto 30px;
}

.kontakt-form {
    background: #f7f1e8;
    padding: 30px;
    border-radius: 14px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

/* ================== FOOTER ================== */

.footer {
    text-align: center;
    padding: 30px;
    font-size: 0.9em;
}

/* ================== SZÖVEG ================== */

p {
    letter-spacing: 0.04em;
    text-transform: none;
}

/* ================== MOBIL (AZ EGYETLEN!) ================== */

@media (max-width: 768px) {

    .burger {
        display: block;
    }

    .nav {
        display: none;
        position: fixed;
        top: 64px;
        left: 0;
        width: 100%;
        background: #efe6d8;
        flex-direction: column;
        text-align: center;
        padding: 20px 0;
        z-index: 150;
    }

    .nav.open {
        display: flex;
    }

    .lang-switch {
        gap: 6px;
    }

    .lang-switch button {
        font-size: 0.7em;
        padding: 3px 6px;
    }

    .hero h1 {
        font-size: 2.2em;
        letter-spacing: 0.1em;
    }
}

/* anchor scroll */
section {
    scroll-margin-top: 90px;
}
