@charset "UTF-8";
*{
	margin: 0px;
	padding: 0px;
	font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif", cursive;
	color: #7f868a;
	box-sizing: border-box;
}
/* Body */
body{
  width: 100%;
  background-color: #f2f2f2;
  margin: 0;
  font-style: normal;
  font-weight: 200;
}
/* Container */
.container{
  width: 100%;
  max-width: 1200px;
  margin: 10px auto 0; /* ide tedd a felső margót */
  min-height: 100vh;
  background-color: #f2f2f2;
  border-radius: 14px;
  overflow: hidden;
}
/* Navigation */
.main-header {
	position: relative;
	width: 100%;
	height: 80px;
	display: flex;
	background-color: #008b93;   /* EGYSZÍNŰ HEADER */
	border-radius: 10px;
	overflow: visible;              /* <-- EZ A KULCS (ne vágja le a dropdown-t) */
	box-shadow: 0px 2px 2px rgba(0,0,0,0.3);
	z-index: 10;
	margin-bottom: 60px;   /* EZ AD TERET A SLIDER FELÉ */
}
/* Középső blokk: abszolút középre */
.header-center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1000;   /* EZ HIÁNYZOTT */
}
/* Kék, lekerekített menü gomb */
.menu-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  background: #ffffff;          /* FEHÉR háttér */
  color: #008b93;               /* KÉK szöveg */
  border: 2px solid #008b93;    /* finom kék keret */
  border-radius: 999px;
  padding: 10px 16px;
  cursor: pointer;

  box-shadow: 0 2px 6px rgba(0,0,0,0.25);
}

/* Hamburger ikon */
.hamburger {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
}

.hamburger span {
  width: 18px;
  height: 2px;
  background: #008b93;
  border-radius: 2px;
  display: block;
}

/* Menü felirat */
.menu-label {
  color: #008b93 !important;   /* KÉK felirat */
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 14px;
}

/* Legördülő menü doboz */
.menu-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 99999;
  background: #ffffff;
  border-radius: 14px;
  padding: 10px;
  min-width: 240px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.25);

  display: none; /* alapból rejtve */
}

/* Megnyitott állapot */
.menu-dropdown.open {
  display: block;
}

/* Menü linkek */
.menu-dropdown a {
  display: block;
  padding: 10px 14px;
  margin: 6px 0;
text-align: center;     /* KÖZÉPRE IGAZÍTÁS */
  color: #008b93;
  text-decoration: none;
  border-radius: 999px; /* lekerekített "kapszula" */
}

/* Hover: piros lekerekített keret a szöveg körül */
.menu-dropdown a:hover {
  outline: 2px solid #bb1e10;     /* piros keret */
  outline-offset: 0px;
  background: rgba(187, 30, 16, 0.08);
  text-align: center;     /* KÖZÉPRE IGAZÍTÁS */
  font-weight: 600;       /* FÉLKÖVÉR */
}

/* Fél header */
.header-half {
	width: 50%;
	display: flex;
	align-items: center;
}
.header-half.left {
	background-color: #008b93;
	justify-content: flex-start;
	padding-left: 20px;   /* EZ A LÉNYEG */
}
.header-half.right {
	background-color: #008b93;
	justify-content: flex-end;
	padding-right: 20px;  /* EZ A LÉNYEG */
}

/* Tartalom a fél közepén */
.header-content {
	display: flex;
	align-items: center;
	gap: 10px;
}

/* Logók */
.header-content img {
	max-height: 60px;
	max-width: 120px;
	object-fit: contain;
	filter: drop-shadow(0px 2px 2px rgba(0,0,0,0.3));
}


/* Szöveg */
.company-name {
	color: #fff;
	font-size: 18px;
	font-weight: 600;
	white-space: nowrap;
	}
	.slider-wrapper {
	width: 100%;
	margin-top: 20px; /* ha kell térköz */
	display: flex;
	justify-content: center;
}

.slider-container {
	width: 100%;
	max-width: 1200px;   /* EZ A LÉNYEG */
	height: 700px;       /* fix magasság – állítható */
	position: relative;
	overflow: hidden;
	background: #fff;
	border-radius: 14px;
	box-shadow: 0px 2px 2px rgba(0,0,0,0.3);
}

/* Képek */
.slide {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	 object-fit: cover;
  object-position: center;
	border-radius: inherit;
	opacity: 0;
	transition: opacity 1s ease-in-out;
	}

.slide.active {
	opacity: 1;
}
.slider-text {
	position: absolute;
	top: 20px;              /* EZ A LÉNYEG */
	left: 50%;
	transform: translateX(-50%);
	z-index: 2;
	border-radius: inherit;
	text-align: center;
	width: 100%;
	pointer-events: none;
}

.slider-text h3 {
	color: #ffffff;
	font-weight: bolder;
	font-size: 36px;
	letter-spacing: 4px;
	text-shadow: 0px 2px 2px rgba(0,0,0,0.5);
}
.slider-dots {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 10px;
	z-index: 20;
}

.slider-dots span {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: rgba(255,255,255,0.5);
	cursor: pointer;
	transition: all 0.3s ease;
}

.slider-dots span.active {
	background: #ffffff;
	transform: scale(1.2);
}
/* Bemutatkozás wrapper */
.intro-wrapper {
	width: 100%;
	display: flex;
	justify-content: center;
	margin-top: 30px;
}

/* Bemutatkozás konténer */
.intro-container {
	width: 100%;
	max-width: 1200px;
	background-color: #ffffff;

	border-radius: 14px;
	padding: 40px 60px;
	box-shadow: 0px 2px 2px rgba(0,0,0,0.3);
}

/* Cím */
.intro-container h2 {
	color: #008b93;
	margin-bottom: 20px;
	font-size: 36px;
	text-align: center;
}

/* Szöveg */
.intro-container p {
	color: #626262;
	font-size: 18px;
	line-height: 2.0;
	margin-bottom: 15px;
	text-align: center;
	text-align: justify;        /* SORKIZÁRT */
	text-justify: inter-word;  /* szép szóközök */
}
/* 3 körös szekció */
.circle-section {
	width: 100%;
	max-width: 1300px;
	margin: 60px auto;

	display: flex;
	justify-content: space-between;
	gap: 40px;
	text-align: center;
}

/* Egy elem */
.circle-item {
	flex: 1;
}

/* Körkép */
.circle-image {
	width: 300px;
	height: 300px;
	margin: 0 auto 25px auto;

	border-radius: 50%;
	border: 7px solid #008b93;   /* KÉK KERET */
	overflow: hidden;
}

.circle-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Cím */
.circle-item h3 {
	color: #008b93;
	font-size: 30px;
	margin-bottom: 15px;
	text-transform: uppercase;
	letter-spacing: 2px;
}

/* Szöveg */
.circle-item p {
	color: #626262;
	font-size: 17px;
	line-height: 1.8;
	text-align: justify;
}
.site-footer {
  margin-top: 60px;
  background: #ffffff;
  border-top: 3px solid #008b93;
}

.footer-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 20px 30px;

  display: flex;
  justify-content: space-between;
  align-items: center;

  color: #626262;
  font-size: 14px;
  line-height: 1.6;
}
.contact-section {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 60px 0;
}

.contact-box {
  width: 100%;
  max-width: 1300px;
  background: #fff;
  border-radius: 14px;
  padding: 40px 60px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.contact-box h2 {
  color: #008b93;
  text-align: center;
  margin-bottom: 20px;
  font-size: 36px;
}

.contact-intro {
  color: #626262;
  font-size: 18px;
  line-height: 2.0;
  text-align: center;
  text-justify: inter-word;
  margin-bottom: 30px;
}

.contact-grid {
	display: flex;
	gap: 40px;
	align-items: center;
}
.contact-details,
.contact-map {
	flex: 1;           /* 50–50% szélesség */
}

.contact-details h3,
.contact-map h3 {
  color: #008b93;
  margin-bottom: 15px;
  font-size: 22px;
  font-weight: 700;
}

.contact-details p {
  color: #626262;
  font-size: 18px;
  line-height: 1.9;
  margin-bottom: 6px;
}

/* Kocka ALAKÚ, KÉK KERETES TÉRKÉP */
.map-box {
	width: 500px;
	height: 500px;

	border-radius: 16px;          /* LEKEREKÍTETT SARKOK */
	border: 5px solid #008b93;    /* KÉK KERET */
	overflow: hidden;

	box-shadow: 0 4px 12px rgba(0,0,0,0.18);
}
.map-note {
  margin-top: 12px;
  color: #626262;
  font-size: 14px;
}

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

  .map-circle {
    width: 320px;
    height: 320px;
    margin: 0 auto;
  }
.projects-intro{
	color: #626262;
	font-size: 20px;          /* nagyobb betű */
	line-height: 2.2;         /* NAGYOBB sortáv */
	text-align: center;       /* KÖZÉPRE */
	max-width: 900px;
	margin: 30px auto 50px;   /* nagyobb térköz felül–alul */
}

.projects-list{
  display:flex;
  flex-direction:column;
  gap:28px;
}

/* Egy soros projekt kártya */
.project-row{
  display:flex;
  gap:24px;
  background:#fff;
  border-radius:14px;
  overflow:hidden;
  box-shadow:0 4px 12px rgba(0,0,0,0.08);
  padding:18px;
}

/* Bal oldal: alaprajz */
.project-left{
  width:480px;           /* állítható */
  flex-shrink:0;
  border-radius:12px;
  overflow:hidden;
  border:5px solid #008b93;
}

.project-left img{
  width:100%;
  height:100%;
  display:block;
  object-fit:contain;     /* alaprajzhoz jobb */
  background:#fff;
}

/* Jobb oldal: szöveg + látvány */
.project-right{
  flex:1;
  display:flex;
  flex-direction:column;
  gap:14px;
}

/* Felső sor */
.project-top{
  display:flex;
  align-items:center;
  gap:12px;
  justify-content:space-between;
  flex-wrap:wrap;
}

.project-top h2{
  color:#008b93;
  font-size:22px;
  margin:0;
}

/* Jelvény */
.project-badge{
  display:inline-block;
  padding:8px 12px;
  border-radius:999px;
  font-weight:800;
  letter-spacing:1px;
  font-size:12px;
}

.badge-active{
  background:rgba(0,139,147,0.14);
  color:#008b93;
  box-shadow:inset 0 0 0 2px #008b93;
}

.badge-inactive{
  background:rgba(0,0,0,0.08);
  color:#2b2b2b;
  box-shadow:inset 0 0 0 2px #2b2b2b;
}

/* Szöveg + meta */
.project-body p{
  color:#626262;
  font-size:17px;
  line-height:1.9;
  text-align:justify;
  text-justify:inter-word;
  margin:0;
}

.project-meta{
  list-style:none;
  padding:0;
  margin:0;
}

.project-meta li{
  color:#626262;
  font-size:16px;
  line-height:1.8;
}

/* Látványkép jobb oldalon */
.project-visual{
  width:100%;
  height:220px;
  border-radius:12px;
  overflow:hidden;
}

.project-visual img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
}

/* Gombok */
.project-actions{
  margin-top:10px;
  display:flex;
  gap:10px;
}

.btn-primary{
  display:inline-block;
  background:#008b93;
  color:#fff;
  text-decoration:none;
  border-radius:999px;
  padding:10px 16px;
  font-weight:800;
}

.btn-primary:hover{ background:#007b82; }

.btn-secondary{
  display:inline-block;
  background:#ffffff;
  color:#008b93;
  text-decoration:none;
  border-radius:999px;
  padding:10px 16px;
  font-weight:800;
  box-shadow:inset 0 0 0 2px #008b93;
}

/* PASSZÍV: fekete-fehér képek + enyhe “csendesítés” */
.project-row.inactive{
  opacity:0.85;
}

.project-row.inactive img{
  filter:grayscale(100%);
}
.projects-title {
	text-align: center;
	margin-top: 20px;
	margin-bottom: 25px;
	color: #008b93;
	font-size: 36px;
}

/* Kép kontner kapcsolatok */.contact-image-wrapper {
	width: 100%;
	display: flex;
	justify-content: center;
	margin: 30px 0;
}

.contact-image-container {
	width: 100%;
	max-width: 1300px;
	height: 500px;          /* a keret fix magassága */
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;

	border-radius: 14px;
	box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Kép viselkedése */
.contact-image-container img {
	
	width: 100%;
	height: 100%;
	object-fit: cover;       /* kitölti, nem lóg ki */
	display: block;
}
/* =========================
   ELÉRHETŐ PROJEKTEK – LEÍRÓ DOBOZ
   ========================= */
.projects-intro-wrapper{
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 30px;
  margin-bottom: 30px;
  padding: 0 0px;
}

.projects-intro-box{
  width: 100%;
  max-width: 1200px;
  background-color: #ffffff;
  border-radius: 14px;
  padding: 40px 60px;
  box-shadow: 0px 2px 2px rgba(0,0,0,0.3);
}

/* Cím */
.projects-intro-box h2{
  color: #008b93;
  margin-bottom: 20px;
  font-size: 36px;
  text-align: center;
}
.projects-intro-box h4{
  color: #008b93;
  margin-bottom: 20px;
  font-size: 20px;
  text-align: center;
}
/* Szöveg – sorkizárt, mint a Rólunk */
.projects-intro-box p{
  color: #626262;
  font-size: 18px;
  line-height: 2.0;
  text-align: justify;
  text-justify: inter-word;
}
