/* styles.css (LIGHT + CORPORATE + SQUARE CORNERS + #42af72) */
:root{
  --bg: #f4f6f5;
  --panel: #ffffff;
  --panel-alt: #f7faf8;
  --text: #0f172a;
  --muted: #5b6b63;
  --line: rgba(15, 23, 42, .12);

  /* Green accent palette */
  --accent: #42af72;
  --accent-dark: #2f965c;
  --accent-soft: rgba(66,175,114,.12);

  /* Corporate */
  --shadow: 0 6px 16px rgba(15, 23, 42, .06);
  --radius: 0px;            /* <-- square corners everywhere */
  --container: 1100px;
}

*{ box-sizing: border-box; }
html, body{ height:100%; }

body{
  margin:0;
	padding:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Apple Color Emoji","Segoe UI Emoji";
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
}

a{ color: inherit; }
.container{
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
}

/* Accessibility */
.skip-link{
  position:absolute;
  left:-999px;
  top:auto;
  width:1px;
  height:1px;
  overflow:hidden;
}
.skip-link:focus{
  left:1rem; top:1rem;
  width:auto; height:auto;
  padding:.6rem .9rem;
  background:#fff;
  border:1px solid var(--line);
  z-index: 999;
  box-shadow: var(--shadow);
}

/* Header */

.hero-header{
  position: relative;
  background: url("images/head.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #ffffff;       
  display: flex-start;
	padding:20px;
  align-items: center; 
min-height: 250px; 	
  height: 30vh;
  max-height: 560px;
}

.hero-header::before{
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);  
  z-index: 0;
}

.hero-header .header-inner{
  position: relative;
  z-index: 1;
}

.hero-header .nav-link,
.hero-header .brand-title,
.hero-header .brand-subtitle{
  color: #ffffff;
}


.site-header{
  /*position: sticky;*/
	position: relative;
  top:0;
  z-index: 50;
  background-color: rgba(244,246,245,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner{
  display:flex;
  gap: 1rem;
  align-items:center;
  justify-content: space-between;
  padding: .85rem 0;
}
.brand-title{
  font-weight: 800;
  letter-spacing: .01em;
  font-size: 1rem;
}
.brand-subtitle{
  color: var(--muted);
  font-size: .9rem;
  margin-top: .1rem;
}

.site-nav{
  display:flex;
  gap: .6rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.nav-link{
  text-decoration: none;
  color: var(--muted);
  font-weight: 700;
  padding: .35rem .55rem;
  border: 1px solid transparent;
}
.nav-link:hover{
  color: var(--text);
  border-color: var(--line);
  background: var(--panel);
}

/* Section separation (corporate look)
   - alternating section backgrounds
   - subtle divider line
   - green left bar in each section */
.section,
.hero{
  border-top: 1px solid var(--line);
}
.hero{ border-top: 0; }

.hero,
.section{
  position: relative;
  padding: 2.2rem 0;
  background: var(--panel);
}
.section:nth-of-type(even){
  background: var(--panel-alt);
}

/* left accent bar */
.hero::before,
.section::before{
  content:"";
  position:absolute;
  left:0;
  top:0;
  bottom:0;
  width: 6px;
  background: var(--accent);
  opacity: .9;
}

/* tighten hero top */
.hero{
  padding: 2.6rem 0 2.2rem;
}
.hero-inner{
  display:grid;
  gap: 1.1rem;
}
.hero-title{
  font-size: clamp(2rem, 5vw, 3.1rem);
  letter-spacing: .01em;
  margin: 0;
}

.section-title{
  font-size: 1.75rem;
  margin: 0 0 .35rem;
}
.section-subtitle{
  font-size: 1.05rem;
  margin: .1rem 0 .9rem;
  color: var(--muted);
  font-weight: 700;
}
.lead-text{
  margin: 0;
  color: var(--muted);
  max-width: 78ch;
}

/* Corporate callout */
.callout{
  background: #ffffff;
  border: 1px solid var(--line);
  padding: 1rem;
  box-shadow: var(--shadow);
}
.callout-title{
  margin: 0 0 .4rem;
  font-size: 1.05rem;
}
.bullets{
  margin: .5rem 0;
  padding-left: 1.1rem;
}
.bullets li{ margin: .25rem 0; }

.hero-links p{ margin: .55rem 0; }
.muted{ color: var(--muted); }
.strong{ font-weight: 800; }

/* emphasis block (square) */
.hero-emphasis{
  padding: .75rem 1rem;
  border-left: 4px solid var(--accent);
  background: var(--accent-soft);
  margin-top: .35rem;
}

/* Cards */
.content-card{
  margin-top: 1.1rem;
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 1rem;
  box-shadow: var(--shadow);
}
.section:nth-of-type(even) .content-card{
  background: #ffffff;
}
.card-title{
  margin: 0 0 .55rem;
  font-size: 1.25rem;
}
.mini-title{
  margin: .8rem 0 .35rem;
  font-weight: 800;
}
.stacked-lines{ margin: .5rem 0; }

/* Links */
.text-link{
  color: var(--accent-dark);
  text-decoration: none;
  font-weight: 800;
}
.text-link:hover{ text-decoration: underline; }

/* Images */
.image-list{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}
.image-item{
  border: 1px solid var(--line);
  overflow:hidden;
  background: #fff;
}
.image-caption{
  padding: .65rem .75rem;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
  font-weight: 700;
}
.responsive-img{
  width: 100%;
  height: auto;
  display:block;
  background: #eef2f0;
  /*min-height: 180px;*/
}

/* image grid */
.image-grid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .8rem;
  margin-top: .9rem;
}
.image-grid .responsive-img{
  height: auto;
  border: 1px solid var(--line);
  background: #eef2f0;
	width:100%;	
	min-height:0;
	display:block;
}

/* Packages */
.package{
  padding: 1rem 0;
  border-top: 1px solid var(--line);
}
.package:first-of-type{ border-top: none; }
.package-title{
  margin: 0 0 .5rem;
  font-size: 1.03rem;
}
.package-subhead{
  margin: .8rem 0 .2rem;
  font-weight: 800;
}

/* Prices */
.price-list{
  list-style: none;
  padding: 0;
  margin: .75rem 0 0;
}
.price-list li{
  display:flex;
  gap: 1rem;
  justify-content: space-between;
  align-items: baseline;
  padding: .65rem .75rem;
  border: 1px solid var(--line);
  margin: .55rem 0;
  background: var(--panel-alt);
}
.price-list li span{
  color: var(--muted);
  max-width: 72ch;
}
.price-list li strong{
  white-space: nowrap;
  font-size: 1.05rem;
}

/* Dividers */
.divider{
  height: 1px;
  background: var(--line);
  margin: 1rem 0;
}
.fineprint{
  color: var(--muted);
  font-size: .95rem;
  margin: .4rem 0;
}

/* Buttons (square, corporate) */
.button{
  display:inline-block;
  margin-top: .85rem;
  text-decoration:none;
  padding: .75rem 1rem;
  background: var(--accent);
  border: 1px solid rgba(0,0,0,.08);
  color: #ffffff;
  font-weight: 900;
}
.button:hover{
  background: var(--accent-dark);
}
.button-secondary{
  background: #ffffff;
  color: var(--accent-dark);
  border: 1px solid rgba(66,175,114,.55);
}
.button-secondary:hover{
  background: rgba(66,175,114,.10);
}

/* Video */
.video-embed{
  margin-top: .9rem;
  overflow:hidden;
  border: 1px solid var(--line);
  background: #fff;
}
.video-embed iframe{
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  display:block;
}

/* Footer */
.site-footer{
  border-top: 1px solid var(--line);
  padding: 1.1rem 0;
  color: var(--muted);
  background: #ffffff;
}
.footer-inner{
  display:flex;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.footer-note{
  font-weight: 900;
  color: var(--text);
}

/* Responsive */
@media (max-width: 600px){
  .image-list{ grid-template-columns: repeat(1, 1fr); }
  .image-grid{ grid-template-columns: repeat(2, 1fr); }
	.responsive-img_mini {width:70%;}
	.site-nav {display: none;}
}
@media (min-width: 500.1px){
  .image-grid{ grid-template-columns: repeat(3, 1fr); }
	.responsive-img_mini {width:30%;}
}

/* Video */
#video-single {
  display: grid;
  /* Alapesetben (mobilon) 1 oszlop */
  grid-template-columns: 1fr;
  gap: 20px;
  padding: 20px;
  width: 100%;
  margin: 0 auto;
}

#video-single video {
  width: 100%;
  /* Itt rögzítjük a 16:9-es arányt */
  aspect-ratio: 16 / 9;
  background-color: #000; /* Fekete háttér, amíg tölt a videó */
  border-radius: 8px;
  object-fit: cover; /* Kitölti a keretet, ha a forrásfájl aránya eltérne */
}


#videos {
  display: grid;
  /* Alapesetben (mobilon) 1 oszlop */
  grid-template-columns: 1fr;
  gap: 20px;
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

#videos video {
  width: 100%;
  /* Itt rögzítjük a 16:9-es arányt */
  aspect-ratio: 16 / 9;
  background-color: #000; /* Fekete háttér, amíg tölt a videó */
  border-radius: 8px;
  object-fit: cover; /* Kitölti a keretet, ha a forrásfájl aránya eltérne */
}

/* Tablet nézet: 2 oszlop */
@media (min-width: 600px) {
  #videos {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Nagyobb monitorok: maradhat a 2x2-es elrendezés, vagy akár 4 egymás mellett */
@media (min-width: 1024px) {
  #videos {
    /* Ha 4-et akarsz egymás mellé nagy képernyőn, írd át 4-re: */
    grid-template-columns: repeat(2, 1fr); 
  }
}