/* ============================================================
   CSS VÁLTOZÓK
   ============================================================ */
:root {
    --dc-blue-900: #003b71;
    --dc-blue-800: #004f94;
    --dc-blue-700: #0067b8;
    --dc-blue-100: #e8f2fb;
    --dc-gray-950: #111827;
    --dc-gray-700: #374151;
    --dc-gray-600: #4b5563;
    --dc-gray-300: #d1d5db;
    --dc-gray-200: #e5e7eb;
    --dc-gray-100: #f3f4f6;
    --dc-white: #ffffff;
    --dc-shadow-soft: 0 10px 28px rgba(17, 24, 39, 0.08);
    --dc-shadow-medium: 0 18px 42px rgba(17, 24, 39, 0.12);
    --dc-radius-xl: 24px;
    --dc-page-max-width: 1180px;
}


/* ============================================================
   ALAP RESET
   ============================================================ */
* {
    box-sizing: border-box;
}

html {
    min-height: 100%;
    font-size: 16px;
}

body {
    min-height: 100vh;
    margin: 0;
    font-family: "Segoe UI", Arial, sans-serif;
    color: var(--dc-gray-950);
    background: linear-gradient(180deg, #f7fbff 0%, #ffffff 42%, #f9fafb 100%);
    display: flex;
    flex-direction: column;
}

a {
    color: inherit;
}


/* ============================================================
   HEADER
   ============================================================ */
.dc-header {
    flex: 0 0 auto;
    background: var(--dc-white);
    border-bottom: 1px solid var(--dc-gray-200);
    box-shadow: 0 2px 14px rgba(17, 24, 39, 0.04);
}

.dc-header-inner {
    max-width: var(--dc-page-max-width);
    min-height: 76px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}


/* ============================================================
   BRAND / LOGÓ
   ============================================================ */
.dc-brand {
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    min-width: 0;
}

.dc-brand-logo {
    height: 48px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
    display: block;
    flex: 0 0 auto;
}

.dc-brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
    min-width: 0;
}

.dc-brand-title {
    font-size: 18px;
    font-weight: 750;
    color: var(--dc-blue-900);
    white-space: nowrap;
}

/* ============================================================
   NAVIGÁCIÓ
   ============================================================ */
.dc-main-nav {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
}

    .dc-main-nav > a {
        text-decoration: none;
        font-size: 14px;
        font-weight: 650;
        color: var(--dc-gray-700);
        padding: 9px 12px;
        border-radius: 999px;
        transition: background-color 0.16s ease, color 0.16s ease;
    }

        .dc-main-nav > a:hover {
            background: var(--dc-blue-100);
            color: var(--dc-blue-900);
        }


/* ============================================================
   NYELV KAPCSOLÓ (HU | EN) — bordered chip
   ============================================================ */
.dc-lang-switcher {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--dc-gray-300);
    border-radius: 999px;
    overflow: hidden;
}

.dc-lang-btn {
    font-family: inherit;
    font-size: 12px;
    font-weight: 650;
    color: var(--dc-gray-600);
    padding: 4px 10px;
    text-decoration: none;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: background-color 0.16s ease, color 0.16s ease;
    display: inline-flex;
    align-items: center;
}

    .dc-lang-btn:hover:not(.dc-lang-active) {
        background: var(--dc-gray-100);
        color: var(--dc-gray-950);
    }

    .dc-lang-btn.dc-lang-active {
        background: var(--dc-blue-900);
        color: var(--dc-white);
    }

.dc-lang-sep {
    width: 1px;
    align-self: stretch;
    background: var(--dc-gray-300);
}


/* ============================================================
   FŐTARTALOM ÉS LÁBLÉC
   ============================================================ */
.dc-main {
    flex: 1 0 auto;
    width: 100%;
}

.dc-footer {
    flex: 0 0 auto;
    border-top: 1px solid var(--dc-gray-200);
    background: var(--dc-white);
}

.dc-footer-inner {
    max-width: var(--dc-page-max-width);
    min-height: 56px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    color: var(--dc-gray-600);
    font-size: 14px;
}


/* ============================================================
   RESZPONZÍV (max 760px)
   ============================================================ */
@media (max-width: 760px) {
    .dc-header-inner {
        min-height: auto;
        padding: 18px 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }

    .dc-brand {
        align-items: center;
    }
    .dc-brand-title {
        white-space: normal;
    }

    .dc-brand-logo {
        height: 44px;
        max-width: 190px;
    }

    .dc-main-nav {
        width: 100%;
        flex-wrap: wrap;
    }
}
