* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    min-height: 100%;
    font-family: "Segoe UI", Arial, sans-serif;
    color: #1a1a1a;
}

/* A háttérkép külön rétegen, hogy az áttetszőség (50%) ne érintse a szöveget */
.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("background_04.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.9;
    z-index: -1;
}

header {
    display: flex;
    justify-content: flex-end;
    padding: 20px;
}

.lang-switch button {
    margin-left: 8px;
    padding: 8px 16px;
    border: 1px solid #444;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.2s;
}

.lang-switch button:hover {
    background: rgba(255, 255, 255, 0.95);
}

.lang-switch button.active {
    background: #1a1a1a;
    color: #fff;
    border-color: #1a1a1a;
}

main {
    max-width: 700px;
    margin: 80px auto;
    padding: 40px;
    text-align: center;
    background: rgba(255, 255, 255, 0.75);
    border-radius: 8px;
}

main h1 {
    font-size: 32px;
    margin-bottom: 20px;
}

main p {
    font-size: 18px;
    line-height: 1.6;
}

/* Kapcsolatfelvételi űrlap */
.contact-form {
    margin-top: 28px;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contact-form label {
    font-weight: bold;
    margin-top: 10px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #888;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
}

.contact-form button {
    margin-top: 18px;
    padding: 12px;
    border: none;
    border-radius: 4px;
    background: #1a1a1a;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.2s;
}

.contact-form button:hover {
    background: #0057b8;
}

/* Honeypot mező — embernek teljesen rejtve, csak bot tölti ki */
.hp {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* Visszajelző üzenetek */
.msg {
    margin-top: 20px;
    padding: 12px;
    border-radius: 4px;
    font-weight: bold;
}

.msg-ok {
    background: #e3f6e3;
    color: #1b6b1b;
}

.msg-error {
    background: #fdecea;
    color: #b3261e;
}

.copyright {
    margin-top: 16px;
    text-align: center;
    font-size: 13px;
    color: #555;
}
