body {
    margin: 0;
    font-family: Arial, sans-serif;
    background:
        linear-gradient(rgba(2, 8, 20, 0.92), rgba(2, 8, 20, 0.96)),
        url("background.jpg");

    background-size: cover;
    background-position: center;
    background-attachment: fixed;

    color: white;
    overflow-x: hidden;
}

/* =========================
   NAVBAR
========================= */

.navbar {
    position: fixed;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);

    width: 72%;
    padding: 14px 25px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    background: rgba(5, 15, 35, 0.88);

    border: 2px solid #1e90ff;
    border-radius: 14px;

    box-shadow:
        0 0 15px rgba(30,144,255,0.5),
        0 0 40px rgba(30,144,255,0.15);

    backdrop-filter: blur(8px);

    z-index: 1000;

    animation: navbarDrop 0.7s ease;
}

.logo-box {
    display: flex;
    align-items: center;
    gap: 14px;
}

.logo-box img {
    width: 42px;
    height: 42px;
    object-fit: contain;

    filter: drop-shadow(0 0 5px #facc15);
}

.logo-text {
    color: #facc15;
    font-weight: bold;
    font-size: 18px;
    letter-spacing: 1px;
    line-height: 1.1;
}

.logo-text span {
    display: block;
    color: #cbd5e1;
    font-size: 11px;
    font-weight: normal;
}

/* =========================
   MENU
========================= */

.menu {
    display: flex;
    gap: 28px;
}

.menu a {
    color: white;
    text-decoration: none;
    position: relative;
    transition: 0.3s;
    font-size: 15px;
}

.menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;

    width: 0%;
    height: 2px;

    background: #1e90ff;

    transition: 0.3s;
}

.menu a:hover {
    color: #60a5fa;
}

.menu a:hover::after {
    width: 100%;
}

/* =========================
   HERO
========================= */

.hero {
    width: 85%;
    margin: 170px auto 100px auto;

    display: flex;
    align-items: center;

    min-height: 420px;
}

.hero-content {
    max-width: 700px;
}

.hero-small {
    color: #d1d5db;
    font-size: 18px;
    margin-bottom: 10px;
}

.hero h1 {
    font-size: 75px;
    margin: 0;
    line-height: 1;

    color: white;
}

.hero h1 span {
    color: #3b82f6;

    text-shadow:
        0 0 15px rgba(59,130,246,0.7);
}

.hero-desc {
    margin-top: 30px;

    color: #d1d5db;

    font-size: 28px;
    line-height: 1.5;

    max-width: 750px;
}

/* =========================
   HERO LINKEK
========================= */

.hero-links {
    margin-top: 40px;

    display: flex;
    gap: 35px;
}

.hero-links a {
    color: #3b82f6;
    text-decoration: none;

    font-size: 24px;
    font-weight: bold;

    transition: 0.3s;
}

.hero-links a:hover {
    transform: translateX(5px);
    color: #60a5fa;
}

/* =========================
   KÁRTYÁK
========================= */

.home-cards {
    width: 85%;

    margin: auto;
    margin-bottom: 80px;

    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 35px;
}

.home-card {
    background: rgba(7, 20, 40, 0.92);

    border: 1px solid rgba(59,130,246,0.25);
    border-left: 4px solid #3b82f6;

    border-radius: 16px;

    padding: 35px;

    box-shadow:
        0 0 25px rgba(0,0,0,0.4),
        0 0 20px rgba(59,130,246,0.08);

    transition: 0.3s;
}

.home-card:hover {
    transform: translateY(-8px);

    box-shadow:
        0 0 25px rgba(59,130,246,0.2),
        0 0 50px rgba(59,130,246,0.1);
}

.card-icon {
    width: 70px;
    height: 70px;

    border-radius: 50%;

    background: rgba(59,130,246,0.18);

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 28px;

    margin-bottom: 20px;

    color: #60a5fa;
}

.home-card h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.home-card p {
    color: #d1d5db;

    line-height: 1.7;
    font-size: 22px;
}

.home-card a {
    display: inline-block;

    margin-top: 30px;

    color: #3b82f6;
    text-decoration: none;

    font-size: 22px;
    font-weight: bold;

    transition: 0.3s;
}

.home-card a:hover {
    transform: translateX(5px);
    color: #60a5fa;
}

/* =========================
   FOOTER
========================= */

footer {
    text-align: center;

    padding: 35px;

    border-top: 1px solid rgba(255,255,255,0.08);

    color: #cbd5e1;

    font-size: 17px;
}

/* =========================
   ANIMÁCIÓ
========================= */

@keyframes navbarDrop {

    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

/* =========================
   RESZPONZÍV
========================= */

@media(max-width: 1200px) {

    .home-cards {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 55px;
    }

    .hero-desc {
        font-size: 22px;
    }
}

@media(max-width: 900px) {

    .navbar {
        width: 92%;
        flex-direction: column;
        gap: 20px;
    }

    .menu {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero {
        margin-top: 240px;
    }

    .hero h1 {
        font-size: 42px;
    }

    .hero-desc {
        font-size: 18px;
    }

    .hero-links a {
        font-size: 18px;
    }

    .home-card h2 {
        font-size: 30px;
    }

    .home-card p {
        font-size: 18px;
    }
}

/* =========================
   AKADÉMIA
========================= */

.academy-grid {

    width: 85%;
    margin: auto;
    margin-bottom: 80px;

    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 35px;
}

.academy-card {

    background: rgba(7, 20, 40, 0.92);

    border: 1px solid rgba(59,130,246,0.25);
    border-left: 4px solid #3b82f6;

    border-radius: 16px;

    padding: 35px;

    box-shadow:
        0 0 25px rgba(0,0,0,0.4),
        0 0 20px rgba(59,130,246,0.08);

    transition: 0.3s;
}

.academy-card:hover {

    transform: translateY(-8px);

    box-shadow:
        0 0 25px rgba(59,130,246,0.2),
        0 0 50px rgba(59,130,246,0.1);
}

.academy-icon {

    width: 70px;
    height: 70px;

    border-radius: 50%;

    background: rgba(59,130,246,0.18);

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 30px;

    margin-bottom: 20px;
}

.academy-card h2 {

    font-size: 36px;
    margin-bottom: 20px;
}

.academy-card p {

    color: #d1d5db;

    line-height: 1.7;
    font-size: 19px;
}

.academy-card ul {

    padding-left: 20px;
    color: #d1d5db;

    line-height: 2;
    font-size: 18px;
}

.academy-button {

    display: inline-block;

    margin-top: 25px;

    color: #3b82f6;
    text-decoration: none;

    font-size: 20px;
    font-weight: bold;

    transition: 0.3s;
}

.academy-button:hover {

    transform: translateX(5px);
    color: #60a5fa;
}

.page-hero {
    width: 85%;
    margin: 170px auto 50px auto;
}

.page-hero p {
    color: #60a5fa;
    font-size: 20px;
    font-weight: bold;
}

.page-hero h1 {
    font-size: 70px;
    margin: 0;
    color: white;
}

.page-hero span {
    color: #cbd5e1;
    font-size: 22px;
}

.info-section {
    width: 85%;
    margin: 0 auto 80px auto;
}

.info-card {
    background: rgba(7, 20, 40, 0.92);
    border-left: 4px solid #3b82f6;
    border-radius: 16px;
    padding: 35px;
    box-shadow: 0 0 25px rgba(59,130,246,0.12);
}

.info-card h2 {
    color: #facc15;
    font-size: 34px;
}

.info-card p {
    color: #d1d5db;
    font-size: 20px;
    line-height: 1.7;
}

/* =========================
   IGAZGATÓSÁG
========================= */

.leaders-section {

    width: 85%;
    margin: auto;
    margin-bottom: 80px;

    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 35px;
}

.leader-card {

    position: relative;

    background: rgba(7, 20, 40, 0.92);

    border: 1px solid rgba(59,130,246,0.22);

    border-radius: 18px;

    overflow: hidden;

    padding: 40px 30px;

    text-align: center;

    transition: 0.35s;

    box-shadow:
        0 0 25px rgba(0,0,0,0.4),
        0 0 20px rgba(59,130,246,0.08);
}

.leader-card:hover {

    transform: translateY(-10px);

    box-shadow:
        0 0 30px rgba(59,130,246,0.22),
        0 0 60px rgba(59,130,246,0.12);
}

.leader-top {

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 5px;

    background: linear-gradient(90deg,
    #1d4ed8,
    #60a5fa,
    #1d4ed8);
}

.leader-rank {

    width: 95px;
    height: 95px;

    object-fit: contain;

    margin-top: 10px;
    margin-bottom: 25px;

    filter: drop-shadow(0 0 12px rgba(59,130,246,0.45));
}

.leader-card h2 {

    font-size: 38px;

    margin: 0;

    color: white;
}

.leader-card h3 {

    margin-top: 12px;
    margin-bottom: 22px;

    color: #facc15;

    font-size: 24px;
    font-weight: normal;
}

.leader-card p {

    color: #cbd5e1;

    font-size: 18px;

    line-height: 1.7;
}

/* =========================
   RESZPONZÍV
========================= */

@media(max-width: 1200px) {

    .leaders-section {

        grid-template-columns: 1fr;
    }
}

/* =========================
   EGYSÉGEK
========================= */

.units-grid {

    width: 85%;
    margin: auto;
    margin-bottom: 80px;

    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 35px;
}

.unit-card {

    position: relative;

    background: rgba(7, 20, 40, 0.92);

    border: 1px solid rgba(59,130,246,0.18);

    border-radius: 18px;

    overflow: hidden;

    padding: 35px;

    transition: 0.35s;

    box-shadow:
        0 0 25px rgba(0,0,0,0.4),
        0 0 20px rgba(59,130,246,0.08);
}

.unit-card:hover {

    transform: translateY(-8px);

    box-shadow:
        0 0 30px rgba(59,130,246,0.2),
        0 0 60px rgba(59,130,246,0.12);
}

.unit-line {

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 4px;

    background: linear-gradient(90deg,
    #1d4ed8,
    #60a5fa,
    #1d4ed8);
}

.unit-card h2 {

    margin-top: 10px;
    margin-bottom: 20px;

    font-size: 38px;

    color: white;
}

.unit-card p {

    color: #cbd5e1;

    font-size: 19px;

    line-height: 1.7;
}

/* =========================
   RESZPONZÍV
========================= */

@media(max-width: 1200px) {

    .units-grid {

        grid-template-columns: 1fr;
    }
}

/* =========================
   HÍREK
========================= */

.news-section {

    width: 85%;
    margin: auto;
    margin-bottom: 80px;

    display: flex;
    flex-direction: column;

    gap: 35px;
}

.modern-news-card {

    position: relative;

    background: rgba(7, 20, 40, 0.92);

    border: 1px solid rgba(59,130,246,0.18);

    border-radius: 18px;

    overflow: hidden;

    padding: 35px;

    transition: 0.35s;

    box-shadow:
        0 0 25px rgba(0,0,0,0.4),
        0 0 20px rgba(59,130,246,0.08);
}

.modern-news-card:hover {

    transform: translateY(-5px);

    box-shadow:
        0 0 30px rgba(59,130,246,0.2),
        0 0 60px rgba(59,130,246,0.12);
}

.news-top-line {

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 4px;

    background: linear-gradient(90deg,
    #1d4ed8,
    #60a5fa,
    #1d4ed8);
}

.modern-news-date {

    color: #60a5fa;

    font-size: 15px;

    margin-bottom: 18px;

    letter-spacing: 1px;
}

.modern-news-title {

    color: white;

    font-size: 34px;
    font-weight: bold;

    margin-bottom: 22px;
}

.modern-news-text {

    color: #cbd5e1;

    font-size: 19px;

    line-height: 1.8;
}

/* =========================
   ELÉRHETŐSÉG
========================= */

.contact-box {

    margin-top: 40px;

    padding-top: 30px;

    border-top: 1px solid rgba(255,255,255,0.08);
}

.contact-box h2 {

    color: #facc15;

    font-size: 32px;

    margin-bottom: 25px;
}

.contact-item {

    display: flex;
    flex-direction: column;

    gap: 10px;
}

.contact-item span {

    color: #cbd5e1;

    font-size: 18px;
}

.contact-item a {

    color: #60a5fa;

    text-decoration: none;

    font-size: 20px;
    font-weight: bold;

    transition: 0.3s;
}

.contact-item a:hover {

    color: #93c5fd;

    transform: translateX(5px);
}