@charset "utf-8";
/* CSS Document */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #222;
  background-color: #f5f5f5;
}

/* HERO */
.hero {
  position: relative;
  text-align: center;
  color: white;
}

.hero-image {
  width: 100%;
  height: auto;
  display: block;
  filter: brightness(0.6);
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 90%;
}

.hero-text h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.hero-text p {
  font-size: 1.2rem;
}

/* 3 OSZLOP */
.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 40px 10px;
  background: #f5f5f5;
}

.feature {
  flex: 1 1 250px;
  max-width: 350px;
  margin: 10px;
  padding: 20px;
  background: #f5f5f5;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  text-align: center;
}

.feature h2 {
  margin-top: 0;
}

/* ŰRLAP */
.contact {
  padding: 40px 10px 60px;
  max-width: 600px;
  margin: 0 auto;
}

.contact h2 {
  text-align: center;
}

form input,
form textarea {
  width: 100%;
  padding: 8px;
  box-sizing: border-box;
}

button[type="submit"] {
  background: #2196F3;
  color: white;
  border: none;
  padding: 12px 20px;
  cursor: pointer;
  font-size: 1rem;
  border-radius: 4px;
}

button[type="submit"]:hover {
  background: #1976D2;
}

.gomb-kozepre {
    text-align: center;
    margin: 20px 0; /* opcionális távolság */
}
.kuldo-gomb {
    padding: 15px 30px;
    background: #4CAF50;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    cursor: pointer;
}

.checkbox-5-oszlop {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    max-width: 600px;
    margin: 20px auto;
}

.chbox-grid {
    flex: 1 1 calc(20% - 8px);  /* 5 oszlop: 20% - gap */
    min-width: 100px;            /* Minimum szélesség */
    /* többi stílus ugyanaz */
}




/* Mobil finomhangolás */
@media (max-width: 768px) {
  .hero-text h1 {
    font-size: 1.8rem;
  }
  .hero-text p {
    font-size: 1rem;
  }
}
