/* ======================
   IHNE STÍLUS (CLEAN)
====================== */

:root {
    --ihne-blue: #003087;
    --ihne-dark-blue: #001f4d;
    --ihne-gold: #d4af77;
    --ihne-light-gold: #f5e8c7;
}

/* RESET – csak ami kell */
* {
    box-sizing: border-box;
    font-family: 'Courier Prime', 'Courier New', Courier, monospace !important;
}

body {
    margin: 0;
    background: #f8f9fa;
    color: #222;
    font-size: 18px;
}

/* ======================
   HEADER
====================== */

.header {
    position: sticky;
    top: 0;
    z-index: 9999;
    width: 100%;
    background: linear-gradient(135deg, var(--ihne-dark-blue), var(--ihne-blue));
    box-shadow: 0 4px 15px rgba(0, 48, 135, 0.3);
}

/* ======================
   NAVBAR
====================== */

.navbar {
    background: linear-gradient(135deg, #001f4d, #003087);
    width: 100%;
    padding: 10px 20px;
}

/* FLEX BELÜL */
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LOGÓ */
.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo {
    height: 55px;
}

.brand-title {
    font-size: 16px;
    color: var(--ihne-gold);
}

/* ======================
   MENÜ
====================== */

.nav-main {
    display: flex;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-main li a {
    color: var(--ihne-gold);
    text-decoration: none;
    font-weight: bold;
    white-space: nowrap;
    transition: 0.3s;
}

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

/* ======================
   HAMBURGER
====================== */

.menu-toggle {
    display: none;
    font-size: 24px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}

/* ======================
   HÍREK (SAFE)
====================== */

.news-container {
    max-width: 1200px;
    margin: 60px auto;
    padding: 20px;
}

.news-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    color: var(--ihne-gold);
}

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

.news-card {
    background: #111827;
    border-radius: 12px;
    border: 1px solid #222;
    transition: 0.3s;
}

.news-card:hover {
    transform: translateY(-5px);
    border-color: var(--ihne-gold);
}

.news-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.news-content {
    padding: 20px;
}

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

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

.news-btn {
    display: inline-block;
    margin-top: 15px;
    color: var(--ihne-gold);
    text-decoration: none;
    font-weight: bold;
}

/* ======================
   SZOLGÁLTATÁS GRID
====================== */

.box.box-landing-1 .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.box.box-landing-1 .col-md-4 {
    width: 33.333%;
    padding: 15px;
}

@media (max-width: 992px) {
    .box.box-landing-1 .col-md-4 {
        width: 50%;
    }
}

@media (max-width: 600px) {
    .box.box-landing-1 .col-md-4 {
        width: 100%;
    }
}

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

.footer {
    background: var(--ihne-blue);
    color: white;
    text-align: center;
    padding: 2rem;
}

/* ======================
   FONT AWESOME FIX
====================== */

.fa,
.fa:before,
.fas,
.fas:before,
.far,
.far:before,
.fab,
.fab:before,
[class^="fa-"]:before,
[class*=" fa-"]:before {
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
}

/* ======================
   MOBIL
====================== */

@media (max-width: 768px) {

    .menu-toggle {
        display: block;
    }

    .nav-main {
        display: none;
        flex-direction: column;

        position: absolute;
        top: 100%;
        left: 0;

        width: 100%;
        background: #001f4d;

        padding: 15px;
        z-index: 9999;
    }

    .nav-main.active {
        display: flex;
    }
}

