/* ======================
   IHNE STÍLUS
====================== */

body {
    background-color: #0b0f1a;
    color: #ffffff;
    font-family: 'Segoe UI', sans-serif;
}

/* HEADER */
.header {
    background: linear-gradient(90deg, #0a0a0a, #111827);
    border-bottom: 2px solid #d4af37; /* arany */
}

/* NAVBAR */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
}

/* LOGO */
.logo {
    height: 55px;
}

/* BRAND */
.brand-title {
    font-size: 18px;
    color: #d4af37;
    margin-left: 10px;
    letter-spacing: 1px;
}

/* MENU */
.nav-main {
    list-style: none;
    display: flex;
    gap: 25px;
}

.nav-main a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    transition: 0.3s;
}

.nav-main a:hover {
    color: #d4af37;
}

/* FOOTER */
.footer {
    background: #0a0a0a;
    text-align: center;
    padding: 20px;
    font-size: 14px;
    color: #888;
}

/* HÍREK GRID */
.news-container {
    max-width: 1200px;
    margin: 60px auto;
    padding: 20px;
}

.news-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    color: #d4af37;
}

/* GRID */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* KÁRTYA */
.news-card {
    background: #111827;
    border-radius: 12px;
    overflow: hidden;
    transition: 0.3s;
    border: 1px solid #222;
}

.news-card:hover {
    transform: translateY(-5px);
    border-color: #d4af37;
}

/* KÉP */
.news-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* TARTALOM */
.news-content {
    padding: 20px;
}

.news-content h2 {
    font-size: 20px;
    margin-bottom: 10px;
}

.news-content p {
    color: #aaa;
    font-size: 14px;
}

/* BUTTON */
.news-btn {
    display: inline-block;
    margin-top: 15px;
    color: #d4af37;
    text-decoration: none;
    font-weight: bold;
}
