*{
		margin:0;
		padding:0;
		box-sizing: border-box;
		font-family: Arial, sans-serif;
		text-decoration:none;
		list-style:none;
	}
		
	body{
		min-height:100vh;
		background-color:#6bbf3d;
		display: flex;
		flex-direction: column;
		color:white;    
		overflow-x:hidden;
	}

	header{
		position: fixed;
		top: 0;
		left:0;
		right:0;
		background:#03213D;
		padding: 0px 1%;
		display:flex;
		align-items: center;
		justify-content: space-between;
		z-index:1000;
		height:50px;
	}

img#logo{
		height:50px; 
		margin:0px;
	}
	
		img.socialmedia{
		width: 30px;
		padding:0px;
		margin:8px;
	} 
	#menu-bar {
		display: none; /* checkbox rejtve */
	}

	label[for="menu-bar"] {
		display: none; /* hamburger ikon alapból rejtve */
		cursor: pointer;
	}	

		.navbar {
		display: flex;
	}

	.navbar ul {
		display: flex;
		list-style: none;
		padding: 0;
		margin: 0;
		flex-direction: row;
	}

	.navbar li {
		position: relative;
	}

	.navbar li a {
		display: block;
		padding: 10px 15px;
		text-decoration: none;
		color: white;
	}
	
/* --------- Mobil nézet --------- */
@media screen and (max-width: 992px) {

    /* Hamburger ikon mobilon, jobb oldalon */
    label[for="menu-bar"] {
        display: block;
        position: absolute;
        top: 15px;
        right: 10px;
        z-index: 1100;
   		}

    /* Menü oldalsó panel mobilon */
    .navbar {
        position: fixed;
        top: 0;
        right: -250px; /* kívül a képernyőről */
        width: 250px;
        height: 100%;
        background: #03213D;
        flex-direction: column;
        padding-top: 60px;
        padding-bottom: 20px; /* hely a jubileumi gombnak */
        transition: right 0.3s ease-in-out;
        z-index: 1000;
    }

    /* Checkbox be-ki kapcsolja a menüt */
    #menu-bar:checked ~ .navbar {
        right: 0;
    }

    /* Menü lista mobilon */
    .navbar ul {
        display: flex;
        flex-direction: column;
        width: 100%;
    }

}



.hero {
	  display: flex;
	  align-items: center;
	  min-height: 90vh; /* kitölti a képernyő felét */
	  padding: 80px;
	  overflow:hidden;
	  background-image: 
					  	linear-gradient(
					  		to right,
					  		rgba(0,0,0,0.75),
					  		rgba(0, 0, 0,0.35) 
					  	),
					  	url('kepek/fooldalkep.png');
	  background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
	}
.hero-content {
    max-width: 600px;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero p {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

@media screen and (max-width: 768px) {
	   .welcome-text {
        animation: slideInLeft 1s forwards;
    }

    .intro-text {
        animation: slideInRight 1s forwards;
        animation-delay:0.5s;
    }
	  
	  
	  .hero {
        min-height: 100vh;
        padding: 90px 20px 40px 20px;
        background-position: center center;
        background-size: cover;
        align-items: flex-start;
    }

    .hero-content {
        width: 100%;
        max-width: 100%;
    }

    .hero h1 {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
        line-height: 1.2;
    }

    .hero p {
        font-size: 1rem;
        line-height: 1.5;
    }

	}
	
.gomb-link{
	color:white;
}

.zoldhatter {
    padding: 14px 28px;
    border: none;
    border-radius: 10px;
    background: #6bbf3d;
    color: white;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 20px;
}

.zoldhatter:hover {
    background: #589f31;
}


/* Főcím balról kúszik be */
	.welcome-text {
	  opacity: 0;
	  transform: translateX(-100%);
	  animation: slideInLeft 1.5s forwards;
	  font-size: 2.2rem;
	  margin-bottom: 20px;
	}

	.green{
		color:#6bbf3d !important;
	}
	
/* Bevezető szöveg jobbról kúszik be */
	.intro-text {
	  max-width: 700px;
	  font-size: 1.2rem;
	  line-height: 1.6;
	  opacity: 0;
	  transform: translateX(100%);
	  animation: slideInRight 1.5s forwards;
	  animation-delay: 1.2s; /* főcím után indul */
	}

/* Animációk */
	@keyframes slideInLeft {
	  to {
		opacity: 1;
		transform: translateX(0);
	  }
	}

	@keyframes slideInRight {
	  to {
		opacity: 1;
		transform: translateX(0);
	  }
	}

	.features-wrapper{

    width:100%;
    background:white;
    border-radius:24px;
    padding:40px;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    box-shadow:0 15px 40px rgba(0,0,0,0.12);
    position:relative;
    z-index:10;
}

.feature-item{
    display:flex;
    align-items:flex-start;
    gap:18px;
}

.feature-item img{
   /* width:48px;*/
    height:48px;
}

.feature-item h3{
    color:#03213D;

    font-size:1.1rem;

    margin-bottom:10px;
}

.feature-item p{
    color:#666;

    line-height:1.6;

    font-size:0.95rem;
}

@media screen and (max-width: 992px){

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

@media screen and (max-width: 768px){

    .features-wrapper{
        grid-template-columns:1fr;

        margin-top:-40px;
    }
}


	.kuldetes{
		background-color:white;
		display: inline-flex;
		width: 100%;
		justify-content: space-between;

	}

	.szoveg{
		text-align:left;
		padding:20px;
		margin:20px;
		width:500px;
		color: #03213D;
	}



	.k-kep{
	width: 220px;
    border-radius: 20px;
	}

	.kuldetes-kepek {
    width: 47%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 20px;
    position: relative;
    margin-top:35px;
}

.nagykep {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    width: 250px;
    height: 280px;
    object-fit: cover;
}

.felso {
    grid-column: 2;
    grid-row: 1;
}

.also {
    grid-column: 2;
    grid-row: 2;
}


@media (max-width: 768px) {

       .kuldetes {
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    .szoveg {
        width: 100%;
        margin: 0;
        padding: 20px;
        text-align: center;
    }

    .kuldetes-kepek {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: 20px;
    }

    .nagykep {
        width: 90%;
        max-width: 300px;
        height: auto;
    }

    .ketkep {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .felso,
    .also {
        width: 90%;
        max-width: 300px;
        height: auto;
    }
}
	.szamokban{
		background-color: #03213D;
	}

	.szamok{
		display: flex;
		justify-content: space-around;
		text-align: center;
		margin-top: 15px;
	}

	.miota{
		display: flex;
	}
	.kozep{
		text-align: center;
	}

	#tevekenyseg{
		background-color: white;
		color:#03213D;
	}

	.fenntarthato{
		background-color: #2eb82e;
		color: white;
	}

	.f-szoveg{
		margin: 25px;
	}

	.tev_kep{
		height: 100px;
	}

	/* TABLET + MOBIL ALAP RESPONSIVE */
@media (max-width: 900px) {

  .szamok {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .szamok > div {
    flex: 1 1 45%;
    text-align: center;
  }

  .tev_kep {
    width: 100%;
    max-width: 180px;
    height: auto;
  }
}

/* TELEFON (kis kijelző) */
@media (max-width: 600px) {

  h1.kozep {
    font-size: 22px;
    text-align: center;
  }

  .szamok {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .szamok > div {
    width: 100%;
    max-width: 320px;
    padding: 10px;
    justify-content: center;
  }

  .szamok p {
    font-size: 16px;
    line-height: 1.4;
  }

  .tev_kep {
    width: 100%;
    max-width: 250px;
  }

  .green.counter {
    font-size: 28px;
    display: inline-block;
  }
}

.rolunk{
  max-width: 900px;
  margin: 40px auto;
  padding: 20px;
  line-height: 1.6;
  font-size: 16px;
}

@media (max-width: 600px) {
  .rolunk {
    padding: 15px;
    font-size: 15px;
    line-height: 1.7;
  }
}

.logo-box {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.logo-img {
  width: 250px;
  max-width: 90%;
  height: auto;
  display: block;
}

@media (max-width: 600px) {
  .logo-img {
    width: 160px;
  }
}

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
}

.lightbox img {
  transform: scale(0.9);
  animation: pop 0.2s ease forwards;
}

@keyframes pop {
  to { transform: scale(1); }
}



}


	#taglista {
    border-collapse: collapse;
    width: 100%;
    color:black;
}

#taglista th,
#taglista td {
    border: 3px dashed black;
    text-align: center;
    height: 40px;
    font-weight: bold;
}

			table#taglista{
				border-collapse: collapse;
				width: 100%;
				margin-top: 53px;
}

			table#taglista th, td.meccs-td {
				text-align: center;
				height: 40px;				
				font-weight: bold;
}

a.email{
	color:black;
}

a.map-link{
	color:black;
}

			table#taglista th{
				text-transform: uppercase;
				border-bottom: 5px dashed black;
			
}


/* taglista táblázat teljes szélességre */
	#taglista {
		width: 100%;       /* teljes szélesség */
		max-width: 100%;   /* semmi se lépje túl */
		table-layout: auto; /* cellák alkalmazkodnak a tartalomhoz */
		}

	#taglista th,
	#taglista td.meccs-td {
		font-size: 16px;  /* kisebb betű mobilon */
		padding: 8px;
		word-wrap: break-word; /* hosszú szövegek törése */
		color: black;
	}

	@media screen and (max-width: 768px) {
		#taglista th,
		#taglista td.meccs-td {
			font-size: 14px; /* mobilon még kisebb */
			padding: 6px;
		}
		table#taglista th{
			font-size:14px;
		}

		#taglista {
    display:block;
    overflow-x:auto;
}

	}

	.footer-icon {
		width: 24px;
		height: 24px;
		vertical-align: middle;
	}

	footer{
			/*padding:0 0 0 0;*/
			background-color:#03213D;
			font-size:15px;
			width:100%;
			text-align:center;
			margin-top: auto;	
	}
.kapcsolat{
	text-align:center;
  	margin-top:100px;
}
	.kapcsolat-form{
			display:flex;
			justify-content:center;
			align-items:center;
			min-height:100vh;
	}

	.formspree{
		width: 400px; 
		color: white; 
		background-color: transparent;
	}

	.form-control,
.form-select{
    width:100%;
    padding:12px;
    border-radius:8px;
    border:none;
    margin-top:5px;
}

.mb-3{
    margin-bottom:20px;
}

	.map-link{
    position:relative;
    color:white;
}

.kuld{
	text-align: center;
	width: 100%;
	height: 25px;
}

.tooltip-text{
    visibility:hidden;
    opacity:0;
    position:absolute;
    bottom:130%;
    left:50%;
    transform:translateX(-50%);
    background:#03213D;
    color:white;
    padding:8px 12px;
    border-radius:8px;
    white-space:nowrap;
    transition:0.3s;
    font-size:14px;
}

.map-link:hover .tooltip-text{
    visibility:visible;
    opacity:1;
}

#myBtn {
	  display: none;
	  position: fixed;
	  bottom: 80px;   /* 30px helyett nagyobb távolság */
	  right: 30px;
	  z-index: 99;
	  background: transparent;
	  border: none;
	  outline: none;
	  cursor: pointer;
	  padding: 0;
	  transition: transform 0.2s ease, opacity 0.3s ease;
	}

	#myBtn img {
	  width: 50px;
	  height: 50px;
	  opacity: 0.7;
	  transition: opacity 0.3s ease;
	}

	#myBtn:hover img {
	  opacity: 1;
	  transform: scale(1.1);
	}
	#myBtn {
	  background: transparent !important;
	}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #03213D;
    color: white;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 9999;
}

.cookie-banner button {
    margin-left: 10px;
    padding: 8px 12px;
    border: none;
    cursor: pointer;
}

#acceptCookies {
    background: #6bbf3d;
    color: white;
}

#rejectCookies {
    background: #999;
    color: white;
}