/* MyTiszaföldvár - Alap CSS Stílusok */

/* Google Fonts import */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;500;600;700;800&display=swap');

/* CSS Reset és alapbeállítások */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body padding a fix header miatt */
body {
    padding-top: 85px;
}

@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }
}

/* Alap változók - Világos mód */
:root {
    /* Primary Colors - Arany skála */
    --primary-color: #F4D03F;           /* Főgombok, linkek, headerek - Arany */
    --primary-light: #F7DC6F;           /* Hover állapotok, kiemelések - Világosabb arany */
    --primary-dark: #DAA520;            /* Active állapotok, árnyékok - Sötétebb arany */
    
    /* Secondary Colors - Kék skála */
    --secondary-color: #154360;         /* Másodlagos gombok, navigáció - Kék */
    --secondary-light: #1E3A8A;         /* Interaktív elemek, badge-ek - Sötét kék */
    --secondary-dark: #154360;          /* Footer, sötét szekció - Kék */
    
    /* Semantic Colors */
    --success-color: #659669;           /* Sikeres műveletek, megerősítések */
    --warning-color: #F59E88;           /* Figyelmeztetések, fontos infók */
    --error-color: #DC2626;             /* Hibák, törlés gombok */
    --info-color: #0EA5E9;              /* Információs üzenetek, tooltipek */
    
    /* Grayscale Palette */
    --gray-50: #F9FAFB;                 /* Fő háttér, section backgrounds */
    --gray-100: #F3F4F6;                /* Card háttér, hover állapotok */
    --gray-200: #E5E7EB;                /* Borderek, elválasztók */
    --gray-500: #687280;                /* Másodlagos szövegek, placeholderek */
    --gray-800: #1F2937;                /* Fő szöveg, címek */
    
    /* Alap színek */
    --text-color: var(--gray-800);
    --light-text: var(--gray-500);
    --background-color: var(--gray-50);
    --light-background: var(--gray-100);
    --border-color: var(--gray-200);
    --card-background: #ffffff;
    --input-background: #ffffff;
    --input-border: var(--gray-200);
    --hover-background: var(--gray-100);
    --code-background: var(--gray-100);
    --blockquote-border: var(--gray-200);
    
    /* Effektek */
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --border-radius: 8px;
    --transition: all 0.3s ease;
    
    /* Timeline specifikus változók - Világos mód */
    --timeline-bg-start: #f8fafc;
    --timeline-bg-end: #e2e8f0;
    --timeline-title-color: #1e293b;
    --timeline-gradient-start: #f4d03f;
    --timeline-gradient-end: #f39c12;
    --timeline-title-shadow: rgba(244, 208, 63, 0.3);
    --timeline-subtitle-color: #64748b;
    --timeline-line-start: #f4d03f;
    --timeline-line-mid1: #f39c12;
    --timeline-line-mid2: #e67e22;
    --timeline-line-mid3: #d35400;
    --timeline-line-end: #f4d03f;
    --timeline-line-shadow: rgba(244, 208, 63, 0.4);
    --timeline-line-shadow-light: rgba(244, 208, 63, 0.2);
    --timeline-date-bg-start: #f4d03f;
    --timeline-date-bg-end: #f39c12;
    --timeline-date-text: #1e293b;
    --timeline-date-shadow: rgba(244, 208, 63, 0.3);
    --timeline-date-shadow-light: rgba(244, 208, 63, 0.2);
    --timeline-date-border: #1e293b;
    --timeline-date-shadow-hover: rgba(244, 208, 63, 0.4);
    --timeline-date-shadow-hover-light: rgba(244, 208, 63, 0.3);
    --timeline-date-bg-hover-start: #f39c12;
    --timeline-date-bg-hover-end: #f4d03f;
    --timeline-card-bg-start: #ffffff;
    --timeline-card-bg-end: #f8fafc;
    --timeline-card-shadow: rgba(0, 0, 0, 0.1);
    --timeline-card-shadow-light: rgba(0, 0, 0, 0.05);
    --timeline-card-accent-start: #f4d03f;
    --timeline-card-accent-end: #f39c12;
    --timeline-card-shadow-hover: rgba(0, 0, 0, 0.15);
    --timeline-card-shadow-hover-light: rgba(0, 0, 0, 0.1);
    --timeline-card-border-hover: #f4d03f;
    --timeline-card-title: #1e293b;
    --timeline-card-title-shadow: rgba(0, 0, 0, 0.1);
    --timeline-card-text: #475569;
    --timeline-card-text-shadow: rgba(0, 0, 0, 0.05);
    --timeline-image-shadow: rgba(0, 0, 0, 0.1);
    --timeline-image-shadow-light: rgba(0, 0, 0, 0.05);
    --timeline-image-border: rgba(244, 208, 63, 0.2);
    --timeline-image-overlay-start: rgba(244, 208, 63, 0.1);
    --timeline-image-overlay-end: rgba(243, 156, 18, 0.1);
    --timeline-image-filter: brightness(0.95) contrast(1.05);
    --timeline-image-filter-hover: brightness(1) contrast(1.1);
}

/* Dark mode változók */
[data-theme="dark"] {
    /* Primary Colors - Arany skála (sötétebb) */
    --primary-color: #DAA520;           /* Főgombok, linkek, headerek - Sötétebb arany */
    --primary-light: #F4D03F;           /* Hover állapotok, kiemelések - Arany */
    --primary-dark: #B8860B;            /* Active állapotok, árnyékok - Sötét arany */
    
    /* Secondary Colors - Kék skála (sötétebb) */
    --secondary-color: #0A2A3D;         /* Másodlagos gombok, navigáció - Sötét kék */
    --secondary-light: #154360;         /* Interaktív elemek, badge-ek - Közepes kék */
    --secondary-dark: #0A2A3D;          /* Footer, sötét szekció - Sötét kék */
    
    /* Semantic Colors (sötétebb) */
    --success-color: #059669;           /* Sikeres műveletek, megerősítések */
    --warning-color: #D97706;           /* Figyelmeztetések, fontos infók */
    --error-color: #DC2626;             /* Hibák, törlés gombok */
    --info-color: #0284C7;              /* Információs üzenetek, tooltipek */
    
    /* Grayscale Palette (sötét) */
    --gray-50: #111827;                 /* Fő háttér, section backgrounds */
    --gray-100: #1F2937;                /* Card háttér, hover állapotok */
    --gray-200: #374151;                /* Borderek, elválasztók */
    --gray-500: #6B7280;                /* Másodlagos szövegek, placeholderek */
    --gray-800: #F9FAFB;                /* Fő szöveg, címek */
    
    /* Alap színek */
    --text-color: var(--gray-800);
    --light-text: var(--gray-500);
    --background-color: var(--gray-50);
    --light-background: var(--gray-100);
    --border-color: var(--gray-200);
    --card-background: var(--gray-100);
    --input-background: var(--gray-100);
    --input-border: var(--gray-200);
    --hover-background: var(--gray-200);
    --code-background: var(--gray-50);
    --blockquote-border: var(--gray-200);
    
    /* Effektek */
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
    
    /* Timeline specifikus változók - Sötét mód */
    --timeline-bg-start: #0f172a;
    --timeline-bg-end: #1e293b;
    --timeline-title-color: #ffffff;
    --timeline-gradient-start: #f4d03f;
    --timeline-gradient-end: #f39c12;
    --timeline-title-shadow: rgba(244, 208, 63, 0.3);
    --timeline-subtitle-color: #94a3b8;
    --timeline-line-start: #f4d03f;
    --timeline-line-mid1: #f39c12;
    --timeline-line-mid2: #e67e22;
    --timeline-line-mid3: #d35400;
    --timeline-line-end: #f4d03f;
    --timeline-line-shadow: rgba(244, 208, 63, 0.4);
    --timeline-line-shadow-light: rgba(244, 208, 63, 0.2);
    --timeline-date-bg-start: #f4d03f;
    --timeline-date-bg-end: #f39c12;
    --timeline-date-text: #1e293b;
    --timeline-date-shadow: rgba(244, 208, 63, 0.3);
    --timeline-date-shadow-light: rgba(244, 208, 63, 0.2);
    --timeline-date-border: #1e293b;
    --timeline-date-shadow-hover: rgba(244, 208, 63, 0.4);
    --timeline-date-shadow-hover-light: rgba(244, 208, 63, 0.3);
    --timeline-date-bg-hover-start: #f39c12;
    --timeline-date-bg-hover-end: #f4d03f;
    --timeline-card-bg-start: #1e293b;
    --timeline-card-bg-end: #334155;
    --timeline-card-shadow: rgba(0, 0, 0, 0.3);
    --timeline-card-shadow-light: rgba(0, 0, 0, 0.2);
    --timeline-card-accent-start: #f4d03f;
    --timeline-card-accent-end: #f39c12;
    --timeline-card-shadow-hover: rgba(0, 0, 0, 0.4);
    --timeline-card-shadow-hover-light: rgba(0, 0, 0, 0.3);
    --timeline-card-border-hover: #f4d03f;
    --timeline-card-title: #ffffff;
    --timeline-card-title-shadow: rgba(0, 0, 0, 0.3);
    --timeline-card-text: #cbd5e1;
    --timeline-card-text-shadow: rgba(0, 0, 0, 0.2);
    --timeline-image-shadow: rgba(0, 0, 0, 0.3);
    --timeline-image-shadow-light: rgba(0, 0, 0, 0.2);
    --timeline-image-border: rgba(244, 208, 63, 0.1);
    --timeline-image-overlay-start: rgba(244, 208, 63, 0.1);
    --timeline-image-overlay-end: rgba(243, 156, 18, 0.1);
    --timeline-image-filter: brightness(0.9) contrast(1.1);
    --timeline-image-filter-hover: brightness(1) contrast(1.2);
}

/* Alap stílusok */
* {
    font-family: 'Nunito', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
    transition: var(--transition);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Nunito', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-color);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    color: var(--light-text);
}

/* Linkek */
a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
    text-decoration: none;
}

/* Gombok */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: white !important;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Nunito', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 500;
    text-align: center;
    box-shadow: var(--shadow);
}

.btn:hover {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px -8px rgba(218, 165, 32, 0.4);
    color: white !important;
}

.btn-secondary {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-light) 100%);
    color: white !important;
    border: none;
    box-shadow: var(--shadow);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, var(--secondary-light) 0%, var(--secondary-color) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px -8px rgba(30, 58, 186, 0.4);
    color: white !important;
}

/* Semantic gombok */
.btn-success {
    background: linear-gradient(135deg, var(--success-color) 0%, #10B981 100%);
    color: white !important;
}

.btn-warning {
    background: linear-gradient(135deg, var(--warning-color) 0%, #F59E0B 100%);
    color: white !important;
}

.btn-error {
    background: linear-gradient(135deg, var(--error-color) 0%, #EF4444 100%);
    color: white !important;
}

.btn-info {
    background: linear-gradient(135deg, var(--info-color) 0%, #3B82F6 100%);
    color: white !important;
}

/* Outline gombok */
.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white !important;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Hero Section - Teljes képernyős */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    margin-bottom: 0;
}

/* Hero háttér */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Hero overlay - Kék-arany gradient */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(21, 67, 96, 0.8) 0%, 
        rgba(21, 67, 96, 0.6) 30%, 
        rgba(244, 208, 63, 0.4) 70%, 
        rgba(244, 208, 63, 0.6) 100%);
    z-index: 2;
}

/* Hero tartalom */
.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding: 0 2rem;
    color: white;
}

/* Hero badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    margin-bottom: 2rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: white;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.hero-badge:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-badge i {
    font-size: 1rem;
    color: var(--primary-light);
}

/* Hero cím */
.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

/* Hero alcím */
.hero-subtitle {
    font-size: 1.375rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.6;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

/* Hero gombok */
.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Hero gombok stílusai */
.btn-hero-primary {
    background: var(--primary-color);
    color: white !important;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    border: 2px solid transparent;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(244, 208, 63, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-hero-primary:hover {
    background: var(--primary-light);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(244, 208, 63, 0.6);
    color: white !important;
}

.btn-hero-secondary {
    background: var(--secondary-color);
    color: white !important;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    border: 2px solid transparent;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-light);
    color: var(--primary-light) !important;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Reszponzív hero */
@media (max-width: 768px) {
    .hero-section {
        height: 100vh;
        min-height: 500px;
    }
    
    .hero-content {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
        margin-bottom: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        max-width: 280px;
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
        border-radius: 40px;
    }
    
    .hero-badge {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
}

/* Grid rendszer */
.grid {
    display: grid;
    gap: 2rem;
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* Kártyák */
.card {
    background-color: var(--card-background);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px -8px rgba(0, 0, 0, 0.2);
}

/* Űrlapok */
input, textarea, select {
    font-family: 'Nunito', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--input-background);
    border: 1px solid var(--input-border);
    color: var(--text-color);
    padding: 0.75rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
}

/* Kód blokkok */
code, pre {
    background-color: var(--code-background);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 0.5rem;
    font-family: 'Courier New', monospace;
}

/* Idézetek */
blockquote {
    border-left: 4px solid var(--blockquote-border);
    padding-left: 1rem;
    margin: 1rem 0;
    font-style: italic;
    color: var(--light-text);
}

/* Text Section Komponensek */
.text-section {
    padding: 5rem 0;
    background-color: var(--background-color);
    width: 100%;
    position: relative;
    overflow: hidden;
}

.text-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 100%;
    background-color: var(--background-color);
    z-index: -1;
}

.text-section-reverse {
    padding: 5rem 0;
    background-color: var(--light-background);
    width: 100%;
    position: relative;
    overflow: hidden;
    /* Ugyanaz a stílus, mint a sima text-section */
}

.text-section-reverse::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 100%;
    background-color: var(--light-background);
    z-index: -1;
}

.text-section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    /* Egységes stílus mindkét szekcióra */
    position: relative;
    z-index: 1;
}

.text-section-reverse .text-section-container {
    grid-template-columns: 1fr 1fr;
    /* Ugyanaz a grid beállítás, mint a sima text-section */
}

/* Reszponzív grid beállítások mindkét szekcióra */
@media (max-width: 768px) {
    .text-section .text-section-container,
    .text-section-reverse .text-section-container {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
    }
    
    /* Reverse section esetén a kép felül, szöveg alul */
    .text-section-reverse .text-section-container {
        grid-template-areas: 
            "image"
            "content";
    }
    
    /* Sima section esetén a szöveg felül, kép alul */
    .text-section .text-section-container {
        grid-template-areas: 
            "content"
            "image";
    }
}

.text-section-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.text-section-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    line-height: 1.2;
    margin-bottom: 0;
}

.text-section-content h3 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-color);
    line-height: 1.3;
    margin-bottom: 0;
}

.text-section-content p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--light-text);
    margin-bottom: 0;
}

.text-section-content .btn {
    align-self: flex-start;
    margin-top: 0.5rem;
    border-radius: 50px;
    padding: 0.875rem 1.75rem;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.text-section-content .btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.text-section-image {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    aspect-ratio: 1/1;
    max-width: 500px;
    margin: 0 auto;
    transform-style: preserve-3d;
    perspective: 1200px;
    /* Alapállapot - JavaScript fogja kezelni */
    transform: perspective(1200px) rotateX(2deg) rotateY(2deg);
    box-sizing: border-box;
    /* Smooth átmenetek */
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
                box-shadow 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.text-section-image img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    object-position: center;
    /* Alapállapot - JavaScript fogja kezelni */
    transform: translateZ(5px);
    /* Erős 3D effekt a képekhez */
    display: block;
    box-sizing: border-box;
    filter: brightness(1.02) contrast(1.01);
    /* Smooth átmenetek */
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
                filter 0.3s ease;
}

/* Hover effekt JavaScript által kezelve */

/* Hover after effekt eltávolítva */

/* Hover img effekt JavaScript által kezelve */

/* Alsó sáv leírás eltávolítva */

/* Reszponzív text section - Egységes rendszer mindkét szekcióra */
@media (max-width: 1200px) {
    .text-section .text-section-container,
    .text-section-reverse .text-section-container {
        gap: 3.5rem;
        padding: 0 2rem;
    }
    
    .text-section-content h2 {
        font-size: 2.25rem;
    }
    
    .text-section-content h3 {
        font-size: 1.75rem;
    }
    
    .text-section-content p {
        font-size: 1.125rem;
    }
}

@media (max-width: 1024px) {
    .text-section .text-section-container,
    .text-section-reverse .text-section-container {
        gap: 3rem;
        padding: 0 1.5rem;
    }
    
    .text-section-content h2 {
        font-size: 2rem;
    }
    
    .text-section-content h3 {
        font-size: 1.625rem;
    }
    
    .text-section-content p {
        font-size: 1.1rem;
    }
    
    .text-section-image {
        max-width: 450px;
    }
}

@media (max-width: 768px) {
    .text-section,
    .text-section-reverse {
        padding: 3rem 0;
        width: 100%;
        position: relative;
        overflow: hidden;
    }
    
    .text-section::before,
    .text-section-reverse::before {
        width: 100vw;
    }
    
    .text-section .text-section-container,
    .text-section-reverse .text-section-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 0 1.5rem;
        text-align: center;
    }
    
    .text-section-content h2 {
        font-size: 1.875rem;
    }
    
    .text-section-content h3 {
        font-size: 1.5rem;
    }
    
    .text-section-content p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .text-section-content .btn {
        align-self: center;
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .text-section-image {
        max-width: 380px;
        margin: 0 auto;
    }
    
    .text-section-image img {
        height: 100%;
    }
    
    /* Alsó sáv leírás eltávolítva */
}

@media (max-width: 480px) {
    .text-section,
    .text-section-reverse {
        padding: 2.5rem 0;
        width: 100%;
        position: relative;
        overflow: hidden;
    }
    
    .text-section::before,
    .text-section-reverse::before {
        width: 100vw;
    }
    
    .text-section .text-section-container,
    .text-section-reverse .text-section-container {
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .text-section-content h2 {
        font-size: 1.625rem;
        line-height: 1.2;
    }
    
    .text-section-content h3 {
        font-size: 1.375rem;
        line-height: 1.3;
    }
    
    .text-section-content p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .text-section-content .btn {
        padding: 0.625rem 1.25rem;
        font-size: 0.875rem;
        border-radius: 40px;
    }
    
    .text-section-image {
        max-width: 320px;
        margin: 0 auto;
    }
    
    .text-section-image img {
        height: 100%;
    }
    
    /* Alsó sáv leírás eltávolítva */
}

/* Extra kis képernyős optimalizáció */
@media (max-width: 360px) {
    .text-section,
    .text-section-reverse {
        padding: 2rem 0;
    }
    
    .text-section .text-section-container,
    .text-section-reverse .text-section-container {
        gap: 1.5rem;
        padding: 0 0.75rem;
    }
    
    .text-section-content h2 {
        font-size: 1.5rem;
    }
    
    .text-section-content h3 {
        font-size: 1.25rem;
    }
    
    .text-section-content p {
        font-size: 0.875rem;
    }
    
    .text-section-content .btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
        width: 100%;
        max-width: 280px;
    }
    
    .text-section-image {
        max-width: 280px;
    }
    
    /* Alsó sáv leírás eltávolítva */
}

/* Reszponzív */
@media (max-width: 768px) {
    .grid-2, .grid-3, .grid-4 {
        grid-template-columns: 1fr;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }
    
    .container {
        padding: 0 0.5rem;
    }
}

/* Alert komponensek */
.alert {
    padding: 1rem;
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    border-left: 4px solid;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.alert-success {
    background-color: rgba(101, 150, 105, 0.1);
    border-color: var(--success-color);
    color: var(--success-color);
}

.alert-info {
    background-color: rgba(14, 165, 233, 0.1);
    border-color: var(--info-color);
    color: var(--info-color);
}

.alert-warning {
    background-color: rgba(245, 158, 136, 0.1);
    border-color: var(--warning-color);
    color: var(--warning-color);
}

.alert-error {
    background-color: rgba(220, 38, 38, 0.1);
    border-color: var(--error-color);
    color: var(--error-color);
}

/* Badge komponensek */
.badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.badge-primary {
    background-color: var(--primary-color);
    color: white;
}

.badge-secondary {
    background-color: var(--secondary-color);
    color: white;
}

.badge-success {
    background-color: var(--success-color);
    color: white;
}

.badge-warning {
    background-color: var(--warning-color);
    color: white;
}

.badge-error {
    background-color: var(--error-color);
    color: white;
}

.badge-info {
    background-color: var(--info-color);
    color: white;
}

/* Utility osztályok */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.p-1 { padding: 0.5rem; }
.p-2 { padding: 1rem; }
.p-3 { padding: 1.5rem; }
.p-4 { padding: 2rem; }

/* Header és Navigáció */
.header {
    background: #154360;
    border-bottom: none; /* Eltávolítom a fehér csíkot okozó border-t */
    box-shadow: var(--shadow);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(21, 67, 96, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 85px;
}

/* Logo és brand név */
.header-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin: 0;
}

/* Navigációs menü */
.main-navigation {
    padding-top: 0;
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    color: white;
    text-decoration: none;
    border-radius: var(--border-radius);
    transition: var(--transition);
    font-weight: 500;
}

.nav-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--primary-light);
    text-decoration: none;
}

.nav-link.active {
    background-color: var(--primary-color);
    color: white;
    box-shadow: 0 2px 8px rgba(218, 165, 32, 0.3);
}

.nav-link i {
    font-size: 1.1rem;
}

/* Dropdown menük */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    position: relative;
    cursor: pointer;
}

.dropdown-arrow {
    font-size: 0.875rem;
    transition: var(--transition);
}

.dropdown.open .dropdown-arrow {
    transform: rotate(180deg);
}

/* Asztali dropdown menük */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--card-background);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    z-index: 1001;
    list-style: none;
    margin: 0;
    padding: 0.5rem 0;
}

.dropdown.open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 400;
}

.dropdown-item:hover {
    background-color: var(--hover-background);
    color: var(--primary-color);
    text-decoration: none;
}

.dropdown-item i {
    font-size: 1rem;
    color: var(--light-text);
}

.dropdown-item:hover i {
    color: var(--primary-color);
}

/* Mobil menü toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
    z-index: 10000;
}

.mobile-menu-toggle:hover {
    background-color: var(--hover-background);
    color: var(--primary-color);
}

/* Reszponzív header */
@media (max-width: 1024px) {
    .nav-menu {
        gap: 0.25rem;
    }
    
    .nav-link {
        padding: 0.5rem 0.75rem;
        font-size: 0.875rem;
    }
    
    .brand-name {
        font-size: 1.25rem;
    }
}

@media (max-width: 768px) {
    .main-navigation {
        position: fixed;
        top: 70px;
        right: 0;
        bottom: 0;
        width: 85%;
        height: calc(100vh - 70px);
        background: linear-gradient(135deg, var(--secondary-color) 0%, #0a2a3d 100%);
        border-left: 3px solid var(--primary-color);
        box-shadow: -8px 0 30px rgba(0, 0, 0, 0.4);
        transform: translateX(100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 9999;
        overflow-y: auto;
        display: block;
        pointer-events: none;
        margin: 0;
        padding: 0;
        
        /* Scrollbar stílus */
        scrollbar-width: thin;
        scrollbar-color: var(--primary-color) var(--secondary-color);
        
        /* Webkit scrollbar stílus */
        &::-webkit-scrollbar {
            width: 6px;
        }
        
        &::-webkit-scrollbar-track {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 3px;
        }
        
        &::-webkit-scrollbar-thumb {
            background: var(--primary-color);
            border-radius: 3px;
            transition: all 0.3s ease;
        }
        
        &::-webkit-scrollbar-thumb:hover {
            background: var(--primary-light);
            box-shadow: 0 0 8px rgba(244, 208, 63, 0.5);
        }
    }
    
    /* MOBIL DROPDOWN MENÜK - TELJESEN ÚJRAÉPÍTVE */
    .main-navigation .dropdown-menu {
        /* ALAPÁLLAPOT - REJTETT */
        position: static !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        transform: none !important;
        float: none !important;
        display: block !important;
        width: 100% !important;
        min-width: auto !important;
        max-width: none !important;
        
        /* HÁTTÉR ÉS KERET */
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%) !important;
        border: none !important;
        border-left: 4px solid var(--primary-color) !important;
        box-shadow: none !important;
        
        /* POZÍCIÓ - ALATTA JELENIK MEG */
        margin: 0 !important;
        padding: 0 !important;
        inset: auto !important;
        
        /* LÁTHATÓSÁG - REJTETT */
        opacity: 0 !important;
        visibility: hidden !important;
        max-height: 0 !important;
        overflow: hidden !important;
        
        /* ÁTMENETEK */
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
        z-index: auto !important;
    }
    
    /* DROPDOWN MEGNYITOTT ÁLLAPOT */
    .main-navigation .dropdown.open .dropdown-menu,
    .main-navigation .dropdown.mobile-open .dropdown-menu {
        opacity: 1 !important;
        visibility: visible !important;
        max-height: 500px !important;
        overflow: visible !important;
        padding: 0.75rem 0 !important;
        margin-left: 0 !important;
        border-left: 4px solid var(--primary-color) !important;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%) !important;
        transform: translateX(0) !important;
    }
    
    /* DROPDOWN ZÁRÁS ANIMÁCIÓ */
    .main-navigation .dropdown-menu {
        transform: translateX(-10px) !important;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
        opacity: 0 !important;
        visibility: hidden !important;
    }
    
    .main-navigation .dropdown.open .dropdown-menu,
    .main-navigation .dropdown.mobile-open .dropdown-menu {
        transform: translateX(0) !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    /* DROPDOWN ITEM-EK STÍLUSA */
    .main-navigation .dropdown-menu .dropdown-item {
        padding: 1rem 2rem !important;
        color: rgba(255, 255, 255, 0.85) !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.03) !important;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
        font-size: 1rem !important;
        font-weight: 400 !important;
        display: flex !important;
        align-items: center !important;
        text-decoration: none !important;
        justify-content: flex-start !important;
    }
    
    .main-navigation .dropdown-menu .dropdown-item:hover {
        background: linear-gradient(90deg, rgba(244, 208, 63, 0.1) 0%, rgba(244, 208, 63, 0.05) 100%) !important;
        color: var(--primary-color) !important;
        padding-left: 2.5rem !important;
        transform: translateX(5px) !important;
        box-shadow: inset 4px 0 0 var(--primary-color) !important;
    }
    
    .main-navigation .dropdown-menu .dropdown-item:last-child {
        border-bottom: none !important;
    }
    
    .main-navigation .dropdown-menu .dropdown-item i {
        color: var(--primary-color) !important;
        margin-right: 1rem !important;
        font-size: 1.1rem !important;
        min-width: 24px !important;
        text-align: center !important;
        background: rgba(244, 208, 63, 0.1) !important;
        padding: 0.4rem !important;
        border-radius: 6px !important;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    }
    
    .main-navigation .dropdown-menu .dropdown-item:hover i {
        background: rgba(244, 208, 63, 0.2) !important;
        transform: scale(1.1) !important;
        box-shadow: 0 2px 8px rgba(244, 208, 63, 0.3) !important;
    }
    
    .main-navigation.mobile-active {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
        display: block;
        pointer-events: auto;
    }
    
    /* Smooth bezárási animáció */
    .main-navigation:not(.mobile-active) {
        transform: translateX(100%);
        opacity: 0;
        visibility: hidden;
        display: block;
        pointer-events: none;
    }
    
    .nav-menu {
        flex-direction: column;
        padding: 0;
        gap: 0;
        height: 100%;
        min-height: calc(100vh - 70px); /* Javítom a magasságot */
        width: 100%; /* Teljes szélesség */
    }
    
    .nav-item {
        width: 100%;
        position: relative;
    }
    
    .nav-link {
        padding: 1.25rem 2rem;
        border-radius: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        justify-content: flex-start;
        color: white;
        width: 100%;
        display: flex;
        align-items: center;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        font-weight: 500;
        font-size: 1.1rem;
        position: relative;
    }
    
    .nav-link:hover {
        background: linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
        color: var(--primary-light);
        padding-left: 2.5rem;
        transform: translateX(5px);
    }
    
    .nav-link.active {
        background: linear-gradient(90deg, var(--primary-color) 0%, rgba(244, 208, 63, 0.8) 100%);
        color: var(--secondary-color);
        font-weight: 600;
        box-shadow: inset 4px 0 0 rgba(255, 255, 255, 0.3);
    }
    
    .nav-link i:first-child {
        color: var(--primary-color);
        margin-right: 1.5rem;
        font-size: 1.3rem;
        min-width: 28px;
        text-align: center;
        background: rgba(244, 208, 63, 0.1);
        padding: 0.5rem;
        border-radius: 8px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .nav-link:hover i:first-child {
        background: rgba(244, 208, 63, 0.2);
        transform: scale(1.1);
        box-shadow: 0 2px 8px rgba(244, 208, 63, 0.3);
    }
    
    .dropdown-arrow {
        color: var(--primary-color);
        font-size: 1.1rem;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        margin-left: auto;
        background: rgba(244, 208, 63, 0.1);
        padding: 0.4rem;
        border-radius: 6px;
        min-width: 24px;
        text-align: center;
    }
    
    .dropdown.open .dropdown-arrow {
        transform: rotate(180deg);
        color: var(--primary-light);
        background: rgba(244, 208, 63, 0.2);
        box-shadow: 0 2px 8px rgba(244, 208, 63, 0.3);
    }
    
    /* Mobil dropdown menük - teljesen újraépítve */
    .dropdown-menu {
        /* Alap pozíció felülírás */
        position: static !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        transform: none !important;
        float: none !important;
        display: block !important;
        
        /* Méretezés */
        width: 100% !important;
        min-width: auto !important;
        max-width: none !important;
        
        /* Háttér és keret */
        background-color: rgba(255, 255, 255, 0.05) !important;
        border: none !important;
        border-left: 3px solid var(--primary-color) !important;
        box-shadow: none !important;
        
        /* Pozíció és margin */
        margin: 0 0 0 1rem !important;
        padding: 0 !important;
        inset: auto !important;
        
        /* Láthatóság */
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        
        /* Átmenetek */
        transition: all 0.3s ease;
        z-index: auto !important;
    }
    
    .dropdown-menu.mobile-open {
        /* Alap pozíció felülírás */
        position: static !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        transform: none !important;
        float: none !important;
        display: block !important;
        
        /* Méretezés */
        width: 100% !important;
        min-width: auto !important;
        max-width: none !important;
        
        /* Háttér és keret */
        background-color: rgba(255, 255, 255, 0.05) !important;
        border: none !important;
        border-left: 3px solid var(--primary-color) !important;
        box-shadow: none !important;
        
        /* Pozíció és margin */
        margin: 0 0 0 1rem !important;
        padding: 0.5rem 0 !important;
        inset: auto !important;
        
        /* Láthatóság */
        opacity: 1 !important;
        visibility: visible !important;
        max-height: 500px !important;
        overflow: visible !important;
        
        /* Átmenetek */
        transition: all 0.3s ease;
        z-index: auto !important;
        
        /* Extra biztosítás */
        position: static !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        transform: none !important;
        float: none !important;
        display: block !important;
    }
    
    .dropdown-item {
        padding: 0.75rem 2.5rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        color: white;
        min-height: 50px;
        display: flex;
        align-items: center;
        font-size: 0.9rem;
        transition: all 0.3s ease;
    }
    
    .dropdown-item:hover {
        background-color: rgba(255, 255, 255, 0.1);
        color: var(--primary-light);
        padding-left: 3rem;
    }
    
    .dropdown-item:last-child {
        border-bottom: none;
    }
    
    .dropdown-item i {
        color: var(--primary-color);
        margin-right: 0.75rem;
        font-size: 1rem;
    }
    
    /* Mobil dropdown toggle ikon */
    .dropdown-arrow {
        transition: transform 0.3s ease;
        color: var(--primary-color);
        margin-left: auto;
        font-size: 1.1rem;
    }
    
    .dropdown.mobile-open .dropdown-arrow {
        transform: rotate(180deg);
        color: var(--primary-light);
    }
    
    .mobile-menu-toggle {
        display: block !important;
    }
    
    .header-container {
        height: 70px;
    }
    
    .logo {
        width: 35px;
        height: 35px;
        font-size: 1.25rem;
    }
    
    .brand-name {
        font-size: 1.125rem;
    }
}



/* Smooth transition minden elemhez */
* {
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}


/* Footer */
.footer {
    background: var(--secondary-color);
    color: white;
    margin-top: 4rem;
    border-top: 1px solid var(--border-color);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Fő footer tartalom */
.footer-main {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    padding: 3rem 0 2rem;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-light);
    margin-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 0.5rem;
    display: inline-block;
}

/* Footer linkek */
.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links li a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    padding: 0.25rem 0;
}

.footer-links li a:hover {
    color: var(--primary-light);
    transform: translateX(5px);
    text-decoration: none;
}

.footer-links li a i {
    font-size: 1rem;
    color: var(--primary-color);
}

/* Footer email címek */
.footer-emails {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.footer-email {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
}

.footer-email i {
    font-size: 1.25rem;
    color: var(--primary-color);
}

.footer-email span {
    font-family: 'Courier New', monospace;
    font-size: 0.875rem;
}

/* Footer social linkek */
.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    font-size: 1.25rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-link:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(218, 165, 32, 0.4);
}

/* Footer alsó sáv */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 0.875rem;
}

.footer-developer p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 0.875rem;
}

.developer-link {
    color: var(--primary-light);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.developer-link:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
    text-decoration: none;
}

.developer-link i {
    font-size: 1rem;
    color: var(--primary-color);
}

/* Footer reszponzív */
@media (max-width: 1024px) {
    .footer-main {
        gap: 2rem;
        padding: 2.5rem 0 1.5rem;
    }
}

@media (max-width: 768px) {
    .footer {
        margin-top: 3rem;
    }
    
    .footer-container {
        padding: 0 1rem;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 0 1.5rem;
        text-align: center;
    }
    
    .footer-title {
        border-bottom: none;
        padding-bottom: 0;
        margin-bottom: 1rem;
    }
    
    .footer-links li a:hover {
        transform: translateY(-2px);
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer {
        margin-top: 2rem;
    }
    
    .footer-main {
        padding: 1.5rem 0 1rem;
        gap: 1.5rem;
    }
    
    .footer-bottom {
        padding: 1rem 0;
    }
    
    .footer-title {
        font-size: 1.125rem;
    }
    
    .footer-email span {
        font-size: 0.75rem;
    }
}

/* Mobil reszponzív gombok */
@media (max-width: 768px) {
    .theme-toggle {
        bottom: 15px;
        right: 15px;
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}

/* MyTiszaföldvár - Ikon Stílusok és Animációk */

/* Remix Icons alap stílusok */
.ri {
    display: inline-block;
    vertical-align: middle;
    line-height: 1;
    font-size: inherit;
}

/* Ikon méretek */
.icon-xs { font-size: 0.75rem; }
.icon-sm { font-size: 1rem; }
.icon-md { font-size: 1.25rem; }
.icon-lg { font-size: 1.5rem; }
.icon-xl { font-size: 2rem; }
.icon-2xl { font-size: 2.5rem; }

/* Ikon színek */
.icon-primary { color: var(--primary-color); }
.icon-secondary { color: var(--secondary-color); }
.icon-accent { color: var(--accent-color); }
.icon-success { color: #10b981; }
.icon-warning { color: #f59e0b; }
.icon-error { color: #ef4444; }
.icon-info { color: #3b82f6; }

/* Ikon animációk */
.icon-spin {
    animation: icon-spin 1s linear infinite;
}

.icon-pulse {
    animation: icon-pulse 1s ease-in-out infinite;
}

.icon-bounce {
    animation: icon-bounce 1s ease-in-out infinite;
}

.icon-wiggle {
    animation: icon-wiggle 0.5s ease-in-out infinite;
}

.icon-float {
    animation: icon-float 2s ease-in-out infinite;
}

/* Ikon animáció definíciók */
/* Icon-spin animáció átmozgatva animations.css-be */

/* Icon-pulse animáció átmozgatva animations.css-be */

/* Icon-bounce animáció átmozgatva animations.css-be */

/* Icon-wiggle animáció átmozgatva animations.css-be */

/* Icon-float animáció átmozgatva animations.css-be */

/* Ikon hover effektek */
.icon-hover {
    transition: all 0.3s ease;
}

.icon-hover:hover {
    transform: scale(1.1);
    color: var(--primary-color);
}

.icon-hover-rotate:hover {
    transform: rotate(15deg);
}

.icon-hover-bounce:hover {
    animation: icon-bounce 0.6s ease-in-out;
}

/* Ikon csoportok */
.icon-group {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.icon-group .ri {
    margin-right: 0.25rem;
}

/* Ikon gombok */
.btn .ri {
    margin-right: 0.5rem;
}

.btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-width: 2.5rem;
    height: 2.5rem;
    padding: 0.5rem;
    border-radius: var(--border-radius);
    background: var(--primary-color);
    color: white;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-icon:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-icon.secondary {
    background: var(--light-background);
    color: var(--text-color);
    border: 1px solid var(--border-color);
}

.btn-icon.secondary:hover {
    background: var(--hover-background);
}

/* Ikon kártyák */
.icon-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem;
    background: var(--card-background);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.icon-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.icon-card .ri {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.icon-card h3 {
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.icon-card p {
    color: var(--light-text);
    margin: 0;
}

/* Ikon navigáció */
.nav-icon {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    color: var(--text-color);
    text-decoration: none;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.nav-icon:hover {
    background: var(--hover-background);
    color: var(--primary-color);
}

.nav-icon.active {
    background: var(--primary-color);
    color: white;
}

/* Ikon lista */
.icon-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.icon-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

.icon-list li:last-child {
    border-bottom: none;
}

.icon-list .ri {
    color: var(--primary-color);
    font-size: 1.25rem;
}

/* Ikon loading állapotok */
.icon-loading {
    opacity: 0.6;
    animation: icon-pulse 1.5s ease-in-out infinite;
}

.icon-success {
    color: var(--success-color, #10b981);
    animation: icon-bounce 0.6s ease-in-out;
}

.icon-error {
    color: var(--error-color, #ef4444);
    animation: icon-wiggle 0.5s ease-in-out;
}

/* Ikon tooltip-ok */
.icon-tooltip {
    position: relative;
    cursor: help;
}

.icon-tooltip::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--light-background);
    color: var(--text-color);
    padding: 0.5rem;
    border-radius: var(--border-radius);
    font-size: 0.875rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    border: 1px solid var(--border-color);
}

.icon-tooltip:hover::after {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-5px);
}

/* Ikon responsive */
@media (max-width: 768px) {
    .icon-lg { font-size: 1.25rem; }
    .icon-xl { font-size: 1.5rem; }
    .icon-2xl { font-size: 2rem; }
    
    .icon-card {
        padding: 1.5rem;
    }
    
    .icon-card .ri {
        font-size: 2.5rem;
    }
}

/* Ikon print stílusok */
@media print {
    .icon {
        color: black !important;
    }
    
    .icon-animation {
        animation: none !important;
    }
}

/* Speciális ikon effektek */
.icon-glow {
    filter: drop-shadow(0 0 10px currentColor);
}

.icon-shadow {
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
}

.icon-3d {
    transform: perspective(100px) rotateX(15deg);
}

.icon-3d:hover {
    transform: perspective(100px) rotateX(0deg) scale(1.1);
}

/* Ikon gradient */
.icon-gradient {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Ikon morphing */
.icon-morph {
    transition: all 0.3s ease;
}

.icon-morph:hover {
    transform: scale(1.2) rotate(10deg);
    filter: hue-rotate(30deg);
}

/* Dark mode animációk */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { transform: translateY(-20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* Dark mode specifikus komponensek */
[data-theme="dark"] .header {
    background: rgba(10, 42, 61, 0.95);
    backdrop-filter: blur(10px);
}

[data-theme="dark"] .header.scrolled {
    background: rgba(10, 42, 61, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

/* Dark mode hero overlay */
[data-theme="dark"] .hero-overlay {
    background: linear-gradient(135deg, 
        rgba(10, 42, 61, 0.9) 0%, 
        rgba(10, 42, 61, 0.8) 50%, 
        rgba(218, 165, 32, 0.7) 100%);
}

[data-theme="dark"] .hero-badge {
    background: rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
}

[data-theme="dark"] .btn-hero-secondary:hover {
    background: rgba(0, 0, 0, 0.2);
    border-color: var(--primary-light);
}

/* Dark mode text section */
[data-theme="dark"] .text-section {
    background-color: var(--background-color);
}

[data-theme="dark"] .text-section-reverse {
    background-color: var(--light-background);
}

[data-theme="dark"] .text-section-content h2,
[data-theme="dark"] .text-section-content h3 {
    color: var(--text-color);
}

[data-theme="dark"] .text-section-content p {
    color: var(--light-text);
}

/* Dark mode 3D hover effekt */
[data-theme="dark"] .text-section-image:hover {
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.1);
    transform: translateY(-15px) rotateX(15deg) rotateY(15deg) scale(1.05);
}

[data-theme="dark"] .text-section-image {
    transform: perspective(1200px) rotateX(2deg) rotateY(2deg);
}

[data-theme="dark"] .text-section-image img {
    filter: brightness(1.05) contrast(1.02);
}

/* Dark mode alsó sáv leírás eltávolítva */

/* Dark mode footer */
[data-theme="dark"] .footer {
    background: var(--secondary-color);
    border-top-color: var(--border-color);
}

[data-theme="dark"] .footer-title {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

[data-theme="dark"] .footer-links li a {
    color: var(--text-color);
}

[data-theme="dark"] .footer-links li a:hover {
    color: var(--primary-color);
}

[data-theme="dark"] .footer-email {
    color: var(--text-color);
}

[data-theme="dark"] .footer-copyright p,
[data-theme="dark"] .footer-developer p {
    color: var(--light-text);
}

[data-theme="dark"] .hero-section {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
}

[data-theme="dark"] .navigation {
    background-color: rgba(17, 24, 39, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
}

[data-theme="dark"] .footer {
    background-color: #111827;
    border-top: 1px solid var(--border-color);
}

[data-theme="dark"] .sidebar {
    background-color: var(--light-background);
    border-right: 1px solid var(--border-color);
}

/* Dark mode táblázatok */
[data-theme="dark"] table {
    background-color: var(--card-background);
    border: 1px solid var(--border-color);
}

[data-theme="dark"] th {
    background-color: var(--light-background);
    color: var(--text-color);
    border-bottom: 1px solid var(--border-color);
}

[data-theme="dark"] td {
    border-bottom: 1px solid var(--border-color);
    color: var(--light-text);
}

[data-theme="dark"] tr:hover {
    background-color: var(--hover-background);
}

/* Dark mode modalok */
[data-theme="dark"] .modal {
    background-color: var(--card-background);
    border: 1px solid var(--border-color);
}

[data-theme="dark"] .modal-header {
    background-color: var(--light-background);
    border-bottom: 1px solid var(--border-color);
}

[data-theme="dark"] .modal-footer {
    background-color: var(--light-background);
    border-top: 1px solid var(--border-color);
}

/* Dark mode tooltip-ok */
[data-theme="dark"] .tooltip {
    background-color: var(--light-background);
    color: var(--text-color);
    border: 1px solid var(--border-color);
}

/* Dark mode dropdown menük */
[data-theme="dark"] .dropdown-menu {
    background-color: var(--card-background);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
}

[data-theme="dark"] .dropdown-item:hover {
    background-color: var(--hover-background);
}

/* Dark mode progress bar-ok */
[data-theme="dark"] .progress-bar {
    background-color: var(--light-background);
}

[data-theme="dark"] .progress-fill {
    background-color: var(--primary-color);
}

/* Dark mode alert-ek */
[data-theme="dark"] .alert {
    background-color: var(--card-background);
    border: 1px solid var(--border-color);
    color: var(--text-color);
}

[data-theme="dark"] .alert-success {
    background-color: rgba(34, 197, 94, 0.1);
    border-color: rgba(34, 197, 94, 0.3);
    color: #4ade80;
}

[data-theme="dark"] .alert-warning {
    background-color: rgba(251, 191, 36, 0.1);
    border-color: rgba(251, 191, 36, 0.3);
    color: #fbbf24;
}

[data-theme="dark"] .alert-error {
    background-color: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.3);
    color: #f87171;
}

[data-theme="dark"] .alert-info {
    background-color: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.3);
    color: #60a5fa;
}

/* Dark mode badge-ek */
[data-theme="dark"] .badge {
    background-color: var(--light-background);
    color: var(--text-color);
    border: 1px solid var(--border-color);
}

/* Dark mode breadcrumb */
[data-theme="dark"] .breadcrumb {
    background-color: var(--light-background);
    border: 1px solid var(--border-color);
}

[data-theme="dark"] .breadcrumb-item {
    color: var(--light-text);
}

[data-theme="dark"] .breadcrumb-item.active {
    color: var(--text-color);
}

/* Dark mode pagination */
[data-theme="dark"] .pagination {
    background-color: var(--card-background);
    border: 1px solid var(--border-color);
}

[data-theme="dark"] .page-link {
    background-color: var(--card-background);
    color: var(--text-color);
    border: 1px solid var(--border-color);
}

[data-theme="dark"] .page-link:hover {
    background-color: var(--hover-background);
    color: var(--text-color);
}

[data-theme="dark"] .page-item.active .page-link {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Dark mode accordion */
[data-theme="dark"] .accordion-item {
    background-color: var(--card-background);
    border: 1px solid var(--border-color);
}

[data-theme="dark"] .accordion-button {
    background-color: var(--light-background);
    color: var(--text-color);
    border: none;
}

[data-theme="dark"] .accordion-button:hover {
    background-color: var(--hover-background);
}

[data-theme="dark"] .accordion-button:not(.collapsed) {
    background-color: var(--primary-color);
    color: white;
}

/* Dark mode tabs */
[data-theme="dark"] .nav-tabs {
    border-bottom: 1px solid var(--border-color);
}

[data-theme="dark"] .nav-tabs .nav-link {
    background-color: var(--light-background);
    color: var(--text-color);
    border: 1px solid var(--border-color);
}

[data-theme="dark"] .nav-tabs .nav-link:hover {
    background-color: var(--hover-background);
    border-color: var(--border-color);
}

[data-theme="dark"] .nav-tabs .nav-link.active {
    background-color: var(--card-background);
    color: var(--text-color);
    border-bottom-color: var(--card-background);
}

/* Dark mode scrollbar */
[data-theme="dark"] ::-webkit-scrollbar {
    width: 12px;
}

[data-theme="dark"] ::-webkit-scrollbar-track {
    background: var(--light-background);
}

[data-theme="dark"] ::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 6px;
}

[data-theme="dark"] ::-webkit-scrollbar-thumb:hover {
    background: var(--light-text);
}

/* Dark mode selection */
[data-theme="dark"] ::selection {
    background-color: var(--primary-color);
    color: white;
}

/* Dark mode focus styles */
[data-theme="dark"] *:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}


/* Dark mode skeleton loading */
[data-theme="dark"] .skeleton {
    background: linear-gradient(90deg, var(--light-background) 25%, var(--border-color) 50%, var(--light-background) 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Dark mode toggle animáció */
.theme-toggle {
    animation: slideIn 0.3s ease-out;
}

.theme-toggle:active {
    transform: scale(0.95);
}

/* Dark mode transition overlay */
.theme-transition-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.05); /* Átlátszóbb háttér */
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.1s ease; /* Gyorsabb átmenet */
    backdrop-filter: blur(1px); /* Enyhe elmosódás */
}

.theme-transition-overlay.active {
    opacity: 1;
    pointer-events: all;
}

/* Dark mode testimonial kártyák */
[data-theme="dark"] .testimonial-card {
    background: var(--card-background);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 2px solid var(--border-color);
}

[data-theme="dark"] .testimonial-card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    border-color: var(--primary-light);
}

[data-theme="dark"] .testimonial-text p {
    color: var(--text-color);
}

[data-theme="dark"] .author-info h4 {
    color: var(--text-color);
}

[data-theme="dark"] .testimonial-author {
    border-top-color: var(--border-color);
}

[data-theme="dark"] .author-type {
    background: rgba(244, 208, 63, 0.1);
    border-color: rgba(244, 208, 63, 0.3);
}

/* Timeline specifikus stílusok a téma váltáshoz */
[data-theme="dark"] .timeline-section {
    background: linear-gradient(135deg, var(--timeline-bg-start) 0%, var(--timeline-bg-end) 100%);
}

[data-theme="dark"] .timeline-section .section-header h2 {
    color: var(--timeline-title-color);
    background: linear-gradient(135deg, var(--timeline-gradient-start), var(--timeline-gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 20px var(--timeline-title-shadow);
}

[data-theme="dark"] .timeline-section .section-header p {
    color: var(--timeline-subtitle-color);
}

[data-theme="dark"] .timeline::before {
    background: linear-gradient(180deg, 
        var(--timeline-line-start) 0%, 
        var(--timeline-line-mid1) 25%, 
        var(--timeline-line-mid2) 50%, 
        var(--timeline-line-mid3) 75%, 
        var(--timeline-line-end) 100%);
    box-shadow: 
        0 0 20px var(--timeline-line-shadow),
        0 0 40px var(--timeline-line-shadow-light);
}

[data-theme="dark"] .timeline-date {
    background: linear-gradient(135deg, var(--timeline-date-bg-start), var(--timeline-date-bg-end));
    color: var(--timeline-date-text);
    border-color: var(--timeline-date-border);
    box-shadow: 
        0 4px 15px var(--timeline-date-shadow),
        0 8px 25px var(--timeline-date-shadow-light);
}

[data-theme="dark"] .timeline-date:hover {
    box-shadow: 
        0 8px 25px var(--timeline-date-shadow-hover),
        0 12px 35px var(--timeline-date-shadow-hover-light);
    background: linear-gradient(135deg, var(--timeline-date-bg-hover-start), var(--timeline-date-bg-hover-end));
}

[data-theme="dark"] .timeline-content {
    background: linear-gradient(135deg, var(--timeline-card-bg-start) 0%, var(--timeline-card-bg-end) 100%);
    box-shadow: 
        0 10px 40px var(--timeline-card-shadow),
        0 20px 80px var(--timeline-card-shadow-light);
}

[data-theme="dark"] .timeline-content::before {
    background: linear-gradient(90deg, var(--timeline-card-accent-start), var(--timeline-card-accent-end));
}

[data-theme="dark"] .timeline-content:hover {
    box-shadow: 
        0 25px 80px var(--timeline-card-shadow-hover),
        0 40px 120px var(--timeline-card-shadow-hover-light);
    border-color: var(--timeline-card-border-hover);
}

[data-theme="dark"] .timeline-content h3 {
    color: var(--timeline-card-title);
    text-shadow: 0 2px 10px var(--timeline-card-title-shadow);
}

[data-theme="dark"] .timeline-content p {
    color: var(--timeline-card-text);
    text-shadow: 0 1px 5px var(--timeline-card-text-shadow);
}

[data-theme="dark"] .timeline-image {
    box-shadow: 
        0 8px 25px var(--timeline-image-shadow),
        0 15px 50px var(--timeline-image-shadow-light);
    border-color: var(--timeline-image-border);
}

[data-theme="dark"] .timeline-image::before {
    background: linear-gradient(135deg, 
        var(--timeline-image-overlay-start) 0%, 
        var(--timeline-image-overlay-end) 100%);
}

[data-theme="dark"] .timeline-image img {
    filter: var(--timeline-image-filter);
}

[data-theme="dark"] .timeline-content:hover .timeline-image img {
    filter: var(--timeline-image-filter-hover);
}

/* Világos mód timeline stílusok */
[data-theme="light"] .timeline-section {
    background: linear-gradient(135deg, var(--timeline-bg-start) 0%, var(--timeline-bg-end) 100%);
}

[data-theme="light"] .timeline-section .section-header h2 {
    color: var(--timeline-title-color);
    background: linear-gradient(135deg, var(--timeline-gradient-start), var(--timeline-gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 20px var(--timeline-title-shadow);
}

[data-theme="light"] .timeline-section .section-header p {
    color: var(--timeline-subtitle-color);
}

[data-theme="light"] .timeline::before {
    background: linear-gradient(180deg, 
        var(--timeline-line-start) 0%, 
        var(--timeline-line-mid1) 25%, 
        var(--timeline-line-mid2) 50%, 
        var(--timeline-line-mid3) 75%, 
        var(--timeline-line-end) 100%);
    box-shadow: 
        0 0 20px var(--timeline-line-shadow),
        0 0 40px var(--timeline-line-shadow-light);
}

[data-theme="light"] .timeline-date {
    background: linear-gradient(135deg, var(--timeline-date-bg-start), var(--timeline-date-bg-end));
    color: var(--timeline-date-text);
    border-color: var(--timeline-date-border);
    box-shadow: 
        0 4px 15px var(--timeline-date-shadow),
        0 8px 25px var(--timeline-date-shadow-light);
}

[data-theme="light"] .timeline-date:hover {
    box-shadow: 
        0 8px 25px var(--timeline-date-shadow-hover),
        0 12px 35px var(--timeline-date-shadow-hover-light);
    background: linear-gradient(135deg, var(--timeline-date-bg-hover-start), var(--timeline-date-bg-hover-end));
}

[data-theme="light"] .timeline-content {
    background: linear-gradient(135deg, var(--timeline-card-bg-start) 0%, var(--timeline-card-bg-end) 100%);
    box-shadow: 
        0 10px 40px var(--timeline-card-shadow),
        0 20px 80px var(--timeline-card-shadow-light);
}

[data-theme="light"] .timeline-content::before {
    background: linear-gradient(90deg, var(--timeline-card-accent-start), var(--timeline-card-accent-end));
}

[data-theme="light"] .timeline-content:hover {
    box-shadow: 
        0 25px 80px var(--timeline-card-shadow-hover),
        0 40px 120px var(--timeline-card-shadow-hover-light);
    border-color: var(--timeline-card-border-hover);
}

[data-theme="light"] .timeline-content h3 {
    color: var(--timeline-card-title);
    text-shadow: 0 2px 10px var(--timeline-card-title-shadow);
}

[data-theme="light"] .timeline-content p {
    color: var(--timeline-card-text);
    text-shadow: 0 1px 5px var(--timeline-card-text-shadow);
}

[data-theme="light"] .timeline-image {
    box-shadow: 
        0 8px 25px var(--timeline-image-shadow),
        0 15px 50px var(--timeline-image-shadow-light);
    border-color: var(--timeline-image-border);
}

[data-theme="light"] .timeline-image::before {
    background: linear-gradient(135deg, 
        var(--timeline-image-overlay-start) 0%, 
        var(--timeline-image-overlay-end) 100%);
}

[data-theme="light"] .timeline-image img {
    filter: var(--timeline-image-filter);
}

[data-theme="light"] .timeline-content:hover .timeline-image img {
    filter: var(--timeline-image-filter-hover);
}

/* Téma váltó alapstílusok */
.theme-toggle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-color); /* Sárga háttér */
    border: 2px solid var(--primary-dark); /* Sötétebb sárga keret */
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(244, 208, 63, 0.3); /* Sárga árnyék */
    z-index: 1000;
    transition: all 0.2s ease;
}

.theme-toggle:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(244, 208, 63, 0.4); /* Sárga árnyék hover-nél */
    border-color: var(--primary-light); /* Világosabb sárga keret hover-nél */
    background: var(--primary-light); /* Világosabb sárga háttér hover-nél */
}

.theme-toggle:active {
    transform: scale(0.95);
}

/* Téma váltó ikonok */
.theme-toggle .sun-icon,
.theme-toggle .moon-icon {
    font-size: 1.5rem;
    color: #1e293b; /* Sötét szín a sárga háttéren */
    transition: all 0.3s ease;
    position: absolute;
}

/* Sötét módban világosabb ikon szín */
[data-theme="dark"] .theme-toggle .sun-icon,
[data-theme="dark"] .theme-toggle .moon-icon {
    color: #ffffff; /* Fehér szín sötét módban */
}

/* Téma váltó állapotok */
[data-theme="dark"] .theme-toggle .sun-icon {
    opacity: 1;
    transform: rotate(0deg);
}

[data-theme="dark"] .theme-toggle .moon-icon {
    opacity: 0;
    transform: rotate(-90deg);
}

[data-theme="light"] .theme-toggle .sun-icon {
    opacity: 0;
    transform: rotate(90deg);
}

[data-theme="light"] .theme-toggle .moon-icon {
    opacity: 1;
    transform: rotate(0deg);
}

/* Cookie felugró konténer */
.cookie-consent {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    max-width: 450px;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.3),
        0 40px 120px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(244, 208, 63, 0.2);
    backdrop-filter: blur(20px);
    z-index: 10000;
    opacity: 1;
    transform: translateY(0) scale(1);
    transition: all 0.3s ease;
    font-family: 'Nunito', sans-serif;
}

/* Világos mód cookie felugró */
.cookie-consent.theme-light {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 2px solid rgba(244, 208, 63, 0.3);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.1),
        0 40px 120px rgba(0, 0, 0, 0.05);
}

/* Sötét mód cookie felugró */
.cookie-consent.theme-dark {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border: 2px solid rgba(244, 208, 63, 0.3);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 40px 120px rgba(0, 0, 0, 0.3);
}

/* Cookie felugró megjelenése */
.cookie-consent.show {
    opacity: 1;
    transform: translateY(0) scale(1);
    display: block;
    visibility: visible;
    pointer-events: auto;
    z-index: 10000;
}



/* Cookie felugró alapértelmezett láthatóság */
.cookie-consent {
    opacity: 1;
    transform: translateY(0) scale(1);
    display: block;
    visibility: visible;
    pointer-events: auto;
    z-index: 10000;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Cookie consent elrejtve - AZONNALI */
.cookie-consent.hidden {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
    /* Accessibility - teljes elrejtés */
    position: absolute !important;
    left: -9999px !important;
    top: -9999px !important;
    z-index: -1 !important;
    /* AZONNALI elrejtés - nincs transition */
    transition: none !important;
    animation: none !important;
}

/* Cookie felugró alapértelmezetten látható, de a JavaScript kezeli */
.cookie-consent.default-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    display: block;
    visibility: visible;
    pointer-events: auto;
    z-index: 10000;
}

/* Cookie felugró eltűnése - ezt a JavaScript hidden osztállyal kezeli */

/* Cookie ikon */
.cookie-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #f4d03f, #f39c12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 25px rgba(244, 208, 63, 0.3);
    position: relative;
    overflow: hidden;
}

.cookie-icon i {
    font-size: 24px;
    color: #1e293b;
    z-index: 2;
    position: relative;
}

/* Cookie ikon animáció */
.cookie-icon::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    animation: cookieShine 3s ease-in-out infinite;
}

@keyframes cookieShine {
    0%, 100% { transform: rotate(45deg) translateX(-100%); }
    50% { transform: rotate(45deg) translateX(100%); }
}

/* Cím */
.cookie-title {
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Világos mód cím */
.cookie-consent.theme-light .cookie-title {
    color: #1e293b;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Sötét mód cím */
.cookie-consent.theme-dark .cookie-title {
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Leírás */
.cookie-description {
    color: #cbd5e1;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

/* Világos mód leírás */
.cookie-consent.theme-light .cookie-description {
    color: #475569;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
}

/* Sötét mód leírás */
.cookie-consent.theme-dark .cookie-description {
    color: #cbd5e1;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

/* Gombok konténer */
.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    pointer-events: auto;
    position: relative;
    z-index: 10;
}

/* Elsődleges gomb - Elfogadás */
.cookie-btn-primary {
    background: linear-gradient(135deg, #f4d03f, #f39c12);
    color: #1e293b;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(244, 208, 63, 0.3);
    flex: 1;
    min-width: 120px;
    position: relative;
    overflow: hidden;
    pointer-events: auto;
    z-index: 10;
}

.cookie-btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.cookie-btn-primary:hover::before {
    left: 100%;
}

.cookie-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(244, 208, 63, 0.4);
}

.cookie-btn-primary:active {
    transform: translateY(0);
}

/* Másodlagos gomb - Elutasítás */
.cookie-btn-secondary {
    background: transparent;
    color: #94a3b8;
    border: 2px solid #475569;
    padding: 0.8rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex: 1;
    min-width: 120px;
    position: relative;
    overflow: hidden;
    pointer-events: auto;
    z-index: 10;
}

/* Világos mód másodlagos gomb */
.cookie-consent.theme-light .cookie-btn-secondary {
    color: #64748b;
    border-color: #cbd5e1;
}

/* Sötét mód másodlagos gomb */
.cookie-consent.theme-dark .cookie-btn-secondary {
    color: #94a3b8;
    border-color: #475569;
}

.cookie-btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(148, 163, 184, 0.1), transparent);
    transition: left 0.5s ease;
}

.cookie-btn-secondary:hover::before {
    left: 100%;
}

.cookie-btn-secondary:hover {
    border-color: #f4d03f;
    color: #f4d03f;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(244, 208, 63, 0.2);
}

.cookie-btn-secondary:active {
    transform: translateY(0);
}

/* Cookie linkek */
.cookie-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cookie-link {
    color: #64748b;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    padding: 0.5rem 0.8rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid transparent;
}

/* Világos mód linkek */
.cookie-consent.theme-light .cookie-link {
    color: #64748b;
}

/* Sötét mód linkek */
.cookie-consent.theme-dark .cookie-link {
    color: #64748b;
}

.cookie-link:hover {
    color: #f4d03f;
    background: rgba(244, 208, 63, 0.1);
    border-color: rgba(244, 208, 63, 0.3);
    transform: translateY(-1px);
}

.cookie-link i {
    font-size: 0.9rem;
}

/* Reszponzív design */
@media (max-width: 768px) {
    .cookie-consent {
        bottom: 1rem;
        left: 1rem;
        right: 1rem;
        padding: 1.5rem;
        max-width: none;
        pointer-events: auto;
    }
    
    .cookie-title {
        font-size: 1.2rem;
    }
    
    .cookie-description {
        font-size: 0.9rem;
    }
    
    .cookie-buttons {
        flex-direction: column;
        pointer-events: auto;
    }
    
    .cookie-btn-primary,
    .cookie-btn-secondary {
        min-width: auto;
        width: 100%;
        pointer-events: auto;
        cursor: pointer;
        z-index: 10;
        position: relative;
    }
    
    .cookie-links {
        flex-direction: column;
        gap: 0.5rem;
        pointer-events: auto;
    }
    
    .cookie-link {
        justify-content: center;
        width: 100%;
        pointer-events: auto;
    }
}

@media (max-width: 480px) {
    .cookie-consent {
        bottom: 0.5rem;
        left: 0.5rem;
        right: 0.5rem;
        padding: 1.2rem;
        border-radius: 16px;
        pointer-events: auto;
    }
    
    .cookie-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 1rem;
    }
    
    .cookie-title {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    
    .cookie-description {
        font-size: 0.85rem;
        margin-bottom: 1.2rem;
    }
    
    .cookie-buttons {
        pointer-events: auto;
    }
    
    .cookie-btn-primary,
    .cookie-btn-secondary {
        pointer-events: auto;
        cursor: pointer;
        z-index: 10;
        position: relative;
    }
    
    .cookie-links {
        margin-top: 0.8rem;
        pointer-events: auto;
    }
    
    .cookie-link {
        font-size: 0.75rem;
        padding: 0.4rem 0.6rem;
        pointer-events: auto;
    }
}

/* Dark mode támogatás */
@media (prefers-color-scheme: dark) {
    .cookie-consent {
        background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
        border-color: rgba(244, 208, 63, 0.3);
    }
}

/* Animációk */
@keyframes cookieSlideIn {
    from {
        opacity: 0;
        transform: translateY(100px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes cookieSlideOut {
    from {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
    to {
        opacity: 0;
        transform: translateY(100px) scale(0.9);
    }
}

/* Cookie felugró megjelenése animációval */
.cookie-consent.animate-in {
    animation: cookieSlideIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Cookie felugró eltűnése animációval */
.cookie-consent.animate-out {
    animation: cookieSlideOut 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Speciális effektek - eltávolítva a hover csík */

/* Fókusz állapotok */
.cookie-btn-primary:focus,
.cookie-btn-secondary:focus,
.cookie-btn-details:focus,
.cookie-btn-settings:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(244, 208, 63, 0.3);
}

/* Loading állapot */
.cookie-consent.loading {
    pointer-events: none;
}

.cookie-consent.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 30px;
    margin: -15px 0 0 -15px;
    border: 3px solid #f4d03f;
    border-top: 3px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Téma váltás animáció a cookie felugrón */
.cookie-consent {
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1), 
                background 0.3s ease, 
                border-color 0.3s ease,
                box-shadow 0.3s ease;
}

/* Téma-specifikus hover effektek */
.cookie-consent.theme-light:hover {
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.15),
        0 50px 150px rgba(0, 0, 0, 0.1);
}

.cookie-consent.theme-dark:hover {
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.5),
        0 50px 150px rgba(0, 0, 0, 0.4);
}




