/* ALAPOK */
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Segoe UI', Arial, sans-serif; color: #333; line-height: 1.6; }
.container { width: 90%; max-width: 1200px; margin: 0 auto; }

/* FEJLÉC JAVÍTÁSA */
header {
    background: #fff;
    padding: 10px 0;
    border-bottom: 3px solid #b38b59;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    font-size: 20px;
    font-weight: bold;
    color: #2c3e50;
}

#logo span { color: #b38b59; margin-left: 5px; }

.header-mini-logo {
    height: 40px;
    width: auto;
    margin-right: 10px;
    border-radius: 3px;
}

nav ul { display: flex; list-style: none; }
nav li { margin-left: 20px; }
nav a { text-decoration: none; color: #2c3e50; font-weight: 600; }
nav a:hover { color: #b38b59; }

/* TARTALOM */
#hero {
    height: 350px;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('kepek/hero-bg.jpg') no-repeat center/cover;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

section { padding: 50px 0; }
.section-title { text-align: center; margin-bottom: 30px; font-size: 28px; }

.info-image-container { max-width: 1000px; margin: 0 auto; box-shadow: 0 4px 10px rgba(0,0,0,0.1); }
.info-img { width: 100%; display: block; }

.support-link-wrapper { text-align: center; margin-top: 20px; }
.support-link {
    text-decoration: none;
    color: #b38b59;
    font-weight: bold;
    padding: 10px 20px;
    border: 2px solid #b38b59;
    border-radius: 5px;
}

footer { background: #2c3e50; color: #fff; padding: 20px 0; text-align: center; margin-top: 30px; }

/* MOBIL */
@media (max-width: 768px) {
    .header-flex { flex-direction: column; }
    nav ul { margin-top: 10px; }
}