 :root {
            --primary-blue: #0077b6;
            --light-blue: #caf0f8;
            --dark-blue: #03045e;
            --text-color: #333;
            --glass-bg: rgba(202, 240, 248, 0.4);
            --glass-border: rgba(255, 255, 255, 0.5);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Montserrat', sans-serif;
        }

        body {
           
            background-color: var(--dark-blue); 
            color: var(--text-color);
            line-height: 1.6;
        }

        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 90px; 
            display: flex;
            align-items: center;
            justify-content: space-between; 
            padding: 0 5%;
            z-index: 1000;         
            background: var(--glass-bg);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--glass-border);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
        }

        .logo {
            font-size: 24px;
            font-weight: 600;
            color: var(--dark-blue);
            text-decoration: none;
            letter-spacing: 1px;
            display: flex;
            align-items: center;
        }

        .logo span {
            color: var(--primary-blue);
            font-weight: 300;
        }
        
        .logo img {
            max-height: 70px; 
            width: auto;     
            margin-right: 15px; 
        }

        .menu-toggle {
            display: none;
            color: var(--dark-blue);
            cursor: pointer;
            transition: color 0.3s ease;
        }
        
        .menu-toggle:hover {
            color: var(--primary-blue);
        }

        nav {
            display: flex;
            align-items: center;
        }

        nav ul {
            list-style: none;
            display: flex;
            gap: 15px; 
        }

        nav ul li {
            position: relative;
        }

        nav ul li a {
            display: block;
            padding: 10px 15px;
            color: var(--dark-blue);
            text-decoration: none;
            font-weight: 600;
            font-size: 15px;
            transition: color 0.3s ease;
        }

        nav ul li a:hover {
            color: var(--primary-blue);
        }

        .dropdown > a::after {
            content: ' \25BC';
            font-size: 10px;
        }

        .dropdown-content {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            background-color: rgba(255, 255, 255, 0.95);
            min-width: 220px;
            box-shadow: 0 8px 16px rgba(0,0,0,0.1);
            border-radius: 0 0 5px 5px;
            overflow: hidden;
        }

        .dropdown:hover .dropdown-content {
            display: block; 
        }

        .dropdown-content li a {
            padding: 12px 20px;
            font-weight: 400;
            border-bottom: 1px solid #eee;
        }

        .dropdown-content li a:hover {
            background-color: var(--light-blue);
            padding-left: 25px; 
            transition: all 0.3s ease;
        }

        @keyframes fadeInZoom {
            0% { opacity: 0; transform: scale(1.1); }
            100% { opacity: 1; transform: scale(1); }
        }

        
        .page-wrapper {
            width: 100%;
            min-height: 100vh;
            position: relative;
            z-index: 1; /* A footer fölött van */
            background-color: #f8f9fa; 
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4); 
            transition: margin-bottom 0.3s ease; 
        }

        .hero {
            position: relative; 
            height: 500px; 
            background-color: #333; 
            display: flex; 
            flex-direction: column; 
            justify-content: center; 
            align-items: center;
            color: white; 
            text-align: center; 
            overflow: hidden;
            animation: fadeInZoom 1.5s ease-out forwards;
        }

        .hero-slide {
            position: absolute; 
            top: 0; 
            left: 0; 
            width: 100%; 
            height: 100%;
            background-size: cover; 
            background-position: center;
            opacity: 0; 
            transition: opacity 2s ease-in-out; 
            z-index: 0; 
        }

        .hero-slide.active { 
            opacity: 1; 
            z-index: 1;
        }

        .overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.2); 
            z-index: 2;
        }
        
        .hero-content {
            position: relative;
            z-index: 3; 
            padding-top: 50px; 
        }

        .glass-box {
            background: var(--glass-bg);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid var(--glass-border);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
            border-radius: 15px;
            max-width: 650px; 
            padding: 25px;    
            min-height: 120px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero h1 {
            color: var(--dark-blue);
            font-size: 1.2rem;
            margin: 0;
            line-height: 1.4;
        }
          
        .stats-section {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 100px; 
            padding: 80px 5%; 
            background-color: #ffffff;
        }

        .stat-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            flex: 1; 
            max-width: 400px;
        }

        .stat-icon svg {
            width: 100px; 
            height: 100px;
            color: var(--primary-blue);
            margin-bottom: 25px;
            transition: transform 0.3s ease, color 0.3s ease;
        }

        .stat-item:hover .stat-icon svg {
            transform: translateY(-8px) scale(1.05); 
            color: var(--dark-blue); 
        }

        .stat-number {
            font-size: 4.5rem; 
            font-weight: 600;
            color: var(--dark-blue);
            line-height: 1;
            margin-bottom: 8px;
        }

        .stat-text {
            font-size: 1.1rem; 
            font-weight: 400;
            color: var(--text-color);
            text-transform: uppercase;
            letter-spacing: 2px; 
        }

        .about-section {
            padding: 100px 5%;
            background-color: #f8f9fa; 
            overflow: hidden; 
        }

        .about-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 50px;
            margin-bottom: 80px;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
        }

        .about-row.reverse {
            flex-direction: row-reverse;
        }

        .about-text {
            flex: 1;
            font-size: 1.1rem;
            color: var(--text-color);
        }

        .about-text h2 {
            color: var(--dark-blue);
            margin-bottom: 20px;
            font-size: 1.8rem;
        }

        .about-text p {
            margin-bottom: 15px;
            text-align: justify;
        }

        .about-image {
            flex: 1;
            perspective: 1000px; 
        }

        .about-image img {
            width: 100%;
            height: auto;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
            display: block;
        }

        .scroll-element {
            opacity: 0;
            transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94); 
        }

        .slide-in-left { transform: translateX(-100px); }
        .slide-in-right { transform: translateX(100px); }
        .flip-in-right { transform: rotateY(90deg) scale(0.9); }
        .flip-in-left { transform: rotateY(-90deg) scale(0.9); }

        .scroll-element.visible {
            opacity: 1;
            transform: translate(0) rotateY(0) scale(1);
        }

       
        .site-footer {
            background-color: #3281a8;
            color: #ffffff;
            padding: 60px 5% 20px;
            font-family: 'Montserrat', sans-serif;
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            z-index: 0; 
        }

        .site-footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--light-blue), var(--primary-blue), var(--dark-blue));
        }

        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
            align-items: center;
        }

        .footer-brand h3 {
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 10px;
            letter-spacing: 1px;
        }
        
        .footer-brand h3 span {
            color: var(--light-blue);
            font-weight: 300;
        }

        .footer-desc {
            color: #a0aabf;
            font-size: 0.95rem;
            margin-bottom: 20px;
            line-height: 1.5;
        }

        .footer-links a {
            color: var(--light-blue);
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s;
            margin-right: 15px;
        }

        .footer-links a:hover {
            color: #fff;
        }

        .footer-center {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 1rem;
            color: #e0e0e0;
        }

        .contact-item svg {
            width: 22px;
            height: 22px;
            stroke: var(--light-blue);
            stroke-width: 1.5;
            fill: none;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .footer-right {
            display: flex;
            justify-content: flex-end; 
        }

        .premium-btn {
            background: linear-gradient(135deg, var(--primary-blue), #00b4d8);
            color: white;
            padding: 15px 30px;
            border: none;
            border-radius: 30px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            box-shadow: 0 8px 20px rgba(0, 119, 182, 0.3);
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 10px;
            font-family: inherit;
        }

        .premium-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 25px rgba(0, 119, 182, 0.5);
            background: linear-gradient(135deg, #0088cc, #00c4eb);
        }

        .premium-btn svg {
            width: 20px;
            height: 20px;
            fill: none;
            stroke: currentColor;
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .footer-bottom {
            max-width: 1200px;
            margin: 40px auto 0;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
            text-align: center;
            font-size: 0.85rem;
            color: #85d7ff;
        }

      
        .modal {
            display: none; 
            position: fixed; 
            z-index: 2000; 
            left: 0;
            top: 0;
            width: 100%; 
            height: 100%; 
            overflow: auto; 
            background-color: rgba(0,0,0,0.8); 
            backdrop-filter: blur(5px);
        }

        .modal-content {
            background-color: #fefefe;
            margin: 5% auto; 
            padding: 30px;
            border: 1px solid #888;
            width: 90%;
            max-width: 500px;
            border-radius: 15px;
            color: #333;
            position: relative;
        }

        .close {
            color: #aaa;
            position: absolute;
            top: 15px;
            right: 20px;
            font-size: 28px;
            font-weight: bold;
            cursor: pointer;
        }

        .close:hover, .close:focus {
            color: black;
            text-decoration: none;
        }

        .form-group {
            margin-bottom: 15px;
        }

        .form-group label {
            display: block;
            margin-bottom: 5px;
            font-weight: 600;
        }

        .form-group input, .form-group textarea {
            width: 100%;
            padding: 10px;
            border: 1px solid #ccc;
            border-radius: 5px;
            font-family: inherit;
        }

        .submit-btn {
            background-color: #0077b6;
            color: white;
            padding: 12px 20px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            width: 100%;
            font-size: 16px;
            font-weight: bold;
            margin-top: 10px;
        }

        .submit-btn:disabled {
            background-color: #ccc;
        }

        #urlap-uzenet {
            margin-top: 15px;
            font-weight: bold;
            text-align: center;
        }

       
        @media (max-width: 768px) {
            header {
                justify-content: space-between; 
                padding: 0 5%;
            }

            .menu-toggle {
                display: block; 
                margin-right: 0; 
            }

            .logo {
                margin: 0; 
                transform: none; 
                font-size: 20px; 
            }

            .logo img {
                max-height: 50px; 
                margin-right: 10px;
            }

            nav {
                position: absolute;
                top: 90px;
                left: -100%;
                width: 80%; 
                max-width: 300px; 
                height: calc(100vh - 90px);
                background: rgba(255, 255, 255, 0.95);
                backdrop-filter: blur(10px);
                box-shadow: 2px 0 15px rgba(0,0,0,0.1);
                transition: left 0.4s ease-in-out;
                overflow-y: auto;
                display: block; 
            }

            nav.active { left: 0; }

            nav ul {
                display: block; 
                padding: 20px 0;
            }

            nav ul li a {
                padding: 18px 30px;
                border-bottom: 1px solid #eee;
                font-weight: 600;
                font-size: 18px;
            }

            .dropdown:hover .dropdown-content { display: none; }

            .dropdown-content {
                position: static; 
                box-shadow: none;
                background-color: #fdfdfd;
                border-radius: 0;
            }

            .dropdown-content li a { 
                padding-left: 50px; 
                padding-top: 15px;
                padding-bottom: 15px;
                font-size: 16px;
            }
            .dropdown.active .dropdown-content { display: block; }

            .hero h1 {
                font-size: 1.3rem; 
                line-height: 1.5;
            }
            
            .glass-box {
                padding: 25px 15px; 
                min-height: 150px;
            }

            .stats-section {
                flex-direction: column;
                gap: 50px;
                padding: 60px 5%;
            }
            
            .stat-number { font-size: 3.5rem; }
            .stat-icon svg { width: 80px; height: 80px; }

            .about-row, .about-row.reverse {
                flex-direction: column;
                gap: 30px;
            }

            .about-text {
                font-size: 1.15rem;
            }

            .about-image {
                order: -1; 
                margin-bottom: 10px;
            }

            .slide-in-left, .slide-in-right { transform: translateY(50px); }
            .flip-in-right, .flip-in-left { transform: rotateX(90deg); } 
            .scroll-element.visible { transform: translate(0) rotateX(0); }

           
            .footer-container {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 40px;
            }
            
            .footer-center {
                align-items: center;
            }
            
            .footer-right {
                justify-content: center;
            }
            
            .footer-links {
                justify-content: center;
            }
        }

       
        @media (max-width: 480px) {
            .logo { font-size: 16px; } 
            .logo img { max-height: 40px; } 
            
            header { padding: 0 4%; }
            
            .hero h1 { font-size: 1.15rem; line-height: 1.5; }
            
            .stat-number { font-size: 3rem; }
            
            .contact-item { font-size: 0.95rem; } 
            
            .modal-content {
                width: 95%;
                padding: 25px 15px; 
                margin: 10% auto;
            }
        }
	
        .impresszum-content {
            max-width: 650px; 
            max-height: 85vh; 
            overflow-y: auto; 
        }

        .impresszum-section {
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 1px solid #eee;
        }
        
        .impresszum-section:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }

        .impresszum-section h3 {
            color: var(--primary-blue);
            font-size: 1.2rem;
            margin-bottom: 15px;
        }

        .impresszum-section h4 {
            font-size: 1rem;
            margin: 15px 0 10px;
            color: var(--dark-blue);
        }

        .data-list {
            list-style: none;
        }

        .data-list li {
            margin-bottom: 8px;
            font-size: 0.95rem;
        }

        .data-list li span {
            font-weight: 600;
            display: inline-block;
            width: 150px; 
            color: var(--dark-blue);
        }

        .text-list {
            padding-left: 20px;
            margin-bottom: 10px;
        }

        .text-list li {
            margin-bottom: 8px;
            font-size: 0.95rem;
            text-align: justify;
        }

        .impresszum-section p {
            font-size: 0.95rem;
            text-align: justify;
            margin-bottom: 10px;
        }
	.contact-link {
            color: #e0e0e0;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .contact-link:hover {
            color: #fff; 
        }
        
        @media (max-width: 480px) {
            .data-list li span {
                display: block; 
                width: 100%;
                margin-bottom: 3px;
            }
            .data-list li {
                margin-bottom: 15px;
            }
        }

.content-section, .gallery-section, .video-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 40px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.05);
}

@media (max-width: 768px) {
    .content-section, .gallery-section, .video-section {
        margin: 40px 5%;
        padding: 25px 20px;
    }
}


.text-container {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #e9ecef;
}

.text-container p {
    margin-bottom: 20px;
    text-align: justify;
}

.highlight-text {
    font-size: 1.1rem;
    color: var(--primary-blue);
    font-weight: 600;
    text-align: center !important;
    margin: 30px 0;
}

.custom-list {
    list-style: none;
    padding-left: 0;
}

.custom-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
}

.custom-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-weight: bold;
}


.section-title {
    text-align: center;
    color: var(--dark-blue);
    font-size: 2rem;
    margin-bottom: 30px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}


.gallery-item-outer {
    background: #f8f9fa;
    padding: 10px;
    border-radius: 15px;
    border: 1px solid #e9ecef;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item-outer:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}


.gallery-item-inner {
    border-radius: 10px;
    overflow: hidden;
    height: 180px; 
}

.gallery-item-inner a {
    display: block;
    height: 100%;
}

.gallery-item-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    transition: transform 0.4s ease;
}

.gallery-item-inner:hover img {
    transform: scale(1.1); 
}

/* --- VIDEÓ --- */
.video-container-outer {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 20px;
    border: 1px solid #e9ecef;
    max-width: 400px;
    margin: 0 auto;
}

.video-container-inner {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: #000;
}

.video-icon {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    padding: 10px;
    border-radius: 50%;
    z-index: 10;
    pointer-events: none; 
}

.video-icon svg {
    width: 24px;
    height: 24px;
    stroke: #ffffff;
}

.video-container-inner video {
    display: block; /* Eltünteti a pici fekete csíkot alul */
    border-radius: 12px;
}


.slide-in-up {
    transform: translateY(50px);
}

.cookie-banner {
    display: none; 
    position: fixed;
    bottom: 30px;
    right: 30px;
    max-width: 450px;
    background-color: rgba(53, 108, 204,0.8);
    color: grey;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    z-index: 9999; /* Minden más felett legyen */
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-family: 'Montserrat', sans-serif;
}

.cookie-content {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
}

.cookie-icon svg {
    width: 30px;
    height: 30px;
    stroke: var(--light-blue);
    flex-shrink: 0;
}

.cookie-text p {
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
    color: #e0e0e0;
}

.cookie-text a {
    color: var(--light-blue);
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.3s;
}

.cookie-text a:hover {
    color: #fff;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    width: 100%;
}

.cookie-btn, .cookie-btn-secondary {
    flex: 1; 
    padding: 10px 0;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.cookie-btn {
    background: linear-gradient(135deg, var(--primary-blue), #00b4d8);
    color: white;
    border: none;
}

.cookie-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 119, 182, 0.4);
}

.cookie-btn-secondary {
    background: transparent;
    color: var(--light-blue);
    border: 1px solid var(--light-blue);
}

.cookie-btn-secondary:hover {
    background: rgba(202, 240, 248, 0.1);
    color: #fff;
}

@media (max-width: 500px) {
    .cookie-buttons {
        flex-direction: column;
    }
}