/* ====== CSS VÁLTOZÓK ====== */
:root {
    --green-dark:  #0f2d1f;
    --green-mid:   #2d5a3d;
    --green-light: #4a8c61;
    --cream:       #f5f0e8;
    --brown:       #5c4a32;
    --brown-light: #7a6e5f;
    --text-dark:   #2e2416;
    --white:       #ffffff;
}

/* ====== ALAP ====== */
*, *::before, *::after { box-sizing: border-box; }

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    max-width: 100%;
    overflow-x: hidden;
    font-family: 'Lato', 'Segoe UI', Tahoma, sans-serif;
    background: var(--white);
    color: var(--text-dark);
    scroll-behavior: smooth;
}

/* ====== NAVBAR ====== */
.navbar {
    background: linear-gradient(135deg, var(--green-dark) 0%, #1a4a2e 60%, #2d5a3d 100%) !important;
    padding: 0 2rem;
    min-height: 64px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.35);
}

.navbar .container-xl {
    min-height: 64px;
    align-items: stretch !important;
    display: flex;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: var(--white) !important;
    padding: 10px 0;
}

    .navbar-brand img {
        width: 44px;
        height: 44px;
        object-fit: contain;
    }

.brand-text .brand-name {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
}

.brand-text .slogan {
    display: block;
    font-size: 11px;
    font-style: italic;
    opacity: 0.65;
    color: var(--white);
    letter-spacing: 0.3px;
}
/* Hamburger gomb */
.navbar-toggler {
    border: 1px solid rgba(255,255,255,0.35) !important;
    padding: 6px 10px;
    transition: background 0.2s;
}

    .navbar-toggler:focus {
        box-shadow: none !important;
        outline: none;
    }

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

.navbar-toggler:hover {
    background: rgba(255,255,255,0.12);
}

.navbar-collapse {
    align-items: stretch !important;
}
/* Nav linkek */
.navbar-nav {
    align-items: stretch !important;
}

    .navbar-nav .nav-item {
        display: flex;
        align-items: center;
    }

    .navbar-nav .nav-link {
        color: rgba(255,255,255,0.82) !important;
        font-size: 15px;
        font-weight: 500;
        padding: 0 16px !important;
        border-radius: 4px;
        transition: color 0.2s, background 0.2s;
        background: transparent !important;
        border: none !important;
        display: flex;
        align-items: center;
        height: 100%;
    }

        .navbar-nav .nav-link::after {
            content: none;
        }

        .navbar-nav .nav-link:hover {
            color: var(--white) !important;
            background: rgba(255,255,255,0.08) !important;
        }

        .navbar-nav .nav-link.active {
            color: var(--white) !important;
            background: transparent !important;
            box-shadow: none !important;
            outline: none !important;
        }
/* Mobilon lecsukva más stílusú */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background: rgba(15, 45, 31, 0.97);
        margin-top: 8px;
        border-radius: 8px;
        padding: 8px 0;
        backdrop-filter: blur(8px);
        align-items: stretch !important;
    }

    .navbar-nav {
        align-items: stretch !important;
    }

        .navbar-nav .nav-link {
            height: auto;
            padding: 12px 20px !important;
        }

            .navbar-nav .nav-link:hover,
            .navbar-nav .nav-link.active {
                background: rgba(255,255,255,0.08) !important;
            }
}

/* ====== HERO SECTION ====== */
.hero {
    min-height: calc(100vh - 64px);
    width: 100%;
    background: linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.55)), url('/images/kodos.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding: 80px 20px;
}

.hero-content {
    max-width: 680px;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(34px, 5.5vw, 60px);
    font-weight: 700;
    line-height: 1.12;
    margin-bottom: 20px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

.hero-content p {
    font-size: clamp(15px, 2vw, 18px);
    opacity: 0.88;
    margin-bottom: 40px;
    line-height: 1.7;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

/* ====== GOMBOK ====== */
.btn-primary-custom {
    background: var(--green-mid);
    color: var(--white);
    padding: 13px 32px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.3px;
    transition: background 0.2s, transform 0.15s;
    display: inline-block;
}

.btn-primary-custom:hover {
    background: var(--green-dark);
    color: var(--white);
    transform: translateY(-1px);
}

.btn-secondary-custom {
    border: 1.5px solid rgba(255,255,255,0.7);
    padding: 13px 32px;
    color: var(--white);
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.2s, transform 0.15s;
    display: inline-block;
}

.btn-secondary-custom:hover {
    background: rgba(255,255,255,0.12);
    color: var(--white);
    transform: translateY(-1px);
}

/* ====== WHY US SECTION ====== */
.why-us {
    min-height: 100vh;
    width: 100%;
    background: var(--green-mid);
    color: var(--white);
    display: flex;
    align-items: center;
    padding: 100px 20px;
}

.why-us h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    margin-bottom: 10px;
}

.why-subtitle {
    opacity: 0.72;
    font-style: italic;
    font-size: 15px;
    margin-bottom: 60px;
    display: block;
}

.why-item {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 8px;
    padding: 36px 28px;
    height: 100%;
    transition: background 0.2s, transform 0.2s;
}

.why-item:hover {
    background: rgba(255,255,255,0.14);
    transform: translateY(-4px);
}

.why-item .why-icon {
    font-size: 32px;
    margin-bottom: 16px;
    display: block;
}

.why-item h4 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 10px;
}

.why-item p {
    font-size: 14px;
    opacity: 0.82;
    line-height: 1.7;
    margin: 0;
}

/* ====== IDŐJÁRÁS SECTION ====== */
.flight-status {
    min-height: 100vh;
    background: var(--cream);
    display: flex;
    align-items: center;
    padding: 100px 20px;
}

.flight-status h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(24px, 3.5vw, 36px);
    color: var(--text-dark);
    margin-bottom: 10px;
}

.flight-status .section-sub {
    color: var(--brown-light);
    font-style: italic;
    font-size: 15px;
    margin-bottom: 50px;
    display: block;
}

.weather-box {
    background: var(--white);
    border: 1px solid rgba(92,74,50,0.12);
    border-radius: 10px;
    padding: 48px;
    box-shadow: 0 8px 32px rgba(92,74,50,0.1);
}

.weather-item {
    text-align: center;
    padding: 20px 0;
}

.weather-val {
    font-family: 'Playfair Display', serif;
    font-size: clamp(30px, 4vw, 42px);
    font-weight: 700;
    color: var(--green-mid);
    line-height: 1;
}

.weather-unit {
    font-size: 12px;
    color: var(--brown-light);
    margin-top: 8px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.weather-divider {
    width: 1px;
    background: rgba(92,74,50,0.12);
    align-self: stretch;
}

@media (max-width: 767.98px) {
    .weather-divider { display: none; }
    .weather-box { padding: 28px 20px; }
    .weather-item { border-bottom: 1px solid rgba(92,74,50,0.1); }
    .weather-item:last-child { border-bottom: none; }
}

/* ====== KÁRTYÁK SECTION ====== */
.home-features {
    min-height: 100vh;
    background: var(--white);
    display: flex;
    align-items: center;
    padding: 100px 20px;
}

.home-features h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(26px, 3.5vw, 38px);
    color: var(--text-dark);
    margin-bottom: 10px;
}

.home-features h2::after {
    content: "";
    display: block;
    width: 50px;
    height: 2px;
    background: var(--green-mid);
    margin: 14px auto 0;
    border-radius: 2px;
}

.home-features .section-sub {
    color: var(--brown-light);
    font-size: 15px;
    margin-top: 16px;
    margin-bottom: 52px;
    display: block;
}

.home-card {
    display: block;
    border-radius: 8px;
    overflow: hidden;
    background: var(--cream);
    border: 1px solid rgba(92,74,50,0.12);
    box-shadow: 0 4px 20px rgba(92,74,50,0.08);
    transition: transform 0.25s, box-shadow 0.25s;
    color: var(--text-dark);
    text-decoration: none;
    height: 100%;
}

.home-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 36px rgba(92,74,50,0.16);
    color: var(--text-dark);
    text-decoration: none;
}

.home-card-image {
    height: 200px;
    overflow: hidden;
}

.home-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s;
}

.home-card:hover .home-card-image img {
    transform: scale(1.04);
}

.home-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 19px;
    font-weight: 700;
    padding: 18px 18px 6px;
    color: var(--text-dark);
}

.home-card-text {
    padding: 0 18px 22px;
    font-size: 13.5px;
    color: var(--brown-light);
    line-height: 1.6;
}

/* ====== INFO OLDAL ====== */
.info-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 40px;
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 20px;
}

.info-sidebar {
    position: sticky;
    top: 84px;
    height: fit-content;
    background: var(--white);
    border: 1px solid rgba(92,74,50,0.12);
    border-radius: 6px;
    padding: 20px;
    box-shadow: 0 4px 16px rgba(92,74,50,0.07);
}

.info-sidebar nav {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.info-sidebar a {
    text-decoration: none;
    padding: 10px 14px;
    border-radius: 4px;
    color: var(--brown);
    font-size: 13px;
    font-weight: 500;
    transition: all 0.2s;
    border-left: 2px solid transparent;
}

.info-sidebar a:hover {
    background: var(--cream);
    color: var(--green-mid);
    border-left-color: var(--green-mid);
}

.info-container {
    background: var(--white);
    border: 1px solid rgba(92,74,50,0.1);
    border-radius: 6px;
    padding: 48px 52px;
    box-shadow: 0 4px 16px rgba(92,74,50,0.07);
    color: var(--text-dark);
    line-height: 1.6;
}

.info-section {
    margin-bottom: 52px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(92,74,50,0.1);
    scroll-margin-top: 90px;
}

.info-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.info-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: var(--green-mid);
    margin-bottom: 16px;
    font-weight: 700;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--cream);
}

.info-section h4 {
    font-size: 12px;
    font-weight: 700;
    color: #3a2e1e;
    margin: 22px 0 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-section p {
    font-size: 14px;
    line-height: 1.8;
    color: var(--brown);
    margin-bottom: 10px;
}

.info-section ul {
    margin: 8px 0 16px 16px;
    list-style: disc;
}

.info-section ul li {
    font-size: 14px;
    line-height: 1.8;
    color: var(--brown);
    margin-bottom: 4px;
}

.info-section a {
    color: var(--green-mid);
    font-weight: 600;
}

#felszereles-kepek {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 24px;
    margin-top: 24px;
    flex-wrap: wrap;
}

#felszereles-kepek img {
    border-radius: 6px;
    box-shadow: 0 4px 16px rgba(92,74,50,0.15);
    max-width: 100%;
    height: auto;
}

#felszereles-kepek p {
    font-size: 13px;
    color: var(--brown-light);
    font-style: italic;
    text-align: center;
    max-width: 300px;
}

@media (max-width: 768px) {
    .info-layout {
        grid-template-columns: 1fr;
    }
    .info-sidebar {
        position: static;
    }
    .info-container {
        padding: 28px 22px;
    }
}

/* ====== ACCORDION ====== */
.acc-wrap {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 16px;
}

.acc-item {
    border: 1px solid rgba(92,74,50,0.15);
    border-radius: 6px;
    background: var(--white);
    overflow: hidden;
}

.acc-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 13px 18px;
    cursor: pointer;
    list-style: none;
    transition: background 0.2s;
}

.acc-header::-webkit-details-marker { display: none; }

.acc-header:hover { background: var(--cream); }

.acc-title {
    font-size: 12px;
    font-weight: 700;
    color: var(--green-mid);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.acc-header::after {
    content: '›';
    font-size: 18px;
    color: var(--brown);
    transition: transform 0.25s;
    line-height: 1;
}

.acc-item[open] > .acc-header::after {
    transform: rotate(90deg);
}

.acc-body-inner {
    padding: 12px 18px 16px;
    font-size: 14px;
    color: var(--brown);
    line-height: 1.8;
    border-top: 1px solid rgba(92,74,50,0.08);
}

.acc-body-inner p { margin-bottom: 10px; }

.acc-body-inner ul {
    margin: 8px 0 8px 16px;
    list-style: disc;
}

.acc-body-inner ul li { margin-bottom: 4px; }

/* ====== FIÓK DROPDOWN ====== */
.nav-link-account {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.35) !important;
    border-radius: 20px !important;
    color: rgba(255,255,255,0.88) !important;
    padding: 6px 16px !important;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
}

.nav-link-account:hover,
.nav-link-account.show {
    background: rgba(255,255,255,0.12) !important;
    border-color: rgba(255,255,255,0.65) !important;
    color: white !important;
}

/* Bootstrap dropdown nyíl fehér */
.nav-link-account::after {
    border-top-color: rgba(255,255,255,0.75) !important;
    vertical-align: 0.2em;
}

/* Dropdown menü stílus */
.navbar .dropdown-menu {
    background: #0f2d1f;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 8px;
    padding: 6px 0;
    box-shadow: 0 8px 24px rgba(0,0,0,0.35);
    min-width: 160px;
}

.navbar .dropdown-item {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    padding: 10px 18px;
    transition: background 0.15s, color 0.15s;
}

.navbar .dropdown-item:hover {
    background: rgba(255,255,255,0.1);
    color: white;
}

/* Mobilon: pill eltűnik, sima sor lesz */
@media (max-width: 991.98px) {
    .nav-link-account {
        border-radius: 0 !important;
        border: none !important;
        border-top: 1px solid rgba(255,255,255,0.1) !important;
        padding: 12px 20px !important;
        width: 100%;
        text-align: left;
    }

    .navbar .dropdown-menu {
        background: rgba(255,255,255,0.06);
        border: none;
        border-radius: 0;
        box-shadow: none;
        padding: 0;
    }

    .navbar .dropdown-item {
        padding-left: 32px;
        border-bottom: 1px solid rgba(255,255,255,0.04);
    }
}

/* ====== USER MENU ====== */
.user-menu {
    position: relative;
    color: var(--white);
    font-weight: 500;
    cursor: pointer;
}

.user-menu span {
    padding: 7px 14px;
    border-radius: 20px;
    background: rgba(255,255,255,0.15);
    font-size: 14px;
    transition: background 0.2s;
}

.user-menu span:hover {
    background: rgba(255,255,255,0.25);
}

.user-dropdown {
    position: absolute;
    right: 0;
    top: 44px;
    background: var(--white);
    color: black;
    border-radius: 10px;
    min-width: 160px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    display: none;
    overflow: hidden;
    z-index: 200;
}

.user-dropdown a {
    display: block;
    padding: 12px 16px;
    text-decoration: none;
    color: var(--text-dark);
    font-size: 14px;
    transition: background 0.15s;
}

.user-dropdown a:hover { background: var(--cream); }

.user-dropdown.show { display: block; }


/* ====== FOOTER ====== */
footer, .footer {
    background: #0f2d1f;
    color: rgba(245,240,232,0.75);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 32px;
    padding: 50px 60px 36px;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    font-size: 14px;
    line-height: 1.9;
}

.footer-left h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-style: italic;
    color: #f5f0e8;
    margin-bottom: 4px;
}

.footer-left p {
    font-style: italic;
    opacity: 0.55;
    font-size: 13px;
}

.footer-center p {
    margin: 0;
}

.footer-center strong {
    color: rgba(245,240,232,0.45);
    font-weight: 400;
}

.footer-right p {
    margin-bottom: 10px;
    color: rgba(245,240,232,0.45);
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-socials {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.footer-socials a {
    color: rgba(245,240,232,0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-socials a:hover {
    color: #f5f0e8;
}

#app, .page {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}

.page-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

@media (max-width: 768px) {
    footer, .footer {
        flex-direction: column;
        padding: 40px 24px 28px;
    }
}

/* ====== INFO ====== */
.info-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 40px;
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 20px;
}

/* SIDEBAR */
.info-sidebar {
    position: sticky;
    top: 30px;
    height: fit-content;
    background: white;
    border: 1px solid rgba(92,74,50,0.12);
    border-radius: 6px;
    padding: 20px;
    box-shadow: 0 4px 16px rgba(92,74,50,0.07);
}

.info-sidebar nav {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.info-sidebar a {
    text-decoration: none;
    padding: 10px 14px;
    border-radius: 4px;
    color: #5c4a32;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.2s;
    border-left: 2px solid transparent;
}

.info-sidebar a:hover {
    background: #f5f0e8;
    color: #2d5a3d;
    border-left-color: #2d5a3d;
}

/* CONTAINER */
.info-container {
    background: white;
    border: 1px solid rgba(92,74,50,0.1);
    border-radius: 6px;
    padding: 48px 52px;
    box-shadow: 0 4px 16px rgba(92,74,50,0.07);
    color: #2e2416;
    line-height: 1.6;
}

/* SECTION */
.info-section {
    margin-bottom: 52px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(92,74,50,0.1);
    scroll-margin-top: 30px;
}

.info-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.info-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: #2d5a3d;
    margin-bottom: 16px;
    font-weight: 700;
    padding-bottom: 10px;
    border-bottom: 2px solid #f5f0e8;
}

.info-section h4 {
    font-size: 12px;
    font-weight: 700;
    color: #3a2e1e;
    margin: 22px 0 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-section p {
    font-size: 14px;
    line-height: 1.8;
    color: #5c4a32;
    margin-bottom: 10px;
}

.info-section ul {
    margin: 8px 0 16px 16px;
    list-style: disc;
}

.info-section ul li {
    font-size: 14px;
    line-height: 1.8;
    color: #5c4a32;
    margin-bottom: 4px;
}

.info-section a {
    color: #2d5a3d;
    font-weight: 600;
}

/* KÉPEK */
#felszereles-kepek {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 24px;
    margin-top: 24px;
    flex-wrap: wrap;
}

#felszereles-kepek img {
    border-radius: 6px;
    box-shadow: 0 4px 16px rgba(92,74,50,0.15);
    max-width: 100%;
    height: auto;
}

#felszereles-kepek p {
    font-size: 13px;
    color: #7a6e5f;
    font-style: italic;
    text-align: center;
    max-width: 300px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .info-layout {
        grid-template-columns: 1fr;
    }

    .info-sidebar {
        position: static;
    }

    .info-container {
        padding: 28px 22px;
    }
}

.acc-wrap {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 16px;
}

.acc-item {
    border: 1px solid rgba(92,74,50,0.15);
    border-radius: 6px;
    background: white;
    overflow: hidden;
}

.acc-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 13px 18px;
    cursor: pointer;
    list-style: none;
    transition: background 0.2s;
}

.acc-header::-webkit-details-marker {
    display: none;
}

.acc-header:hover {
    background: #f5f0e8;
}

.acc-title {
    font-size: 12px;
    font-weight: 700;
    color: #2d5a3d;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.acc-header::after {
    content: '›';
    font-size: 18px;
    color: #5c4a32;
    transition: transform 0.25s;
    line-height: 1;
}

.acc-item[open] > .acc-header::after {
    transform: rotate(90deg);
}

.acc-body-inner {
    padding: 12px 18px 16px;
    font-size: 14px;
    color: #5c4a32;
    line-height: 1.8;
    border-top: 1px solid rgba(92,74,50,0.08);
}

.acc-body-inner p {
    margin-bottom: 10px;
}

.acc-body-inner ul {
    margin: 8px 0 8px 16px;
    list-style: disc;
}

.acc-body-inner ul li {
    margin-bottom: 4px;
}

/* ====== PROFIL OLDAL ====== */

/* Cover */
.profil-cover {
    height: 220px;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-color: var(--green-mid);
    position: relative;
}

.profil-cover-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.5));
}

/* Wrapper */
.profil-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px 60px;
}

/* Fejléc */
.profil-fejlec {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-top: -48px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(92,74,50,0.15);
    margin-bottom: 24px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.profil-avatar-wrap {
    flex-shrink: 0;
    display: flex;
    align-items: flex-end;
}

.profil-avatar {
    width: 112px;
    height: 112px;
    border-radius: 50%;
    border: 4px solid var(--white);
    object-fit: cover;
    background: var(--green-mid);
    display: block;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.profil-info {
    flex: 1;
    min-width: 240px;
    padding-top: 22px;
}

.profil-nev {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 4px;
}

.profil-handle {
    font-size: 13px;
    color: var(--brown-light);
    margin: 0 0 10px;
}

.profil-badge-sor {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.profil-badge {
    display: inline-block;
    background: var(--green-mid);
    color: var(--cream);
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 12px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.profil-badge.profil-badge-outline {
    background: transparent;
    border: 1px solid rgba(92,74,50,0.35);
    color: var(--brown);
}

.profil-akciok {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
    padding-top: 24px;
}

/* Fő layout */
.profil-main {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 24px;
}

/* Sidebar */
.profil-sidebar {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Kártya */
.profil-card {
    background: var(--white);
    border: 1px solid rgba(92,74,50,0.12);
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 16px rgba(92,74,50,0.06);
}

.profil-card-cim {
    font-family: 'Playfair Display', serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--cream);
}

/* Bio */
.profil-bio {
    font-size: 13.5px;
    color: var(--brown);
    line-height: 1.75;
    margin: 0 0 14px;
}

.profil-reszletek {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.profil-reszlet-sor {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--brown);
}

.profil-ikon {
    width: 15px;
    height: 15px;
    opacity: 0.5;
    flex-shrink: 0;
}

/* Statisztikák */
.profil-stat-sor {
    display: flex;
    justify-content: space-around;
    margin-bottom: 16px;
}

.profil-stat {
    text-align: center;
    flex: 1;
    padding: 8px 0;
}

.profil-stat + .profil-stat {
    border-left: 1px solid rgba(92,74,50,0.1);
}

.profil-stat-szam {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--green-mid);
    line-height: 1;
}

.profil-stat-cimke {
    font-size: 11px;
    color: var(--brown-light);
    margin-top: 4px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}

.profil-szint-wrap {
    margin-top: 4px;
}

.profil-szint-sor {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--brown-light);
    margin-bottom: 6px;
}

.profil-szint-sav {
    height: 6px;
    background: rgba(92,74,50,0.12);
    border-radius: 3px;
    overflow: hidden;
}

.profil-szint-tolt {
    height: 100%;
    background: var(--green-mid);
    border-radius: 3px;
    transition: width 0.4s ease;
}

/* Helyszínek */
.profil-spot {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(92,74,50,0.08);
}

    .profil-spot:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

.profil-spot-ikon {
    width: 40px;
    height: 36px;
    border-radius: 6px;
    background: var(--green-mid);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.profil-spot-nev {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 2px;
}

.profil-spot-helyszin {
    font-size: 11px;
    color: var(--brown-light);
    margin: 0;
}

/* Tabok */
.profil-tabok {
    display: flex;
    padding: 0 20px;
    border-bottom: 1px solid rgba(92,74,50,0.12);
}

.profil-tab {
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    padding: 12px 20px;
    font-size: 13px;
    font-weight: 500;
    color: var(--brown-light);
    cursor: pointer;
    margin-bottom: -1px;
    font-family: 'Lato', sans-serif;
    transition: color 0.2s, border-color 0.2s;
}

.profil-tab:hover {
    color: var(--green-mid);
}

.profil-tab.aktiv {
    color: var(--green-mid);
    border-bottom-color: var(--green-mid);
    font-weight: 700;
}

/* Poszt rácsok */
.profil-posztok-racs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.profil-poszt-kartya {
    background: var(--white);
    border: 1px solid rgba(92,74,50,0.12);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(92,74,50,0.06);
    transition: transform 0.2s, box-shadow 0.2s;
}

.profil-poszt-kartya:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(92,74,50,0.12);
}

.profil-poszt-kep {
    height: 180px;
    background-size: cover;
    background-position: center;
    background-color: var(--green-mid);
}

.profil-poszt-body {
    padding: 16px 18px;
}

.profil-poszt-cim {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 4px;
}

.profil-poszt-meta {
    font-size: 12px;
    color: var(--brown-light);
    margin: 0 0 8px;
}

.profil-poszt-szoveg {
    font-size: 13px;
    color: var(--brown);
    line-height: 1.65;
    margin: 0 0 14px;
}

.profil-poszt-footer {
    display: flex;
    gap: 20px;
    border-top: 1px solid rgba(92,74,50,0.08);
    padding-top: 12px;
}

.profil-akció {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: var(--brown-light);
    cursor: pointer;
    transition: color 0.2s;
}

    .profil-akció:hover {
        color: var(--green-mid);
    }

/*IDEIGLENES!!!*/
.profil-avatar-monogram {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-family: 'Playfair Display', serif;
    font-size: 34px;
    font-weight: 700;
}

/* Reszponzív */
@media (max-width: 900px) {
    .profil-main {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .profil-fejlec {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
        margin-top: -36px;
    }

    .profil-avatar {
        width: 92px;
        height: 92px;
    }

    .profil-akciok {
        padding-top: 0;
        margin-left: 0;
        width: 100%;
    }
}

/* ====== PROFIL SZERKESZTÉS ====== */

.profil-edit-loading {
    max-width: 1100px;
    margin: 60px auto;
    padding: 0 20px;
    text-align: center;
    color: var(--brown-light);
    font-size: 15px;
}

.profil-edit-hero {
    position: relative;
    min-height: 220px;
    background: linear-gradient(rgba(0,0,0,0.35), rgba(0,0,0,0.5)), url('/images/kodos.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
}

.profil-edit-hero-overlay {
    position: absolute;
    inset: 0;
}

.profil-edit-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px;
    width: 100%;
    color: var(--white);
}

.profil-edit-hero-inner h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(30px, 5vw, 44px);
    margin: 0 0 10px;
}

.profil-edit-hero-inner p {
    margin: 0;
    opacity: 0.88;
    font-size: 15px;
    max-width: 520px;
}

.profil-edit-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 30px 20px 60px;
}

.profil-edit-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 24px;
    align-items: start;
}

.profil-edit-side {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.profil-edit-main {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.profil-edit-preview {
    text-align: center;
}

.profil-edit-avatar {
    width: 92px;
    height: 92px;
    border-radius: 50%;
    margin: 0 auto 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--green-mid);
    color: var(--white);
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    font-weight: 700;
    border: 4px solid var(--cream);
}

.profil-edit-preview h4 {
    margin: 0 0 4px;
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: var(--text-dark);
}

.profil-edit-preview p {
    margin: 0 0 14px;
    font-size: 13px;
    color: var(--brown-light);
}

.profil-edit-preview-bio {
    font-size: 13px;
    color: var(--brown);
    line-height: 1.7;
    margin-bottom: 14px;
}

.profil-edit-preview-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
}

.profil-edit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.profil-edit-grid-single {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.profil-edit-field {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.profil-edit-field label {
    font-size: 12px;
    font-weight: 700;
    color: var(--brown);
    letter-spacing: 0.4px;
    text-transform: uppercase;
}

.profil-edit-field input,
.profil-edit-field textarea {
    width: 100%;
    border: 1px solid rgba(92,74,50,0.18);
    border-radius: 8px;
    padding: 12px 14px;
    font-size: 14px;
    font-family: 'Lato', 'Segoe UI', Tahoma, sans-serif;
    color: var(--text-dark);
    background: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.profil-edit-field input:focus,
.profil-edit-field textarea:focus {
    outline: none;
    border-color: var(--green-mid);
    box-shadow: 0 0 0 3px rgba(45, 90, 61, 0.12);
}

.profil-edit-field textarea {
    min-height: 120px;
    resize: vertical;
    line-height: 1.6;
}

.profil-edit-message {
    margin-bottom: 16px;
    padding: 12px 14px;
    border-radius: 8px;
    background: #fff4e8;
    border: 1px solid rgba(122,110,95,0.22);
    color: var(--brown);
    font-size: 13px;
}

.profil-edit-actions {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

.profil-edit-cancel {
    background: transparent;
    border: 1px solid rgba(92,74,50,0.22);
    color: var(--brown);
    padding: 13px 24px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, transform 0.15s;
}

.profil-edit-cancel:hover {
    background: var(--cream);
    border-color: rgba(92,74,50,0.32);
    transform: translateY(-1px);
}

@media (max-width: 900px) {
    .profil-edit-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 700px) {
    .profil-edit-grid {
        grid-template-columns: 1fr;
    }
}

.profil-edit-image-preview {
    margin-top: 12px;
}

.profil-edit-avatar-preview img {
    width: 92px;
    height: 92px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid var(--cream);
    background: var(--green-mid);
    box-shadow: 0 4px 16px rgba(92,74,50,0.12);
}

.profil-edit-cover-preview img {
    width: 100%;
    max-height: 220px;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid rgba(92,74,50,0.12);
    box-shadow: 0 4px 16px rgba(92,74,50,0.08);
}

/* ====== FÓRUM ====== */

.forum-loading {
    max-width: 1100px;
    margin: 60px auto;
    padding: 0 20px;
    text-align: center;
    color: var(--brown-light);
    font-size: 15px;
}

.forum-page {
    max-width: 1100px;
    margin: 0 auto;
    padding: 32px 20px 60px;
}

.forum-header {
    margin-bottom: 24px;
}

.forum-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 4vw, 40px);
    color: var(--text-dark);
    margin: 0 0 8px;
}

.forum-header p {
    margin: 0;
    color: var(--brown-light);
    font-size: 15px;
}

.forum-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 24px;
    align-items: start;
}

.forum-sidebar {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.forum-main {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.forum-card,
.forum-post-card {
    background: var(--white);
    border: 1px solid rgba(92,74,50,0.12);
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(92,74,50,0.06);
}

.forum-card {
    padding: 20px;
}

.forum-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: var(--text-dark);
    margin: 0 0 12px;
}

.forum-card p {
    color: var(--brown);
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

.forum-tip-list {
    margin: 0;
    padding-left: 18px;
    color: var(--brown);
    font-size: 14px;
    line-height: 1.8;
}

.forum-create-card {
    padding: 22px;
}

.forum-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}

.forum-field label {
    font-size: 12px;
    font-weight: 700;
    color: var(--brown);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.forum-field input,
.forum-field textarea,
.forum-field select {
    width: 100%;
    border: 1px solid rgba(92,74,50,0.18);
    border-radius: 8px;
    padding: 12px 14px;
    font-size: 14px;
    font-family: 'Lato', 'Segoe UI', Tahoma, sans-serif;
    color: var(--text-dark);
    background: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.forum-field input:focus,
.forum-field textarea:focus,
.forum-field select:focus {
    outline: none;
    border-color: var(--green-mid);
    box-shadow: 0 0 0 3px rgba(45,90,61,0.12);
}

.forum-field textarea {
    min-height: 130px;
    resize: vertical;
    line-height: 1.7;
}

.forum-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.forum-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.forum-message {
    margin-bottom: 16px;
    padding: 12px 14px;
    border-radius: 8px;
    background: #fff4e8;
    border: 1px solid rgba(122,110,95,0.22);
    color: var(--brown);
    font-size: 13px;
}

.forum-selected-tag {
    margin-bottom: 16px;
    color: var(--brown);
    font-size: 13px;
}

.forum-selected-tag span {
    color: var(--green-mid);
    font-weight: 700;
}

.forum-post-card {
    overflow: hidden;
}

.forum-post-top {
    padding: 16px 18px 0;
}

.forum-post-user {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.forum-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--cream);
    background: var(--green-mid);
    flex-shrink: 0;
}

.forum-avatar-monogram {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 700;
}

.forum-user-meta {
    min-width: 0;
}

.forum-user-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
}

.forum-user-handle {
    font-size: 12px;
    color: var(--brown-light);
}

.forum-post-body {
    padding: 14px 18px 16px;
}

.forum-post-title {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: var(--text-dark);
    margin: 0 0 10px;
}

.forum-post-text {
    font-size: 14px;
    line-height: 1.8;
    color: var(--brown);
}

.forum-post-image-wrap {
    margin-top: 16px;
}

.forum-post-image {
    width: 100%;
    max-height: 420px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

.forum-post-tags {
    margin-top: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.forum-tag,
.forum-inline-tag {
    color: var(--green-mid);
    font-weight: 700;
    text-decoration: none;
}

.forum-tag {
    display: inline-block;
    background: rgba(45,90,61,0.08);
    border: 1px solid rgba(45,90,61,0.16);
    border-radius: 999px;
    padding: 6px 10px;
    font-size: 13px;
}

.forum-tag:hover,
.forum-inline-tag:hover {
    color: var(--green-dark);
    text-decoration: underline;
}

.forum-post-footer {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid rgba(92,74,50,0.08);
    padding: 12px 18px 14px;
}

.forum-footer-btn {
    background: none;
    border: none;
    color: var(--brown-light);
    font-size: 13px;
    cursor: pointer;
    padding: 0;
    transition: color 0.2s;
}

.forum-footer-btn:hover {
    color: var(--green-mid);
}

.forum-empty {
    text-align: center;
    color: var(--brown-light);
    font-size: 14px;
    padding: 20px 0;
}

@media (max-width: 900px) {
    .forum-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 700px) {
    .forum-grid {
        grid-template-columns: 1fr;
    }

    .forum-post-title {
        font-size: 20px;
    }
}
/* ====== FÓRUM RÉSZLETOLDAL ====== */

.forum-detail-header {
    margin-bottom: 18px;
}

.forum-back-btn {
    background: transparent;
    border: none;
    color: var(--green-mid);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    padding: 0;
}

.forum-back-btn:hover {
    text-decoration: underline;
}

.forum-detail-layout {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 24px;
    align-items: start;
}

.forum-detail-main {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.forum-detail-sidebar {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.forum-post-card-detail .forum-post-body {
    padding-top: 18px;
}

.forum-post-title-detail {
    font-size: clamp(28px, 4vw, 38px);
    margin-bottom: 14px;
}

.forum-post-text-detail {
    font-size: 15px;
}

.forum-comments-card {
    padding: 22px;
}

.forum-comments-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.forum-comments-header h3 {
    margin: 0;
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: var(--text-dark);
}

.forum-comments-header span {
    color: var(--brown-light);
    font-size: 13px;
}

.forum-comment-form {
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(92,74,50,0.08);
}

.forum-login-notice {
    margin-bottom: 24px;
    padding: 14px 16px;
    border-radius: 8px;
    background: rgba(45,90,61,0.06);
    border: 1px solid rgba(45,90,61,0.12);
    color: var(--green-mid);
    font-size: 14px;
    font-weight: 600;
}

.forum-comment-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.forum-comment-item {
    border: 1px solid rgba(92,74,50,0.10);
    border-radius: 8px;
    padding: 14px 16px;
    background: #fff;
}

.forum-comment-item.level-1,
.forum-comment-item.level-2,
.forum-comment-item.level-3 {
    margin-top: 12px;
    margin-left: 20px;
    background: #fcfbf8;
}

.forum-avatar-small {
    width: 38px;
    height: 38px;
    font-size: 15px;
}

.forum-comment-header {
    margin-bottom: 10px;
}

.forum-comment-body {
    color: var(--brown);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 12px;
}

.forum-comment-actions {
    display: flex;
    gap: 10px;
    margin-bottom: 6px;
}

.forum-comment-children {
    margin-top: 10px;
}

.forum-reply-box {
    margin-top: 12px;
    margin-bottom: 10px;
}

.forum-reply-textarea {
    width: 100%;
    min-height: 100px;
    border: 1px solid rgba(92,74,50,0.18);
    border-radius: 8px;
    padding: 12px 14px;
    font-size: 14px;
    font-family: 'Lato', 'Segoe UI', Tahoma, sans-serif;
    color: var(--text-dark);
    background: #fff;
    resize: vertical;
    line-height: 1.6;
    margin-bottom: 12px;
}

.forum-reply-textarea:focus {
    outline: none;
    border-color: var(--green-mid);
    box-shadow: 0 0 0 3px rgba(45,90,61,0.12);
}

.forum-meta-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.forum-meta-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    color: var(--brown);
    font-size: 14px;
}

.forum-meta-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--brown-light);
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.forum-link-btn {
    background: none;
    border: none;
    color: var(--green-mid);
    font-size: 14px;
    font-weight: 700;
    padding: 0;
    cursor: pointer;
    text-align: left;
}

.forum-link-btn:hover {
    text-decoration: underline;
}

@media (max-width: 950px) {
    .forum-detail-layout {
        grid-template-columns: 1fr;
    }
}
.forum-create-launcher {
    padding: 16px 18px;
}

.forum-create-launcher-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.forum-create-trigger {
    flex: 1;
    background: var(--cream);
    border: 1px solid rgba(92,74,50,0.12);
    border-radius: 999px;
    padding: 12px 16px;
    text-align: left;
    color: var(--brown-light);
    font-size: 14px;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
}

.forum-create-trigger:hover {
    background: #efe7db;
    border-color: rgba(92,74,50,0.22);
}

.forum-create-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.forum-close-btn {
    background: transparent;
    border: none;
    color: var(--brown-light);
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    padding: 0;
}

.forum-close-btn:hover {
    color: var(--green-mid);
}

.forum-cancel-btn {
    background: transparent;
    border: 1px solid rgba(92,74,50,0.22);
    color: var(--brown);
    padding: 13px 24px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, transform 0.15s;
}

.forum-cancel-btn:hover {
    background: var(--cream);
    border-color: rgba(92,74,50,0.32);
    transform: translateY(-1px);
}

@media (max-width: 700px) {
    .forum-create-launcher-row {
        flex-direction: column;
        align-items: stretch;
    }
}

.forum-post-upload-preview {
    margin-top: 12px;
}

.forum-post-upload-preview img {
    width: 100%;
    max-height: 320px;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid rgba(92,74,50,0.12);
    box-shadow: 0 4px 16px rgba(92,74,50,0.08);
    display: block;
}

/* ====== HÍREK LISTA ====== */

/* ====== HÍREK OLDAL ====== */

.hirek-page {
    background: var(--cream);
    min-height: 100vh;
    padding: 60px 20px;
}

.hirek-container {
    max-width: 900px;
    margin: 0 auto;
}

/* HEADER */
.hirek-header {
    text-align: center;
    margin-bottom: 40px;
}

.hirek-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    margin-bottom: 10px;
}

.hirek-header p {
    color: var(--brown-light);
    font-size: 15px;
}

/* LISTA */
.hirek-lista {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* KÁRTYA */
.hir-kartya {
    background: white;
    border-radius: 10px;
    padding: 28px;
    border: 1px solid rgba(92,74,50,0.1);
    box-shadow: 0 6px 20px rgba(92,74,50,0.08);
    cursor: pointer;
    transition: all 0.25s ease;
}

.hir-kartya:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(92,74,50,0.14);
}

/* TAG */
.hir-tag {
    display: inline-block;
    margin-bottom: 12px;
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(45,90,61,0.08);
    color: var(--green-mid);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

/* CÍM */
.hir-kartya h2 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

/* SZÖVEG */
.hir-kartya p {
    font-size: 14px;
    color: var(--brown);
    line-height: 1.7;
    margin-bottom: 18px;
}

/* FOOTER */
.hir-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: var(--brown-light);
}

.tovabb {
    color: var(--green-mid);
    font-weight: 700;
}
/* ====== HÍR RÉSZLETOLDAL ====== */

.hir-reszlet-page {
    background: var(--cream);
    min-height: 100vh;
    padding: 40px 20px 70px;
}

.hir-reszlet-container {
    max-width: 1000px;
    margin: 0 auto;
}

.hir-back-link {
    background: none;
    border: none;
    padding: 0;
    margin-bottom: 20px;
    color: var(--green-mid);
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
}

.hir-back-link:hover {
    text-decoration: underline;
}

.hir-article-card,
.hir-not-found-card {
    background: var(--white);
    border: 1px solid rgba(92,74,50,0.10);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 28px rgba(92,74,50,0.10);
}

.hir-hero-image {
    width: 100%;
    height: 420px;
    background: var(--green-mid);
}

.hir-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hir-article-body {
    padding: 38px 42px 46px;
}

.hir-category {
    display: inline-block;
    margin-bottom: 16px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(45,90,61,0.08);
    border: 1px solid rgba(45,90,61,0.15);
    color: var(--green-mid);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.hir-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.15;
    color: var(--text-dark);
    margin: 0 0 16px;
}

.hir-meta {
    color: var(--brown-light);
    font-size: 14px;
    margin-bottom: 18px;
}

.hir-divider {
    width: 100%;
    height: 1px;
    background: rgba(92,74,50,0.10);
    margin-bottom: 26px;
}

.hir-content p {
    font-size: 16px;
    line-height: 1.95;
    color: var(--brown);
    margin-bottom: 18px;
}

.hir-loading,
.hir-not-found-card {
    text-align: center;
    padding: 50px 30px;
}

.hir-not-found-card h1 {
    font-family: 'Playfair Display', serif;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.hir-not-found-card p {
    color: var(--brown-light);
    margin-bottom: 22px;
}

@media (max-width: 768px) {
    .hir-kartya {
        flex-direction: column;
    }

        .hir-kartya img {
            width: 100%;
            height: 220px;
        }

    .hir-hero-image {
        height: 240px;
    }

    .hir-article-body {
        padding: 26px 22px 30px;
    }

    .hir-content p {
        font-size: 15px;
    }
}
/* ====== TÉRKÉP RESPONSIVE KIEGÉSZÍTÉS ====== */

@media (max-width: 1200px) {
    .terkep-wrap {
        max-width: 100%;
    }

    .terkep-layout {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .terkep-side {
        order: 2;
    }

    .terkep-map-card {
        order: 1;
    }

    #mapbox-map {
        height: 520px;
    }
}

@media (max-width: 900px) {
    .terkep-page {
        padding: 28px 16px 48px;
    }

    .terkep-hero {
        margin-bottom: 22px;
    }

    .terkep-hero h1 {
        font-size: clamp(28px, 7vw, 40px);
        line-height: 1.15;
    }
    
    .terkep-hero p {
        font-size: 14px;
        line-height: 1.7;
    }

    .terkep-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .terkep-actions .terkep-btn-admin,
    .terkep-actions .terkep-btn-secondary,
    .terkep-actions .btn-secondary-custom {
        width: 100%;
        text-align: center;
    }

    .terkep-map-card,
    .terkep-side-card {
        padding: 14px;
        border-radius: 10px;
    }

    #mapbox-map {
        height: 430px;
        border-radius: 8px;
    }

    .terkep-map-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .terkep-side-head h2,
    .terkep-map-head h2,
    .terkep-modal-head h2 {
        font-size: 21px;
    }

    .spot-table {
        min-width: 100%;
    }

    .spot-table thead th,
    .spot-table tbody td {
        padding: 10px 10px;
        font-size: 13px;
    }

    .spot-name-cell {
        gap: 6px;
        font-size: 13px;
    }
}

@media (max-width: 640px) {
    .terkep-page {
        padding: 22px 12px 42px;
    }

    .terkep-hero h1 {
        font-size: 30px;
    }

    .terkep-hero p {
        font-size: 13px;
    }

    .terkep-map-card,
    .terkep-side-card {
        padding: 12px;
    }

    #mapbox-map {
        height: 340px;
    }

    .spot-table-wrap {
        overflow-x: auto;
    }

    .spot-table {
        min-width: 520px;
    }

    .terkep-help-item {
        font-size: 13px;
        padding: 10px 12px;
    }

    .terkep-modal-backdrop {
        padding: 10px;
    }

    .terkep-modal {
        width: 100%;
        max-height: 92vh;
        border-radius: 10px;
    }

    .terkep-modal-head {
        padding: 18px 16px 8px;
    }

    .terkep-modal-body {
        padding: 14px 16px 18px;
    }

    .terkep-form-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .terkep-form-field input,
    .terkep-form-field textarea {
        font-size: 14px;
        padding: 11px 12px;
    }

    .terkep-modal-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .terkep-btn-admin,
    .terkep-btn-secondary,
    .terkep-btn-muted {
        width: 100%;
    }
}