.devai14_page {
  font-family: "Roboto", Arial, sans-serif;
  color: #333333;
}

.devai14_section {
  padding: 60px 0;
}

.devai14_container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.devai14_underline {
  width: 60px;
  height: 3px;
  margin: 12px auto 0;
  background: #f26825;
}

.devai14_section h2 {
  font-size: 28px;
  font-weight: 600;
  text-align: center;
}

.devai14_section h3 {
  font-size: 20px;
  font-weight: 600;
}

.devai14_section p {
  line-height: 1.6;
}

/* HERO – bal oldali kép, jobb oldali szöveg */

.devai14_hero {
  padding: 50px 0 40px;
  background: #f7f7f7;
}

.devai14_hero_layout {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}

/* nagyobb kijelzőn egymás mellett legyenek */
@media (min-width: 900px) {
  .devai14_hero_layout {
    flex-direction: row;
    align-items: stretch;
  }
}

.devai14_hero_image {
  flex: 1;
  min-width: 0;
}

.devai14_hero_image img {
  width: 100%;
  height: 100%;
  max-height: 380px;
  object-fit: cover;
  display: block;
  border: 1px solid #e3e3e3;
  background: #ffffff;
}

.devai14_hero_content {
  flex: 1;
  min-width: 0;
  text-align: center;
}

@media (min-width: 900px) {
  .devai14_hero_content {
    padding-left: 40px;
    text-align: left;
  }
}

.devai14_hero_content h1 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #333333;
}

.devai14_hero_content p {
  font-size: 15px;
  line-height: 1.7;
  color: #555555;
  margin-bottom: 20px;
}

.devai14_hero_cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

@media (min-width: 900px) {
  .devai14_hero_cta {
    justify-content: flex-start;
  }
}


/* Gombok */
.btn_orange,
.btn_outline_orange,
.devai14_btn_link {
  display: inline-block;
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 0;
  cursor: pointer;
}

.btn_orange {
  background: #f26825;
  color: #ffffff;
  border: 1px solid #f26825;
}

.btn_orange:hover {
  background: #d3561d;
  border-color: #d3561d;
}

.btn_outline_orange {
  background: transparent;
  color: #333333;
  border: 1px solid #f26825;
}

.btn_outline_orange:hover {
  background: #fff4ec;
}

.devai14_btn_link {
  background: #f26825;
  color: #ffffff;
  font-size: 13px;
}

/* Info boxok */
.devai14_info_box {
  margin-top: 24px;
  padding: 12px 16px;
  background: #f7f7f7;
  border: 1px solid #e3e3e3;
  font-size: 14px;
}

.devai14_info_box--center {
  text-align: center;
}

/* Kiemelt előnyök */
.devai14_features_grid {
  display: grid;
  gap: 24px;
}

@media (min-width: 900px) {
  .devai14_features_grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.devai14_feature_box {
  padding: 24px 22px;
  border: 1px solid #e3e3e3;
  text-align: center;
  background: #ffffff;
}

.devai14_feature_label {
  color: #f26825;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 8px;
  text-transform: uppercase;
}

/* Galéria - Tailwind szerű mozaikos elrendezés */

.devai14_gallery {
  background: #fafafa;
}

.devai14_gallery_grid {
  margin-top: 24px;
  display: grid;
  gap: 10px;
}

/* Kisebb kijelzőn 2 oszlopos rács */
@media (max-width: 899px) {
  .devai14_gallery_grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 160px;
  }
}

/* Nagyobb kijelzőn 4 oszlop, első kép nagy, a többi kisebb */
@media (min-width: 900px) {
  .devai14_gallery_grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: 180px;
  }

  .devai14_gallery_item--big {
    grid-column: span 2;
    grid-row: span 2;
  }
}

.devai14_gallery_item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


/* Hasznosítás */
.devai14_usage_grid {
  display: grid;
  gap: 30px;
  align-items: center;
}

@media (min-width: 900px) {
  .devai14_usage_grid {
    grid-template-columns: 1.2fr 1fr;
  }
}

.devai14_usage_text h2 {
  text-align: left;
}

.devai14_usage_text .devai14_underline {
  margin-left: 0;
}

.devai14_usage_image img {
  width: 100%;
  border: 1px solid #e3e3e3;
}

.devai14_usage_caption {
  margin-top: 6px;
  font-size: 12px;
  color: #777777;
}

/* Táblázat */
.devai14_table_wrapper {
  margin-top: 24px;
  overflow-x: auto;
}

.devai14_table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.devai14_table thead {
  background: #f5f5f5;
}

.devai14_table th,
.devai14_table td {
  padding: 10px 12px;
  text-align: left;
  border-bottom: 1px solid #e3e3e3;
}

.devai14_table th {
  font-weight: 600;
  color: #555555;
}
/* Szintrajz / alaprajz blokk */

.devai14_floorplan {
  margin-top: 36px;
  text-align: center;
}

.devai14_floorplan h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
}

.devai14_floorplan_lead {
  font-size: 14px;
  color: #777777;
  margin-bottom: 16px;
}

.devai14_floorplan_image {
  max-width: 900px;
  margin: 0 auto;
  border: 1px solid #e3e3e3;
  background: #ffffff;
  padding: 8px;
}

.devai14_floorplan_image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Kapcsolat szekció – mindig egymás alatt, Viktor a szöveg alatt */

.devai14_contact_grid {
  display: flex;
  flex-direction: column;   /* minden egymás alatt */
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

/* NINCS több 2 oszlopos layout nagy kijelzőn, ezért töröljük / nem használjuk a régi media queryt */
/* @media (min-width: 900px) { ... } RÉSZT NE HASZNÁLD EHHEZ A SZEKCIÓHOZ */
/* Kapcsolat – szöveg középre igazítva */

.devai14_contact_text {
  text-align: center;
}

.devai14_contact_text h2 {
  text-align: center;
}

.devai14_contact_text .devai14_underline {
  margin: 0 auto;
}

.devai14_contact_note {
  text-align: center;
}

/* CTA gombok középre */
.devai14_contact_cta {
  justify-content: center;
}


/* Viktor kártyája – a szöveg alatt, középen */

.devai14_contact_person {
  text-align: center;
  align-self: center;   /* középre húzzuk a teljes sorban */
}

.devai14_contact_photo {
  width: 150px;
  height: 150px;
  margin: 0 auto 12px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #f26825;
}

.devai14_contact_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.devai14_contact_phone {
  font-size: 14px;
  margin-top: 4px;
}

.devai14_contact_email {
  display: inline-block;
  margin-top: 4px;
  font-size: 13px;
  color: #f26825;
  text-decoration: none;
}

.devai14_contact_email:hover {
  text-decoration: underline;
}
