/* Alapbeállítások */
* {
  margin: 0;
  padding: 1;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f7f9f6;
  color: #333;
  line-height: 1.6;
}

/* Fejléc */
header {
  background-color: #e7f1e9;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #2d2d2d;
  font-weight: 500;
  transition: color 0.3s;
}
/* Alapértelmezett – Asztali nézet */
nav#main-nav {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
    align-items: center;
}

/* Navigáció linkek asztali nézetben */
nav#main-nav a {
    text-decoration: none;
    color: #2d2d2d;
    font-weight: 500;
    transition: color 0.3s;
    margin-left: 20px;
}

/* === HAMBURGER ÉS MOBIL NÉZET === */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 25px;
    cursor: pointer;
    z-index: 2000;
    margin-left: auto;
    font-weight: bold;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #333;
    margin: 4px 0;
    border-radius: 2px;
    transition: all 0.3s ease-in-out;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Login konténer */
.login-container {
    animation: fadeIn 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh; /* teljes magasság */
    background: linear-gradient(135deg, #e0f2e9, #c4e3d2);
    font-family: 'Roboto', sans-serif;
    margin: 0;
}
button.belepo {
    width: 100%;
    padding: 12px 20px;
    background-color: #43a047; /* természetes zöld */
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

button.belepo:hover {
    background-color: #388e3c; /* sötétebb zöld hoverre */
    transform: scale(1.02);
}

button.belepo:active {
    transform: scale(0.98);
}
.footer {
    position: fixed;
    bottom: 10px;
    width: 100%;
    text-align: center;
    font-size: 14px;
    color: #777;
    font-weight: 400;
    z-index: 10;
}

.footer a {
    color: #43a047;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #2e7d32;
    text-decoration: underline;
}

.login-box {
    background-color: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 400px;
    width: 100%;

}

/* Logó */
.logo {
    max-width: 100px;
    margin-bottom: 15px;
}

/* Címek */
h2 {
    color: #2e7d32;
    font-size: 24px;
    margin-bottom: 5px;
}
h3 {
    color: #388e3c;
    font-size: 18px;
    margin-bottom: 25px;
}

/* Hibák */
.error {
    background-color: #ffebee;
    color: #c62828;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 5px;
    font-size: 14px;
}

/* Form elemek */
.form-group {
    margin-bottom: 20px;
    text-align: left;
}
label {
    display: block;
    margin-bottom: 5px;
    color: #333;
}
input[type="text"],
input[type="password"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 8px;
    transition: border-color 0.3s;
}
input:focus {
    outline: none;
    border-color: #66bb6a;
}

/* Gomb */
button {
    width: 100%;
    padding: 12px;
    background-color: #43a047;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}
button:hover {
    background-color: #388e3c;
}

/* Animáció */
@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Gombok */
.btn-primary {
  background-color: #345e34;
  color: white;
  border: none;
  padding: 8px 12px;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
  
}

.btn-primary:hover {
  background-color: #458245;
}

.btn-secondary {
  background-color: white;
  color: #345e34;
  border: 2px solid #345e34;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

.btn-secondary:hover {
  background-color: #eaf3ea;
}
.hero_container {
  background: repeating-linear-gradient(
    to bottom,
    #475F37 0px,
    #475F37 250px,
    #fff 0px,
    #fff 500px,
	#fff 0px,
    #475F37 250px,
    #475F37 0px
  );
  padding: 60px 0;
  display: flex;
  justify-content: center;
}

.hero2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 60px 40px;
  background-color: #f3f9f2; /* ugyanaz, mint .hero */
  flex-wrap: wrap;
  border-radius: 16px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  max-width: 95%;
}

.hero2 .hero-text {
  max-width: 500px;
  margin-left: 70px;
  text-align: left;
  flex: 1 1 50%;
}

.hero2 h1 {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #2c4b2c;
}

.hero2 p {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #333;
}

.hero2 .hero-buttons {
  margin-top: 10px;
}
.hero2 a {
  background-color: #F5F5F5; /* világosszürke háttér */
  padding: 10px 15px; /* belső margó a tartalom körül */
  border-radius: 5px; /* lekerekített sarkok */
  display: inline-block; /* hogy a háttér a szöveg méretéhez igazodjon */
  color: #3D5130; /* szöveg színe, igény szerint */
  text-align: center;
}
.hero2 img {
  width: 45%;
  min-width: 200px;
  border-radius: 10px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  object-fit: cover;

}

.leiras2 {
text-align: center;
}

.hero-buttons {
  margin-top: 20px;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  padding: 12px 24px;
  border: none;
  cursor: pointer;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
}

.btn-primary {
  background-color: #475F37;
  color: white;
}

.btn-secondary {
  background-color: #e0e0e0;
  color: #333;
}



/* Hero szekció */
.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 60px 40px;
  background-color: #f3f9f2;
  flex-wrap: wrap;
}

.hero-text {
  max-width: 500px;
  margin-left: 70px;
  text-align: left;
}

.hero h1 {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #2c4b2c;
}

.hero p {
  font-size: 1.1em;
  margin-bottom: 20px;
}

.hero-buttons {
  margin-top: 10px;
}

.hero img {
  width: 35%;
  min-width: 300px;
  border-radius: 10px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.1);
  margin-right: 150px;
}


/* Szolgáltatások */
.services {
  padding: 60px 40px;
  text-align: center;
  margin-bottom: 10px;
}

.services h2 {
  font-size: 2em;
  margin-bottom: 10px;
  color: #2c4b2c;
}

.services p {
  color: #fff;
  margin-bottom: 40px;
  size: 11px;
}

.service-cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}
.card p {
  font-size: 14px; /* vagy pl. 16px, 1rem, stb. */
  color: #6B7280; 
}
.card {
  background-color: white;
  padding: 30px 20px;
  border-radius: 10px;
  width: 300px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  text-align: left;
}

.card h3 {
  margin-bottom: 10px;
  color: #2f5e2f;
}
.card li{
  padding-left: 5px;
  color: #6B7280;
  font-weight: bold;
}
.icon-container {
  background-color: #2D5016;
  border-radius: 8px;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}
/* Galéria grid */
.gallery-section {
    margin: 2rem auto;
    max-width: 1200px;
    padding: 0 1rem;
}
.gallery-title {
    margin-bottom: 1rem;
    font-size: 1.8rem;
    color: #60c062;
    text-align: center;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(200px,1fr));
    gap: 1rem;
}
.gallery-grid img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 6px;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.gallery-grid img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 15px rgba(96,192,98,0.7);
}
/* Galéria grid */
.gallery-admin,
.video-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
}

/* Galéria elem */
.gallery-item,
.image-item,
.video-thumbnail-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 3px 8px rgb(0 0 0 / 0.1);
    cursor: pointer;
    background-color: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover,
.image-item:hover,
.video-thumbnail-wrapper:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgb(0 0 0 / 0.15);
}

/* Képek és videók */
.gallery-item img,
.image-item img,
.video-preview {
    display: block;
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 10px;
}

/* Videó előnézet */
.video-preview {
    filter: brightness(0.85);
    transition: filter 0.3s ease;
}

.video-thumbnail-wrapper:hover .video-preview {
    filter: brightness(1);
}

/* Play gomb a videókhoz */
.video-thumbnail-wrapper .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 40px;
    pointer-events: none;
    opacity: 0.85;
    text-shadow: 0 0 8px rgba(0,0,0,0.7);
}

/* Törlés gomb */
.delete-btn {
    position: absolute;
    top: 8px;
    right: 8px;
    border: none;
    color: white;
    font-size: 20px;
    line-height: 1;
    padding: 4px 10px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 1;
    transition: background-color 0.3s ease;
}

.delete-btn:hover {
    background-color: rgba(200, 0, 0, 1);
}

/* Modal stílusok */
.video-modal {
    display: none; /* alapból rejtett */
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0,0,0,0.8);
    backdrop-filter: blur(6px);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.modal-content {
    position: relative;
    max-width: 90vw;
    max-height: 80vh;
    background-color: #000;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(0,0,0,0.7);
}

#modalVideoPlayer {
    width: 100%;
    height: 100%;
    max-height: 80vh;
    outline: none;
}

/* Modal bezáró gomb */
.close-modal {
    position: absolute;
    top: 12px;
    right: 12px;
    color: white;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    z-index: 20;
    user-select: none;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: #ff4444;
}

/* Lightbox háttér */
#lightbox-overlay {
    position: fixed;
    top:0; left:0; right:0; bottom:0;
    background: rgba(0,0,0,0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* Lightbox kép */
#lightbox-overlay img {
    max-width: 90vw;
    max-height: 90vh;
    border-radius: 8px;
    box-shadow: 0 0 20px #60c062;
    cursor: zoom-out;
}
.icon {
  width: 40px;
  height: 40px;
}
.card ul {
list-style-type: "✔";	
  padding-left: 5px;
  color: #6B7280;
  font-weight: bold;
}

/* Üdvözlő szekció */
.welcome {
  background-color: #e9f2e6;
  padding: 60px 40px;
  text-align: center;
  margin-top: 30px;
}

.welcome h2 {
  font-size: 1.8em;
  margin-bottom: 10px;
  color: #2c4b2c;
}

.welcome p {
	color: #6B7280;
  margin-bottom: 20px;
}

.welcome button {
  background-color: #345e34;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
}

.welcome button:hover {
  background-color: #2b4f2b;
}
/* Űrlap stílusok */
form {
  background-color: white;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  margin-top: 20px;
}

label {
    display: block;
    margin-top: 15px;
    font-weight: 600;
    color: #2c3e50;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
    width: 100%;
    padding: 12px;
    margin-top: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 16px;
    transition: border 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus {
    border-color: #475F37;
    outline: none;
    box-shadow: 0 0 5px rgba(52, 152, 219, 0.5);
}
.contact-form {
  background-color: #f3f9f2;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  max-width: 600px;
  margin: 0 auto 40px;
}

.contact-form label {
  display: block;
  margin-bottom: 6px;
  color: #2c4b2c;
  font-weight: bold;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #c9e2c5;
  border-radius: 6px;
  font-size: 15px;
  margin-bottom: 20px;
  background-color: #fff;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #345e34;
  box-shadow: 0 0 5px rgba(52, 94, 52, 0.3);
  outline: none;
}

/* A .btn-primary osztály már jól illeszkedik */

.contact-section {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  padding: 40px;
  flex-wrap: wrap;
  flex: 0 0 35%;
}
        /* Fő tartalom */
        .hero {
            background-color: #E8F5E8;
            background-size: cover;
            background-position: center;
            color: white;
            text-align: center;
            padding: 100px 20px;
            margin-bottom: 50px;
        }
        
        .hero h1 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }
        
        .hero p {
			color:#2D6A4F;
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .content-section {
            background-color: var(--white);
            border-radius: 8px;
            box-shadow: var(--shadow);
            padding: 40px;
            margin-bottom: 40px;
        }
        
        .content-section p {
            margin-bottom: 20px;
            font-size: 1.1rem;
        }
        
        .content-section p:last-child {
            margin-bottom: 0;
        }
        
        .highlight {
            color: var(--primary-color);
            font-weight: 600;
        }
        
        /* Lábléc */
        footer {
                background-color: var(--primary-color);
    color: var(--white);
    padding: 30px 0;
    text-align: center;
    display: block; /* vagy: display: flex; ha belül flex layout van */
        }
        
        .footer-content {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        .footer-links {
            display: flex;
            margin: 20px 0;
        }
        
        .footer-links a {
            color: var(--white);
            text-decoration: none;
            margin: 0 15px;
            transition: opacity 0.3s;
        }
        
        .footer-links a:hover {
            opacity: 0.8;
        }
        
        .copyright {
            font-size: 0.9rem;
            opacity: 0.9;
        }
        
        /* Reszponzív design */
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                text-align: center;
            }
            
            nav ul {
                margin-top: 20px;
                flex-direction: column;
                align-items: center;
            }
            
            nav ul li {
                margin: 10px 0;
            }
            
            .hero h1 {
                font-size: 2rem;
            }
            
            .content-section {
                padding: 30px 20px;
            }
        }
.contact-form {
  flex: 2 2 55%;
}

.contact-info {
  flex: 1 1 35%;
  background-color: #f3f9f2;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  color: #2c4b2c;
}

.contact-info h2 {
  margin-bottom: 20px;
  color: #2c4b2c;
}

.contact-info p {
  margin-bottom: 12px;
}

.contact-info a {
  color: #345e34;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s;
}

.contact-info a:hover {
  color: #458245;
  text-decoration: underline;
}
.contact-title {
  font-size: 18px;
  font-weight: bold;
  color: #002b50;
  margin-bottom: 20px;
  text-decoration: underline;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}

.icon-box {
  width: 40px;
  height: 40px;
  background-color: #004225;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon-box img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1); /* fehér ikon */
}

.contact-text {
  flex-direction: column;
}

.contact-text .label {
  font-weight: bold;
  margin-bottom: 4px;
  font-size: 14px;
}

.contact-text p,
.contact-text a {
  font-size: 14px;
  margin: 0;
  color: #333;
  text-decoration: none;
}

.contact-text a:hover {
  text-decoration: underline;
}
textarea {
    min-height: 150px;
    resize: vertical;
}

/* Gomb stílusok */
button {
    background-color: #475F37;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    margin-top: 20px;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    width: 30%;

}


button:hover {
    background-color: #759c5c;
}
/* Elválasztó vonal */
hr {
    border: 0;
    height: 1px;
    background-color: #ddd;
    margin: 30px 0;
}

/* Kapcsolati információk */
p {
    margin: 10px 0;
}

a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #white;
    text-decoration: underline;
}

.footer-clean {
  background-color: #1e2b20;
  color: #e8f5e9;
  padding: 3rem 2rem;
  max-width: 1200px;
  width: 100%;
  text-align: center;
  margin-top: 50px; /* vagy amennyi kell */
  display: block;
}
.footer-clean2 {
  background-color: #f7f9f6;
  color: #e8f5e9;
  width: 100%;
  text-align: center;
  display: block;
  height: 0px;
}


.footer-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
  min-width: 260px;
}

.footer-box {
  background-color: #263a2b;
  padding: 1rem 1.2rem;
  border-radius: 6px;
  color: #dcefd9;
}
.footer-box p {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  color: #D1FAE5;
}
.logo-box {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-img {
  height: 48px;
  width: auto;
}

.footer-logo-text {
  font-size: 1.5rem;
  font-weight: bold;
  color: #aed581;
}
/* Alap konténer */
.container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
    font-family: "Segoe UI", sans-serif;
    color: #333;
}

/* Feltöltő űrlap */
.upload-form {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    margin-bottom: 40px;
}

.upload-form h2 {
    margin-bottom: 20px;
    color: #2e7d32;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
}

input[type="file"],
select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 15px;
}

/* Feltöltés gomb */
.upload-form button[type="submit"] {
    background-color: #43a047;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.upload-form button[type="submit"]:hover {
    background-color: #388e3c;
}

/* Galéria szekció */
.category-section {
    margin-bottom: 50px;
}

.gallery-title {
    font-size: 24px;
    color: #2e7d32;
    margin-bottom: 15px;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 5px;
}

.gallery-admin {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

/* Kép doboz */
.gallery-item,
.video-thumbnail-wrapper {
    position: relative;
    width: 220px;
    height: 160px;
    overflow: hidden;
    border-radius: 8px;
    background-color: #f0f0f0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    transition: transform 0.2s ease;
}

.gallery-item:hover,
.video-thumbnail-wrapper:hover {
    transform: scale(1.02);
}

.gallery-item img,
.video-thumbnail-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Törlés gomb */
.delete-btn {
    position: absolute;
    top: 6px;
    right: 6px;
    background: rgba(255, 0, 0, 0.85);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 16px;
    width: 28px;
    height: 28px;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s;
}

.delete-btn:hover {
    background: rgba(200, 0, 0, 0.95);
}

/* Play ikon */
.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 36px;
    opacity: 0.8;
    pointer-events: none;
}

/* Videó modal */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 20px;
}

.modal-content {
    max-width: 90%;
    max-height: 80%;
}

.modal-content video {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 0 20px black;
}

/* Bezáró gomb */
.close-modal {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 36px;
    color: white;
    cursor: pointer;
}

/* Üzenetek */
.success,
.error {
    margin-bottom: 20px;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: bold;
}

.success {
    background-color: #e8f5e9;
    color: #2e7d32;
}

.error {
    background-color: #ffebee;
    color: #c62828;
}
/* Hamburger ikon alap */
.menu-toggle {
      display: none;
      flex-direction: column;
      justify-content: space-between;
      width: 30px;
      height: 25px;
      cursor: pointer;
      z-index: 2000;
	  margin-left: auto;
	  font-weight: bold;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #333;
  margin: 4px 0;
  border-radius: 2px;
  transition: all 0.3s ease-in-out;
  font-weight: bold;
}

/* Hamburger aktív -> X */
.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
  font-weight: bold;
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
  font-weight: bold;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
  font-weight: bold;
}

/* === RESZPONZÍV KIEGÉSZÍTÉS === */

/* Tablet nézet (1024px alatt) */
@media (max-width: 1024px) {
  header {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
  }

  header nav a {
    margin-left: 0;
    margin-top: 10px;
  }

  .hero,
  .hero2,
  .contact-section,
  .services,
  .footer-wrapper {
    flex-direction: column;
    padding: 30px 20px;
    align-items: center;
  }

  .hero img,
  .hero2 img {
    width: 100%;
    margin: 20px 0 0 0;
  }

  .hero-text,
  .hero2 .hero-text {
    margin: 0;
    max-width: 100%;
    text-align: center;
  }

  .hero-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }

  .service-cards,
  .gallery-admin,
  .video-gallery {
    flex-direction: column;
    align-items: center;
  }

  .card {
    width: 90%;
  }

  .contact-form,
  .contact-info {
    width: 100%;
  }

  .footer-wrapper {
    gap: 1rem;
  }

  .footer-box {
    width: 100%;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  }
}

/* Mobil nézet (768px alatt) */
@media (max-width: 768px) {
  h1, .hero h1, .hero2 h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.2rem;
  }

  .hero p,
  .hero2 p,
  .card p,
  .footer-box p {
    font-size: 0.95rem;
  }

  .btn-primary,
  .btn-secondary,
  button {
    width: 100%;
    padding: 10px;
    font-size: 1rem;
  }

  .login-box {
    padding: 30px 20px;
  }

  .upload-form {
    padding: 20px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 1rem;
  }

  .contact-form,
  .contact-info {
    padding: 20px;
  }

  .footer-content {
    flex-direction: column;
    align-items: center;
  }

  .footer-links {
    flex-direction: column;
    gap: 10px;
  }
 header {
    flex-direction: row;
    align-items: center;
    position: relative;
    z-index: 1000;
    padding: 20px;
    -webkit-backface-visibility: hidden;
  }

  .menu-toggle {
    display: flex;
    position: absolute;
    right: 20px;
    top: 20px;
    z-index: 1001;
    width: 30px;
    height: 25px;
    cursor: pointer;
    z-index: 2000;
    margin-left: auto;
	 font-weight: 900;
}
  }
.menu-toggle span {
    height: 3px;
    background: #333;
    border-radius: 2px;
	transition: all 0.3s ease-in-out;
	font-weight: bold;
}
    nav#main-nav {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: #e7f1e9;
        padding: 15px 20px;
        position: absolute;
        top: 100%;
        left: 0;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        z-index: 999;
        text-align: center;
        font-weight: bold;
    }

    nav#main-nav.show {
        display: flex;
    }

    nav#main-nav a {
        display: block;
        text-align: center;
        border-bottom: 1px solid #ccc;
        padding: 6px 12px;
        font-size: 14px;
        width: 60%;
        margin: 0 auto;
    }

    nav#main-nav a:last-child {
        border-bottom: none;
    }

    .menu-toggle {
        display: flex;
        position: absolute;
        right: 20px;
        top: 20px;
    }
}

/* Extra kis képernyők (480px alatt) */
@media (max-width: 480px) {
  body {
    font-size: 14px;
  }

  .logo {
    max-width: 80px;
  }

  .hero,
  .hero2,
  .welcome {
    padding: 20px 15px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .modal-content {
    max-width: 95%;
    max-height: 90%;
  }

  .footer-logo-text {
    font-size: 1.2rem;
  }

  .footer-box,
  .contact-info,
  .contact-form {
    padding: 15px;
  }
}
