/*==============================================================================
  MODERN DARK THEME - OPTIMALIZÁLT ÉS TISZTÍTOTT
  Emerald & Violet Accent | Glassmorphism | Modern Typography
==============================================================================*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;900&family=JetBrains+Mono:wght@400;700&family=Space+Grotesk:wght@300;400;500;600;700&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

/*==============================================================================
  1. VÁLTOZÓK ÉS ALAPBEÁLLÍTÁSOK
==============================================================================*/

:root {
    /* Színpaletta */
    --void-black: #050505;
    --deep-navy: #0a0f14;
    --charcoal: #151a21;
    --steel-gray: #334155;
    --ghost-white: #f1f5f9;
    --slate-text: #94a3b8;

    /* Akcentus színek */
    --emerald-glow: #10b981;
    --violet-pulse: #8b5cf6;
    --amber-spark: #f59e0b;
    --crimson-alert: #ef4444;
    --cyan-frost: #06b6d4;

    /* Gradiensek */
    --main-gradient: linear-gradient(135deg, var(--emerald-glow) 0%, var(--violet-pulse) 100%);
    --dark-bg-gradient: linear-gradient(180deg, var(--deep-navy) 0%, var(--void-black) 100%);
    --card-gradient: linear-gradient(145deg, rgba(21, 26, 33, 0.7), rgba(10, 15, 20, 0.8));

    /* Tipográfia */
    --font-primary: 'Inter', sans-serif;
    --font-display: 'Space Grotesk', sans-serif;
    --font-code: 'JetBrains Mono', monospace;

    /* Távolságok */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 2rem;
    --spacing-xl: 4rem;

    /* Kerekítések */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;

    /* Átmenetek */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-med: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

    /* Árnyékok */
    --glow-sm: 0 0 15px rgba(16, 185, 129, 0.15);
    --glow-md: 0 0 30px rgba(16, 185, 129, 0.25);
    --glow-lg: 0 0 50px rgba(16, 185, 129, 0.4);
    --shadow-hard: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/*==============================================================================
  2. RESET ÉS ALAPOK
==============================================================================*/

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    background: var(--void-black);
    color: var(--ghost-white);
    font-family: var(--font-primary);
    line-height: 1.7;
    background-image: var(--dark-bg-gradient);
    background-attachment: fixed;
    overflow-x: hidden;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--void-black);
}

::-webkit-scrollbar-thumb {
    background: var(--charcoal);
    border: 1px solid var(--deep-navy);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--emerald-glow);
}

/* Tipográfia */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    color: var(--ghost-white);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

a {
    color: var(--emerald-glow);
    text-decoration: none;
    transition: var(--transition-fast);
}

a:hover {
    color: var(--violet-pulse);
}

img,
video {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

/*==============================================================================
  3. BETÖLTŐ ANIMÁCIÓ
==============================================================================*/

#page-loader {
    position: fixed;
    inset: 0;
    background: var(--void-black);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: var(--spacing-md);
    transition: opacity 0.5s ease;
}

.loader-logo {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    background: var(--main-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: pulseGlow 2s infinite alternate;
}

.loader-bar {
    width: 200px;
    height: 4px;
    background: var(--charcoal);
    border-radius: 4px;
    overflow: hidden;
}

.loader-bar-inner {
    width: 0%;
    height: 100%;
    background: var(--main-gradient);
    animation: loadingAnim 2s ease-out forwards;
}

@keyframes loadingAnim {
    to {
        width: 100%;
    }
}

@keyframes pulseGlow {
    from {
        filter: drop-shadow(0 0 10px rgba(16, 185, 129, 0.2));
        transform: scale(1);
    }

    to {
        filter: drop-shadow(0 0 25px rgba(139, 92, 246, 0.5));
        transform: scale(1.05);
    }
}

/*==============================================================================
  4. FEJLÉC ÉS NAVIGÁCIÓ
==============================================================================*/

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: var(--spacing-md) 0;
    z-index: 1000;
    transition: var(--transition-med);
    background: transparent;
}

.main-header.scrolled {
    background: rgba(10, 15, 20, 0.85);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: var(--spacing-sm) 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--ghost-white);
    letter-spacing: -0.03em;
}

.main-nav .nav-list {
    list-style: none;
    display: flex;
    gap: var(--spacing-sm);
    align-items: center;
}

.main-nav .nav-link {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--slate-text);
    padding: 0.6rem 1rem;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
}

.main-nav .nav-link:hover,
.main-nav .nav-link.active {
    color: var(--emerald-glow);
    background: rgba(16, 185, 129, 0.08);
}

.header-controls {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.language-switcher button {
    background: transparent;
    border: 1px solid var(--steel-gray);
    color: var(--slate-text);
    padding: 4px 8px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.8rem;
    font-family: var(--font-display);
    transition: var(--transition-fast);
}

.language-switcher button:hover,
.language-switcher button.active {
    border-color: var(--emerald-glow);
    color: var(--emerald-glow);
    background: rgba(16, 185, 129, 0.05);
}

/* Mobil navigáció */
.mobile-nav-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.mobile-nav-toggle .icon-bar {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--ghost-white);
    margin: 6px 0;
    transition: var(--transition-med);
}

@media (max-width: 992px) {
    .mobile-nav-toggle {
        display: block;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: rgba(10, 15, 20, 0.98);
        backdrop-filter: blur(20px);
        padding: 6rem 2rem;
        transition: right var(--transition-med);
        border-left: 1px solid var(--steel-gray);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    }

    body.nav-open .main-nav {
        right: 0;
    }

    .main-nav .nav-list {
        flex-direction: column;
        align-items: flex-start;
    }

    .main-nav .nav-link {
        font-size: 1.2rem;
        width: 100%;
    }

    body.nav-open .mobile-nav-toggle .icon-bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    body.nav-open .mobile-nav-toggle .icon-bar:nth-child(2) {
        opacity: 0;
    }

    body.nav-open .mobile-nav-toggle .icon-bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

/*==============================================================================
  5. HERO SZEKCIÓ
==============================================================================*/

.hero {
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    filter: brightness(0.3) contrast(1.1);
    transform: scale(1.05);
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(16, 185, 129, 0.1), transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.1), transparent 50%),
        linear-gradient(to bottom, rgba(5, 5, 5, 0.2), var(--void-black));
    z-index: -1;
}

.hero-content {
    text-align: center;
    z-index: 1;
    max-width: 900px;
    padding: 0 var(--spacing-md);
    animation: fadeUp 1s ease-out forwards;
}

.hero-subheading {
    font-family: var(--font-code);
    color: var(--emerald-glow);
    font-size: 0.9rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: var(--spacing-md);
    display: block;
}

.hero-heading {
    font-size: clamp(3rem, 7vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--spacing-lg);
    background: linear-gradient(to right, #ffffff, #94a3b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.04em;
}

.hero-tagline {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    color: var(--slate-text);
    font-weight: 300;
    margin-bottom: var(--spacing-xl);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll indikátor */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--slate-text);
    font-size: 0.8rem;
    font-family: var(--font-code);
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0.7;
    animation: bounce 2s infinite;
    cursor: pointer;
}

.scroll-indicator .icon {
    font-size: 1.5rem;
    margin-top: 10px;
    color: var(--emerald-glow);
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/*==============================================================================
  6. GOMBOK
==============================================================================*/

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-family: var(--font-display);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    border-radius: var(--radius-sm);
    transition: var(--transition-med);
    cursor: pointer;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    margin: 5px;
    border: none;
}

.btn-primary {
    background: var(--emerald-glow);
    color: var(--void-black);
    border: 1px solid var(--emerald-glow);
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3);
}

.btn-primary:hover {
    background: var(--violet-pulse);
    border-color: var(--violet-pulse);
    color: #fff;
    box-shadow: 0 4px 25px rgba(139, 92, 246, 0.4);
    transform: translateY(-3px);
}

.btn-secondary {
    background: transparent;
    color: var(--ghost-white);
    border: 1px solid var(--steel-gray);
}

.btn-secondary:hover {
    border-color: var(--emerald-glow);
    color: var(--emerald-glow);
    background: rgba(16, 185, 129, 0.05);
}

.btn-delete {
    background: var(--crimson-alert);
    color: #fff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
}

.btn-delete:hover {
    transform: scale(1.1);
    box-shadow: 0 0 10px var(--crimson-alert);
}

/*==============================================================================
  7. SZEKCIÓK ÉS KÁRTYÁK
==============================================================================*/

.section {
    padding: var(--spacing-xl) 0;
    position: relative;
}

.page-header-section {
    padding-top: calc(80px + 4rem);
    padding-bottom: 4rem;
    text-align: center;
    background: var(--deep-navy);
    border-bottom: 1px solid var(--charcoal);
}

.section-title {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.section-title .sub-title {
    display: block;
    color: var(--emerald-glow);
    font-family: var(--font-code);
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: var(--spacing-sm);
}

.section-title .main-title {
    font-size: clamp(2rem, 5vw, 3rem);
    background: linear-gradient(to right, #fff, #cbd5e1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.info-card {
    background: var(--card-gradient);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    padding: var(--spacing-lg);
    transition: var(--transition-med);
    backdrop-filter: blur(10px);
}

.info-card:hover {
    border-color: var(--emerald-glow);
    transform: translateY(-5px);
    box-shadow: var(--glow-md);
}

/* Scroll reveal animáció */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/*==============================================================================
  8. TIMELINE KOMPONENS
==============================================================================*/

.timeline-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: var(--spacing-lg) 0;
}

.timeline-container::after {
    content: '';
    position: absolute;
    width: 2px;
    background: linear-gradient(to bottom, var(--deep-navy), var(--emerald-glow), var(--violet-pulse), var(--deep-navy));
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
}

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
    text-align: left;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    top: 20px;
    background: var(--void-black);
    border: 2px solid var(--emerald-glow);
    border-radius: 50%;
    z-index: 2;
    transition: var(--transition-fast);
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.3);
}

.timeline-item:nth-child(odd)::after {
    right: -8px;
}

.timeline-item:nth-child(even)::after {
    left: -8px;
}

.timeline-item:hover::after {
    background: var(--emerald-glow);
    box-shadow: 0 0 20px var(--emerald-glow);
    transform: scale(1.2);
}

.timeline-item-content {
    padding: 1.5rem;
    background: var(--card-gradient);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    position: relative;
    transition: var(--transition-med);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.timeline-item-content:hover {
    border-color: var(--violet-pulse);
    transform: translateY(-5px);
}

.timeline-date {
    display: block;
    font-family: var(--font-code);
    color: var(--emerald-glow);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

@media (max-width: 768px) {
    .timeline-container::after {
        left: 30px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 60px;
        padding-right: 10px;
        text-align: left !important;
    }

    .timeline-item:nth-child(even) {
        left: 0;
    }

    .timeline-item::after {
        left: 22px !important;
        right: auto;
    }
}

/*==============================================================================
  9. CSAPAT / TEAM MEMBERS - 2x3 GRID
==============================================================================*/

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 900px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.team-member-card {
    background: var(--charcoal);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.03);
    transition: var(--transition-med);
}

.team-member-card:hover {
    transform: translateY(-10px);
    border-color: var(--emerald-glow);
    box-shadow: var(--glow-sm);
}

.team-member-card .member-image {
    height: 360px;
    background-size: cover;
    background-position: center;
    position: relative;
    transition: var(--transition-slow);
}

.team-member-card:hover .member-image {
    filter: grayscale(0%);
}

.team-member-card .member-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, var(--charcoal), transparent);
}

.member-info {
    padding: 1.5rem;
    position: relative;
    z-index: 2;
    margin-top: -3rem;
}

.member-name {
    color: var(--ghost-white);
    font-size: 1.4rem;
    margin-bottom: 0.3rem;
    font-weight: 700;
}

.member-role {
    color: var(--violet-pulse);
    font-family: var(--font-code);
    font-size: 0.85rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: block;
    letter-spacing: 0.05em;
}

.member-bio {
    color: var(--slate-text);
    font-size: 0.95rem;
    line-height: 1.7;
}

/*==============================================================================
  10. GALÉRIA ÉS LIGHTBOX
==============================================================================*/

.gallery-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.filter-btn {
    background: transparent;
    border: 1px solid var(--steel-gray);
    color: var(--slate-text);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    cursor: pointer;
    font-family: var(--font-display);
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.filter-btn:hover,
.filter-btn.active {
    border-color: var(--emerald-glow);
    color: var(--void-black);
    background: var(--emerald-glow);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-sm);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    transition: transform 0.4s ease;
}

.gallery-item.hide {
    display: none;
}

.gallery-item.show {
    display: block;
    animation: zoomIn 0.4s ease forwards;
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: 0.3s ease;
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item-title {
    color: var(--ghost-white);
    font-size: 1.2rem;
    transform: translateY(10px);
    transition: 0.3s ease;
}

.gallery-item-category {
    color: var(--emerald-glow);
    font-family: var(--font-code);
    font-size: 0.8rem;
    transform: translateY(10px);
    transition: 0.3s ease 0.1s;
}

.gallery-item:hover .gallery-item-title,
.gallery-item:hover .gallery-item-category {
    transform: translateY(0);
}

.gallery-item.is-video::after {
    content: '\f144';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.8);
    pointer-events: none;
    transition: 0.3s;
}

.gallery-item.is-video:hover::after {
    color: var(--emerald-glow);
    transform: translate(-50%, -50%) scale(1.1);
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(10px);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
}

.lightbox.show {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    max-width: 90vw;
    max-height: 85vh;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.8);
    position: relative;
    animation: scaleUp 0.3s ease;
}

@keyframes scaleUp {
    from {
        transform: scale(0.9);
    }

    to {
        transform: scale(1);
    }
}

.lightbox-content img,
.lightbox-content video {
    max-width: 100%;
    max-height: 85vh;
    border-radius: 4px;
    display: block;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: 0.2s;
    z-index: 2001;
}

.lightbox-close {
    top: 20px;
    right: 20px;
}

.lightbox-prev {
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
}

.lightbox-next {
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--emerald-glow);
    color: var(--void-black);
    border-color: var(--emerald-glow);
}

.lightbox-caption {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    padding: 10px 20px;
    border-radius: 8px;
    text-align: center;
    max-width: 80%;
}

.lightbox-caption-title {
    display: block;
    color: var(--emerald-glow);
    font-weight: 700;
    margin-bottom: 4px;
}

.lightbox-caption-desc {
    font-size: 0.9rem;
    color: #ccc;
}

/* Oldalszámozás */
.pagination-container {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 2rem;
}

.pagination-link {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--steel-gray);
    border-radius: 50%;
    color: var(--slate-text);
    transition: 0.2s;
}

.pagination-link:hover,
.pagination-link.active {
    background: var(--emerald-glow);
    color: var(--void-black);
    border-color: var(--emerald-glow);
}

/*==============================================================================
  11. KAPCSOLAT ÉS ŰRLAPOK
==============================================================================*/

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: start;
}

@media(max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

.contact-info .info-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-info .info-item i {
    font-size: 1.8rem;
    color: var(--emerald-glow);
    width: 50px;
    text-align: center;
    filter: drop-shadow(0 0 5px rgba(16, 185, 129, 0.4));
}

.contact-form {
    background: var(--card-gradient);
    padding: 2.5rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--ghost-white);
    font-weight: 500;
    font-size: 0.9rem;
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    background: var(--deep-navy);
    border: 1px solid var(--steel-gray);
    padding: 1rem;
    color: var(--ghost-white);
    border-radius: var(--radius-sm);
    font-family: var(--font-primary);
    transition: 0.3s;
    outline: none;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    border-color: var(--emerald-glow);
    box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.1);
}

.form-textarea {
    min-height: 150px;
    resize: vertical;
}

/* Támogatási kártyák */
.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.support-card {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-md);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.03);
    transition: 0.3s;
}

.support-card:hover {
    border-color: var(--emerald-glow);
    transform: translateY(-5px);
}

.support-icon {
    font-size: 2.5rem;
    color: var(--emerald-glow);
    margin-bottom: 1rem;
}

.feedback {
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: var(--radius-sm);
    text-align: center;
    font-weight: 600;
}

.feedback.success {
    background: rgba(16, 185, 129, 0.15);
    color: var(--emerald-glow);
}

.feedback.error {
    background: rgba(239, 68, 68, 0.15);
    color: var(--crimson-alert);
}

/*==============================================================================
  12. LÁBLÉC
==============================================================================*/

.main-footer {
    margin-top: 5rem;
    padding-top: 4rem;
    background: var(--deep-navy);
    border-top: 1px solid var(--charcoal);
    position: relative;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding-bottom: 3rem;
    padding-top: 2rem;
}

.footer-widget h4 {
    color: #fff;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-widget h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--emerald-glow);
}

.footer-widget ul {
    list-style: none;
}

.footer-widget ul li {
    margin-bottom: 10px;
}

.footer-widget a {
    color: var(--slate-text);
    transition: var(--transition-fast);
}

.footer-widget a:hover {
    color: var(--emerald-glow);
    padding-left: 5px;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 1.5rem 0;
    text-align: center;
    color: var(--steel-gray);
    font-size: 0.9rem;
}

/* Szponzorok */
.footer-sponsors-section {
    padding: 2rem 0;
    margin-bottom: 2rem;
    text-align: center;
    border-bottom: 1px solid var(--charcoal);
}

.sponsors-logo-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 1rem;
}

.sponsor-link {
    background: #fff;
    padding: 10px;
    border-radius: 4px;
    transition: 0.3s;
}

.sponsor-link:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px var(--emerald-glow);
}

.sponsor-link img {
    height: 200px;
    width: auto;
}

/*==============================================================================
  13. ADMIN PANEL
==============================================================================*/

body.admin-body {
    background: var(--deep-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.admin-wrapper {
    width: 100%;
    max-width: 1200px;
    padding: var(--spacing-md);
}

.admin-login-box {
    max-width: 400px;
    margin: 0 auto;
    background: var(--charcoal);
    padding: 3rem 2rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--steel-gray);
    box-shadow: var(--shadow-hard);
}

.admin-login-box h1 {
    text-align: center;
    color: var(--emerald-glow);
    margin-bottom: 2rem;
}

.admin-panel-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

@media(max-width: 1024px) {
    .admin-panel-layout {
        grid-template-columns: 1fr;
    }
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--charcoal);
    margin-bottom: 2rem;
}

.admin-card {
    background: var(--charcoal);
    padding: 1.5rem;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.02);
    margin-bottom: 1.5rem;
}

.admin-card h3 {
    border-bottom: 1px solid var(--steel-gray);
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
    color: var(--ghost-white);
}

/* Admin galéria */
.admin-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
}

.admin-gallery-item {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid var(--steel-gray);
}

.admin-gallery-item img {
    height: 120px;
    width: 100%;
    object-fit: cover;
}

.admin-gallery-item .item-title {
    background: rgba(0, 0, 0, 0.8);
    padding: 5px;
    font-size: 0.75rem;
    color: #fff;
    position: absolute;
    bottom: 0;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.admin-gallery-item .btn-delete {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 24px;
    height: 24px;
}

/* Feltöltési zóna */
.upload-drop-zone {
    border: 2px dashed var(--steel-gray);
    background: rgba(0, 0, 0, 0.2);
    padding: 3rem;
    text-align: center;
    border-radius: var(--radius-sm);
    color: var(--slate-text);
    cursor: pointer;
    transition: 0.2s;
}

.upload-drop-zone:hover,
.upload-drop-zone.dragover {
    border-color: var(--emerald-glow);
    background: rgba(16, 185, 129, 0.05);
    color: var(--emerald-glow);
}

/* Admin nyelvváltó fülek */
.admin-lang-tabs {
    display: flex;
    border-bottom: 1px solid var(--steel-gray);
    margin-bottom: 1rem;
}

.lang-tab-btn {
    background: transparent;
    border: none;
    padding: 0.5rem 1rem;
    color: var(--slate-text);
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: var(--transition-fast);
}

.lang-tab-btn.active {
    color: var(--emerald-glow);
    border-color: var(--emerald-glow);
}

.lang-content-panel {
    display: none;
}

.lang-content-panel.active {
    display: block;
    animation: fadeUp 0.3s;
}

/*==============================================================================
  14. VIDEÓLEJÁTSZÓ
==============================================================================*/

.video-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    background: #000;
    border: 1px solid var(--charcoal);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.video-container video {
    width: 100%;
    display: block;
}

.custom-video-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    opacity: 0;
    transition: 0.3s;
}

.video-container:hover .custom-video-controls {
    opacity: 1;
}

.custom-video-controls button {
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    font-size: 1.1rem;
    transition: var(--transition-fast);
}

.custom-video-controls button:hover {
    color: var(--emerald-glow);
}

.video-timeline-container {
    flex-grow: 1;
    height: 5px;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    border-radius: 5px;
    position: relative;
}

.timeline-progress {
    height: 100%;
    width: 0%;
    background: var(--emerald-glow);
    border-radius: 5px;
    box-shadow: 0 0 10px var(--emerald-glow);
}

.volume-container {
    display: flex;
    align-items: center;
}

.volume-slider {
    width: 0;
    overflow: hidden;
    transition: 0.3s;
    height: 4px;
}

.volume-container:hover .volume-slider {
    width: 80px;
    margin-left: 10px;
}

/*==============================================================================
  15. SEGÉDOSZTÁLYOK ÉS RESZPONZÍV KIEGÉSZÍTÉSEK
==============================================================================*/

.text-center {
    text-align: center;
}

.mb-1 {
    margin-bottom: 1rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mt-1 {
    margin-top: 1rem;
}

.mt-2 {
    margin-top: 2rem;
}

.hidden {
    display: none !important;
}

.visible {
    display: block !important;
}

/* Reszponzív médiaképernyők */
@media (max-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

@media (max-width: 992px) {
    :root {
        --spacing-xl: 3rem;
    }

    .hero {
        min-height: 600px;
    }

    .section {
        padding: 3rem 0;
    }
}

@media (max-width: 768px) {
    :root {
        --spacing-lg: 1.5rem;
        --spacing-xl: 2.5rem;
    }

    .hero {
        min-height: 500px;
    }

    .hero-heading {
        font-size: 2.5rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }

    .admin-gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 var(--spacing-md);
    }

    .btn {
        width: 100%;
        margin: 5px 0;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .lightbox-prev,
    .lightbox-next {
        width: 36px;
        height: 36px;
    }
}

/*==============================================================================
  16. PRINT STÍLUSOK
==============================================================================*/

@media print {

    .main-header,
    .main-footer,
    .mobile-nav-toggle,
    .scroll-indicator,
    .btn,
    .lightbox {
        display: none !important;
    }

    body {
        background: white;
        color: black;
    }

    .section {
        page-break-inside: avoid;
    }
}

/*==============================================================================
  VÉGE - Optimalizált és tisztított CSS
==============================================================================*/