    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    body {  
	  font-family: 'Segoe UI', sans-serif;
      line-height: 1.6;
      color: #2c3e50;
    }
    header.hero {
  margin-top: 0;
  border-top: none;      
	  background-size: cover;
      background-position: center;
      height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
    }
	.overlay {
      background-color: rgba(0, 0, 0, 0.5);
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .container {
      width: 90%;
      max-width: 1200px;
      margin: auto;
    }
    .headline {
      font-size: 2.5rem;
      color: #fff;
      margin-bottom: 1rem;
      text-shadow: 1px 1px 5px rgba(0,0,0,0.5);
    }
    .subline {
      font-size: 1.25rem;
      color: #fff;
      margin-bottom: 2rem;
      text-shadow: 1px 1px 5px rgba(0,0,0,0.5);
    }
    .cta-button {
      background-color: #2ecc71;
      color: #fff;
      padding: 0.75rem 1.5rem;
      font-size: 1rem;
      text-decoration: none;
      border-radius: 5px;
      transition: background 0.3s;
    }
    .cta-button:hover {
      background-color: #27ae60;
    }
    section.intro, section.services {
      padding: 4rem 0;
      background-color: #ecf0f1;
    }
    h2 {
      text-align: center;
      font-size: 2rem;
      margin-bottom: 2rem;
      color: #2c3e50;
    }
    .features {
      list-style: none;
      padding: 0;
      display: grid;
      gap: 1rem;
      max-width: 600px;
      margin: auto;
    }
    .features li {
      background: #fff;
      padding: 1rem;
      border-left: 4px solid #2ecc71;
      font-size: 1rem;
    }
    .grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2rem;
    }
    .service {
      background-color: #fff;
      padding: 2rem;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.05);
      text-align: center;
    }
    .service h3 {
      margin-bottom: 1rem;
      color: #27ae60;
    }
    footer {
      background-color: #2c3e50;
      color: #ecf0f1;
      padding: 2rem 0;
      text-align: center;
    }
    footer nav a {
      color: #ecf0f1;
      text-decoration: none;
      margin: 0 0.5rem;
    }
    footer nav a:hover {
      text-decoration: underline;
    }

main {
  font-size: 1.125rem; /* increase base size for main content */
}

form label,
form input,
form textarea,
form button {
  font-size: 1rem;
}
form input,
form textarea {
  padding: 0.5rem;
  width: 100%;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}

form button {
  background-color: #2ecc71;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

form button:hover {
  background-color: #27ae60;
}


.highlighted-lead {
  font-size: 1.5rem;
  color: #16a085;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.scroll-down {
  position: absolute;
  bottom: 100px; /* alapértelmezés: desktopon jóval feljebb */
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.2rem;
  font-weight: bold;
  color: white;
  background-color: rgba(0, 0, 0, 0.4);
  padding: 0.4rem 1rem;
  border-radius: 4px;
  text-decoration: none;
  animation: bounce 2s infinite;
  z-index: 10;
}

/* Oneplus Pad 2 Tableten még egy kicsit feljebb */
@media (min-width: 2100px) and (max-width: 3010px) {
  .scroll-down {
    bottom: 220px;
  }
}

/* Tableten még egy kicsit feljebb */
@media (min-width: 768px) and (max-width: 1024px) {
  .scroll-down {
    bottom: 180px;
  }
}

/* Mobilon vissza kicsit lejjebb, de még látható marad */
@media (max-width: 767px) {
  .scroll-down {
    bottom: 110px;
  }
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

/* === FIX NAVBAR === */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 50, 0, 0.85);
  color: white;
  padding: 0.5rem 0;
  z-index: 1000;
}

.navbar-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar .logo {
  font-size: 1.5rem;
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}

.nav-links a:hover {
  text-decoration: underline;
}

body {
  padding-top: 60px; /* eltolás a fix navbar miatt */
}

.logo img {
  height: 42px;
  display: block;
}


/* Hamburger ikon jobb oldalon */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  cursor: pointer;
  gap: 5px;
  margin-left: 1rem;
}
.hamburger span {
  height: 3px;
  width: 25px;
  background: white;
  border-radius: 3px;
  transition: all 0.3s ease;
}
.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobilnézet: hamburger ikon és rejtett menü */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;                 /* ABSOLUTE helyett FIXED */
    top: 60px;                       /* a fix navbar alól indul */
    left: 0;
    right: 0;
    width: 100%;
    height: calc(100vh - 60px);      /* mindig a teljes látható magasság */
    flex-direction: column;
    background: rgba(0, 50, 0, 0.95);
    display: none;
    padding: 0.5rem 0;
    text-align: center;
    overflow-y: auto;                /* MENÜ külön görgethető */
    -webkit-overflow-scrolling: touch; /* mobilon finom görgetés */
    z-index: 1100;                   /* biztosan minden fölé kerüljön */
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    padding: 0.75rem 0;
  }

  /* FŐMENÜ sorok */
  .nav-links > li {
    padding: 0.2rem 0;         /* eddigi 0.75rem helyett jóval kisebb */
    margin: 0;
  }

  .nav-links > li > a {
    display: block;
    padding: 0.35rem 1rem;     /* kisebb “magasság” */
    font-size: 0.95rem;        /* picit kisebb betűméret mobilon */
    line-height: 1.2;
  }



}




/* Modern szolgáltatás kártyák kattinthatóan */
.service-card {
  display: block;
  padding: 1.5rem;
  border-radius: 12px;
  background-color: white;
  color: #1a1a1a;
  text-decoration: none;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
  background-color: #f3fff7;
}
.service-card h3 {
  margin-top: 0;
  font-size: 1.2rem;
  color: #205c34;
}
.service-card p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

footer .copyright {
  text-align: center;
  font-size: 0.875rem;
  color: #aaa;
  margin-top: 1rem;
  padding-bottom: 0.5rem;
}

footer p a[href^="tel:"] {
  color: inherit !important;        /* örökli a szülő szövegszínt */
  text-decoration: none; 			/* nincs aláhúzás */
}

footer p a[href^="tel:"]:hover {
  text-decoration: underline; 		/* kis visszajelzés hover esetén */
}

/* === Fűnyírás (és később más szolgáltatás) aloldal szöveges blokk === */

.service-section {
  padding: 3rem 0;              /* levegő a hero után */
}

/* a szöveg ne fusson végtelen szélesen, könnyebben olvasható */
.service-section p {
  max-width: 720px;
  margin: 0 auto 1rem;
}

/* a hero utáni nagy zöld mondat középre igazítva még jobban „üt” */
.service-section .highlighted-lead {
  text-align: center;
}

/* félkövér, kicsit hangsúlyosabb „mini-CTA” mondat */
.inline-cta {
  font-weight: 600;
}

/* szöveges cselekvésre ösztönző link (CTA) */
.text-cta-link {
  font-weight: 600;
  text-decoration: none;
  border-bottom: 2px solid #2ecc71;
  padding-bottom: 0.1rem;
}

.text-cta-link:hover {
  border-bottom-color: #27ae60;
}

/* Középre igazított alcím a szolgáltatás szekcióban */
.service-section h3 {
  text-align: center;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

/* Középre igazított szöveg, de a lista legyen rendezett és esztétikus */
.service-section ul {
  max-width: 720px;       /* ugyanaz, mint a bekezdések szélessége */
  margin: 0 auto 1.5rem;  /* középre igazítva */
  padding-left: 1.2rem;   /* finom bal térköz, hogy a bullet pontok szépen álljanak */
  text-align: left;       /* maga a lista marad balra igazítva, így olvashatóbb */
}

/* Listaelemek szellősebb elválasztása */
.service-section ul li {
  margin-bottom: 0.6rem;
  line-height: 1.5;
}

/* Képernyőfüggő elválasztás és tördelési szabályok mindig a legvégén legyenek*/

/* === Prémium szövegtördelés (desktop + tablet) === */
@media (min-width: 768px) {
  .service-section p,
  .service-section ul li {
    text-align: justify;              /* sorkizárt, elegáns hasáb */
    text-justify: inter-word;         /* jobb szóköz-kezelés */
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
    -ms-hyphens: auto;
    -o-hyphens: auto;
    hyphens: auto;
    hyphenate-limit-lines: 3;         /* ne törjön minden sorban */
  }
}

/* === Mobil nézet: nincs elválasztás, nincs sorkizárás === */
/*@media (max-width: 767px) {
  .service-section p,
  .service-section ul li {
    text-align: left;                 // természetes, olvasható mobilon
    -webkit-hyphens: manual;
    -moz-hyphens: manual;
    -ms-hyphens: manual;
    -o-hyphens: manual;
    hyphens: manual;
  }
}
*/
/* === Mobil nézet: elválasztás, sorkizárás === */
@media (max-width: 767px) {
  .service-section p,
  .service-section ul li {
    text-align: justify;        /* ← eddig left volt */
    text-justify: inter-word;
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
    -ms-hyphens: auto;
    -o-hyphens: auto;
    hyphens: auto;
  }
}

/* --- Kertgondozás dropdown menü alap --- */

.nav-links li.dropdown {
  position: relative;
}

/* Alap: legyen lista, de ne látszódjon (desktopon majd hoverre nyílik) */
.nav-links li .dropdown-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
}

/* Almenü linkek egymás alatt, ha láthatóak */
.nav-links li .dropdown-menu li a {
  display: block;
  padding: 8px 12px;
  text-decoration: none;
}

/* --- Desktop / széles nézet: hoverre nyíló zöldes dropdown --- */
@media (min-width: 769px) {
  .nav-links li .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #f2fff7; /* finoman zöldes, nem vakító */
    min-width: 220px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.18);
    z-index: 1000;
  }

  .nav-links li.dropdown:hover > .dropdown-menu {
    display: block;
  }

  .nav-links li .dropdown-menu li a {
    white-space: nowrap;
    color: #174d2d;              /* sötét, zöldes szöveg – jól olvasható */
  }

  .nav-links li .dropdown-menu li a:hover {
    background-color: #d9ffe8;   /* elegáns világoszöld hover */
    color: #0a301b;              /* picit mélyebb zöld hover felirat */
  }
}

/* --- Mobil nézet: dropdown a listában, behúzás NÉLKÜL, kisebb térközzel --- */
@media (max-width: 768px) {
  .nav-links li .dropdown-menu {
    display: block;
    position: static;
    background-color: transparent;
    box-shadow: none;
    margin-top: 0.1rem;         /* kis, de kicsi rés a főmenü és az első almenü között */
  }

  .nav-links li .dropdown-menu li {
    padding: 0.1rem 0;          /* nagyon kicsi függőleges térköz a sorok között */
  }

  .nav-links li .dropdown-menu li a {
    display: block;
    padding: 0.15rem 0;         /* laposabb sorok, NINCS padding-left */
    font-size: 0.9rem;          /* kicsit kisebb, mint a főmenü – látszik, hogy almenü */
    line-height: 1.2;
  }
}
