/* Tóth Travel design */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: white;
  color: #0B2C5F;
  line-height: 1.6;
}

a {
  color: #C79A3B;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Fejléc , lábléc és menü */
header {
  background: #0B2C5F;
  color: white;
  padding: 10px 20px;
  position: sticky;
  top: 0;
  z-index: 10;
}

footer {
  background: #0B2C5F;
  color: white;
  text-align: center;
  padding: 20px 10px;
  font-size: 1.2em;
  margin-top: 60px;
}

footer a {
  color: #C79A3B;
}

.navbar {
  display: flex;
  justify-content: center; /* Menü középre igazítva */
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}

.nav-links li {
  margin: 0;
}

.nav-links a {
  font-weight: 600;
  font-size: 1.5em;
  color: white;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #C79A3B;
}

.nav-links li a.active {
  font-weight: 700;
  border-bottom: 2px solid #C79A3B;
}

/* Mobil menü burger ikon */
.burger {
  position: absolute;
  right: 20px;
  display: none;
  cursor: pointer;
}

.burger div {
  width: 25px;
  height: 3px;
  background: white;
  margin: 5px;
  transition: all 0.3s ease;
}

/* Fő tartalom */
main {
  max-width: 1000px;
  margin: 40px auto;
  padding: 0 20px;
  text-align: center;
}

/* Bemutatkozó logó kép */
.logo-img {
  display: block;
  max-width: 532px;
  margin: 0 auto 20px auto;
}

/* Kiemelt szöveg: kisebb betűméret, arany háttérrel */
.highlight {
  background-color: #C79A3B; /* arany */
  color: #0B2C5F; /* mélykék */
  padding: 12px 8px;
  border-radius: 10px;
  margin: 20px 0;
  font-weight: 600;
  font-size: 1.2em; /* kisebb méret */
  text-align: center;
}

/* Kiemelt szöveg link stílus: megtartja a színt és eltávolítja az alap aláhúzást */
.highlight a {
  color: inherit;
  text-decoration: none;
  display: inline-block; /* hogy nagyobb kattintható legyen */
  width: 100%;
}

.highlight a:hover {
  text-decoration: underline; /* opcionális: hover alatt legyen aláhúzás */
}

/* Aktuális utak plakátjai rácsban */
.aktuális-utak h2 {
  margin-bottom: 25px;
  font-weight: 700;
  font-size: 1.9em;
}

.plakatok-grid {
  display: flex;
  flex-direction: column;
  gap: 80px; /* dupla távolság a képek között */
  align-items: center;
}

.plakat-link img {
  width: 100%;
  max-width: 1000px;
  border-radius: 25px; /* lekerekített sarkak */
  border: 2px solid #C79A3B; /* arany szegély */
  box-shadow: 0 8px 15px rgba(0,0,0,0.25); /* erősebb árnyék */
  transition: transform 0.3s ease;
}

/* Út oldal intro szöveg margóval körbe */
.intro-text {
  margin: 30px 0 30px 0; /* fent és alul nagyobb hely */
  font-size: 1.8em;
  color: #0B2C5F;
}

.promo-image-container {
  max-width: 900px;
  margin: 20px auto 40px auto;
  text-align: center;
}

.promo-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(11,44,95,0.2);
}

/* Mobil nézet */
@media (max-width: 768px) {
  .nav-links {
    display: none; /* Az alapértelmezett menü rejtése mobilon */
    flex-direction: column;
    background-color: #0B2C5F;
    position: absolute;
    top: 60px; /* a fejléc magassága alatt jelenik meg */
    right: 0;
    width: 100%;
    padding: 10px 0;
  }

  .nav-links.nav-active {
    display: flex; /* amikor aktív, megjelenik a menü */
  }

  .burger {
    display: block; /* a burger ikon megjelenítése mobilon */
  }

  /* Logó mérete mobilon */
  .logo-img {
    width: 80%;
    max-width: 350px;
    height: auto;
    margin: 0 auto 20px auto;
  }
}