body {
  margin: 0;
  background-color: #548235;
  font-family: Arial, sans-serif;
  color: white;
}


.header {
  text-align: center;
  padding: 10px;
}
.header img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 10px auto;
}

.menu {
  display: flex;
  justify-content: center;
  gap: 30px;
  background: rgba(0,0,0,0.2);
  padding: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.menu a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.menu a:hover {
  text-decoration: underline;
}

.tartalom {
  display: grid;
  grid-template-columns: 280px 1fr 280px; 
  gap: 40px;
  max-width: 1400px;
  margin: 40px auto;
  align-items: start;
}

.oldalkep {
  display: flex;
  justify-content: center;
}

.oldalkep img {
  max-width: 100%;
  height: auto;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  border-radius: 8px;
}

.szoveg {
  width: 100%;
  text-align: center;
  line-height: 1.7;
}

.map {
  max-width: 1400px;
  margin: 20px auto;
  padding: 0 10px;
}

.map iframe {
  width: 100%;
  height: 100vh;
  border: none;
}

.footer {
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
}


@media (max-width: 1000px) {
  .tartalom {
    grid-template-columns: 1fr;
    gap: 0;
    margin: 20px;
  }

  .oldalkep {
    display: none;
  }

  .szoveg {
    max-width: 100%;
    margin: 0;
  }
}


@media (max-width: 600px) {
  .menu {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
}