/* Alap */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  background: #f9f9f9;
  color: #333;
}

/* Hero */
.hero {
  background: linear-gradient(to right, #000, #444);
  color: white;
  text-align: center;
  padding: 80px 20px;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}


@media (max-width: 768px) {
  .hero {
    padding: 50px 15px;
  }
  .hero h1 {
    font-size: 1.8rem;
  }
  .content h2 {
    font-size: 1.5rem;
  }
  .cta-btn {
    padding: 10px 18px;
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .nav-links {
    flex-direction: column;
    gap: 10px;
    position: absolute;
    top: 60px;
    right: 0;
    background: #000;
    padding: 15px;
    display: none; /* alapból elrejtve */
  }
  .nav-links.active {
    display: flex;
  }
}

@media (max-width: 600px) {
  .service-gallery {
    grid-template-columns: 1fr;
  }
}

.cta-btn {
  display: inline-block;
  background: #ffde00;
  color: #000;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
}

.cta-btn:hover {
  background: #ffd633;
}

/* Tartalom */
.content {
  max-width: 800px;
  margin: 50px auto;
  padding: 0 20px;
  text-align: center;
}

.content h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #222;
}

/* Kapcsolat oldal */
.contact-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 1200px;
  margin: 40px auto;
}

/* Kontakt doboz új dizájn */
.contact-card {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  text-align: left;

  display: flex;
  flex-direction: column; /* egymás alatt legyenek az elemek */
}

.contact-card h2 {
  font-size: 1.4rem;
  margin-bottom: 20px;
  color: #111;
}

.contact-card p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 12px 0;
  font-size: 1rem;
  color: #333;
}

.contact-card p .icon {
  font-size: 1.2rem;
}

.contact-card a {
  color: #e6b800;
  font-weight: bold;
  text-decoration: none;
}

.contact-card a:hover {
  text-decoration: underline;
}

/* Gomb stílus */
.contact-card .cta-btn {
  display: block;
  width: 100%;
  text-align: center;
  background: #FFD700;
  color: #000;
  padding: 14px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  margin-top: 20px;
  transition: background 0.3s ease;
}

.contact-card .cta-btn {
  margin-top: auto;            /* aljára nyomja */
  align-self: center;          /* középre teszi a gombot */
  width: calc(100% - 40px);    /* hagy kb. 20px helyet mindkét oldalon */
  max-width: 700px;            /* ne legyen túl széles nagy kijelzőn */
}


.contact-card .highlight {
  color: #e6b800;
  font-weight: bold;
  text-decoration: none;
}

.contact-card .highlight:hover {
  text-decoration: underline;
}

.map-container {
  position: relative;
  width: 100%;
  min-height: 400px; /* alap magasság gépre */
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  overflow: hidden;
}

.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 12px;
}

@media (min-width: 900px) {
  .contact-wrapper {
    flex-direction: row;
    align-items: stretch;
    justify-content: center;
    gap: 40px;
  }

  .contact-card {
    flex: 0 0 700px; /* fix szélesség */
  }

  .map-container {
    flex: 0 0 700px; /* fix szélesség, marad nagyobb */
  }
}

/* Galéria grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item img:hover {
  transform: scale(1.05);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.8);
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.lightbox-content {
  max-width: 90%;
  max-height: 80vh;
  border-radius: 12px;
}

.close {
  position: absolute;
  top: 20px; right: 30px;
  font-size: 40px;
  color: white;
  cursor: pointer;
}

#lightbox-caption {
  margin-top: 15px;
  color: #fff;
  font-size: 16px;
  text-align: center;
}

/* Szolgáltatások */
.service-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 60px;
}

.service-section.reverse {
  flex-direction: column-reverse;
}

@media (min-width: 992px) {
  .service-section {
    flex-direction: row;
    align-items: flex-start;
  }
  .service-section.reverse {
    flex-direction: row-reverse;
  }
}

.service-text {
  flex: 1;
  padding: 10px;
}

.service-text h2 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #222;
}

.service-text p {
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
}

.service-gallery {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.service-gallery img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  cursor: pointer;
  transition: transform 0.3s ease;
}

.service-gallery img:hover {
  transform: scale(1.05);
}

/* Navbar */
.navbar {
  background: #000;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 50;
}

.logo {
  font-size: 1.3rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo .zap {
  color: #fff200;
  text-shadow: 0 0 3px #fff200, 0 0 6px #fff200, 0 0 12px #ffea00;
  font-size: 1.2em;
}

.nav-links {
  display: flex;
  gap: 20px;
}

.nav-links a,
.nav-home {
  color: #FFD700;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
}

.nav-links a:hover,
.nav-home:hover {
  color: #fff200;
  text-shadow: 0 0 8px #fff200, 0 0 16px #ffea00;
}

/* Footer */
.site-footer {
  background: #000;
  color: #aaa;
  text-align: center;
  padding: 20px;
  margin-top: 40px;
}

.site-footer a {
  color: #FFD700;
  font-weight: bold;
  text-decoration: none;
}

.site-footer a:hover {
  color: #fff200;
  text-decoration: underline;
}

.site-footer address {
  font-style: normal;
  margin-top: 10px;
  display: block;
}

/* Miért válasszon minket */
.section-light {
  background: #f3f3f3;
  padding: 60px 20px;
}

.section-light .content {
  text-align: center !important;
}

.section-light .content p {
  margin-bottom: 1.2em;
  line-height: 1.7;
  font-size: 1.05rem;
  color: #444;
}

/* Rólunk */
.section-about {
  padding: 60px 20px;
}

.section-about .content {
  text-align: center !important;
}

.section-about .content p {
  margin-bottom: 1.2em;
  line-height: 1.7;
  font-size: 1.05rem;
  color: #444;
}

/* Menü alap */
.nav-links {
  display: flex;
  gap: 20px;
}

/* Hamburger ikon alap */
.menu-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  color: #FFD700;
}

/* Mobil nézet */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    right: 20px;
    background: #000;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.5);
    gap: 15px;
  }

  .nav-links a {
    color: #FFD700;
    font-size: 1.2rem;
    text-decoration: none;
  }

  .nav-links a:hover {
    color: #fff200;
  }

  /* amikor aktív (megnyitott menü) */
  .nav-links.active {
    display: flex;
  }
}

/* Szolgáltatás szekciók javítása */
.service-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 60px;
  padding: 20px; /* egy kis belső térköz, hogy szellősebb legyen */
}

.service-section:nth-child(even) {
  background-color: #f2f2f2; /* enyhe szürke háttér minden másodiknál */
  border-radius: 12px;
}

.service-text {
  flex: 1;
  padding: 10px;
  text-align: left; /* balra igazítja a szöveget */
}

.service-text p {
  font-size: 1rem;
  line-height: 1.8; /* nagyobb sorköz, könnyebb olvashatóság */
  color: #444;
  margin-bottom: 1em;
}

/* --- Szolgáltatás szekció: kép és szöveg egymás mellé gépen --- */
@media (min-width: 992px) {
  .service-section {
    flex-direction: row; /* vízszintes elrendezés gépen */
    align-items: flex-start;
  }
  .service-section.reverse {
    flex-direction: row-reverse; /* kép és szöveg helyet cserél gépen */
  }
}




