/* ===== CUSTOM.CSS – TELJES JAVÍTÁS ===== */

/* Alap: minden elem box-sizing */
* {
  box-sizing: border-box;
}

/* ===== Képek ===== */
img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* ===== Oszlopok rugalmasan ===== */
[class*="u"] {
  width: auto !important;
  max-width: 100% !important;
  float: none !important;
  display: block !important;
  margin: 0 auto;
}

/* ===== Sorok ===== */
.row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 auto;
  width: 100%;
  max-width: 1200px; /* teljes oldal max szélessége */
}

/* ===== Általános test ===== */
body {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
}

/* ===== Section padding ===== */
section {
  padding: 15px !important;
}

/* ===== Gombok ===== */
.button {
  width: 100%;
  text-align: center;
  display: block;
  margin: 10px auto;
}


/* ===== MEDIA QUERIES ===== */

/* Tablet + mobil */
@media (max-width: 768px) {

  body {
    font-size: 16px;
  }

 

  #nav li {
    display: block;
    width: 100%;
    padding: 10px;
  }

  h1, h2, h3 {
    text-align: center;
  }

  .6u, .12u {
    width: 100% !important;
  }

  .row {
    display: block !important;
  }

}

/* Kisebb mobilok */
@media (max-width: 480px) {

  section {
    padding: 10px !important;
  }

  .button {
    width: 100%;
  }

