﻿:root {
    --header-h: 120px;
    --footer-h: 60px;
    --side-pad: 50px;
    --shadow: 0 4px 12px rgba(0,0,0,.12);
}


* {
    box-sizing: border-box
}

html, body {
    margin: 0;
    padding: 0;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

body {
    margin: 0;
    padding-top: var(--header-h);
    padding-bottom: var(--footer-h);
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    background: transparent !important; /* itt a lényeg */
}

.page {
    background: transparent !important;
}

/* --- Sticky header/footer --- */
.header-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-h);
    background: #fff;
    border-bottom: 1px solid #e6e6e6;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    z-index: 3000;
}

.footer-container {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: var(--footer-h);
    background: #6B8FC9;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-top: 1px solid #dcdcdc;
    z-index: 1000;
}

/* --- Header content --- */
.logo {
    height: 80px;
    cursor: pointer
}

.header-title {
    flex: 1;
    text-align: center
}

    .header-title h1 {
        margin: 0;
        font-size: 28px;
        font-weight: 700
    }

.menu a {
    margin: 0 10px;
    text-decoration: none;
    color: #000;
    font-weight: 600;
}

.header-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px
}

.reseller-link {
    font-weight: 700;
    text-decoration: none;
    color: #000
}

.lang-switch .flag {
    border: 0;
    background: transparent;
    padding: 2px;
    margin-left: 6px;
    cursor: pointer;
    opacity: .8;
}

    .lang-switch .flag.active {
        outline: 2px solid #2563eb;
        border-radius: 6px;
        opacity: 1;
    }

.lang-switch img {
    height: 22px;
    margin-left: 6px;
    cursor: pointer
}

.lang-flag {
    height: 22px !important;
    width: auto;
    display: inline-block;
}

/* --- Bands (sávok) --- */

.band {
    width: 100%;
    margin: 0;
    padding: 22px var(--side-pad);
}

    .band.even {
        background: linear-gradient(180deg, #b8cbea 0%, #9db3db 100%);
    }

    .band.odd {
        background: linear-gradient(180deg, #d4e0f6 0%, #b8cbea 100%);
    }

.panel {
    border-radius: 14px;
    box-shadow: var(--shadow);
    background: #fff;
    padding: 18px;
}


.main-layout {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background: transparent;
}

.content-wrapper {
    flex: 1;
    padding: 0;
    margin: 0;
    background: transparent; /* nagyon fontos */
}


main {
    flex: 1;
    background: transparent; /* fehér helyett */
    padding-top: 0;
}

.introduce-panel {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
}

.intro-image {
    max-width: 100%;
    height: auto;
    flex: 1 1 300px;
}

.intro-text {
    flex: 2 1 300px;
    font-size: 1.1rem;
    line-height: 1.5;
}



/* Oldalon belüli main content padding */
.main-content {
    padding-bottom: 24px
}

/* Cookie modal (ha kell) */
.cookie-consent-overlay {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,.55);
    z-index: 2000;
    padding: 18px;
}

.cookie-consent-box {
    max-width: 680px;
    margin: 0 auto;
    background: #fff;
    border-radius: 16px;
    padding: 16px 18px;
    box-shadow: var(--shadow);
}

    .cookie-consent-box button {
        margin-right: 8px;
        padding: 8px 12px;
        border-radius: 10px;
        border: 1px solid #ddd;
        background: #fff;
        cursor: pointer;
    }

/* A press-effekt vizuális overlay-e ne kapjon pointer eseményeket */
.is-pressable::after {
    pointer-events: none;
}

