/* ============================================================
   pages.css — EUB belső oldalak közös stíluslapja
   Verzió: 1.0 | 2026-04-05
   ============================================================ */

/* --- Breadcrumb navigáció --- */
.breadcrumb-nav {
  background: #f5f7fa;
  padding: 12px 0;
  border-bottom: 1px solid #e0e4e8;
  font-size: 14px;
}
.breadcrumb-nav .breadcrumb-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.breadcrumb-nav .breadcrumb-list li {
  display: inline-flex;
  align-items: center;
}
.breadcrumb-nav .breadcrumb-list li + li::before {
  content: "\f105";
  font-family: FontAwesome;
  margin: 0 8px;
  color: #999;
  font-size: 12px;
}
.breadcrumb-nav .breadcrumb-list li a {
  color: #00538b;
  text-decoration: none;
}
.breadcrumb-nav .breadcrumb-list li a:hover {
  text-decoration: underline;
}
.breadcrumb-nav .breadcrumb-list li.active {
  color: #555;
}

/* --- Page hero szekció --- */
.page-hero {
  background: linear-gradient(135deg, #00538b 0%, #003e6b 100%);
  color: #fff;
  padding: 48px 0 40px;
  text-align: center;
}
.page-hero h1 {
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 700;
  font-size: 32px;
  margin: 0 0 12px;
}
.page-hero .page-hero__lead {
  font-size: 18px;
  font-weight: 300;
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* --- Fő tartalom --- */
.page-content {
  padding: 40px 0 60px;
  font-family: 'Open Sans', Arial, sans-serif;
  color: #333;
  line-height: 1.7;
  font-size: 15px;
}
.page-content h2 {
  color: #00538b;
  font-size: 24px;
  font-weight: 600;
  margin: 32px 0 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid #e0e4e8;
}
.page-content h3 {
  color: #003e6b;
  font-size: 20px;
  font-weight: 600;
  margin: 24px 0 12px;
}
.page-content p {
  margin: 0 0 16px;
}
.page-content ul, .page-content ol {
  margin: 0 0 16px;
  padding-left: 24px;
}
.page-content ul li, .page-content ol li {
  margin-bottom: 6px;
}

/* --- Szekciók --- */
.page-section {
  margin-bottom: 40px;
}
.page-section:last-child {
  margin-bottom: 0;
}

/* --- Kártya elrendezés (termékeink) --- */
.product-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 24px 0;
}
.product-card {
  background: #fff;
  border: 1px solid #e0e4e8;
  border-radius: 8px;
  padding: 24px;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 260px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.product-card:hover {
  box-shadow: 0 4px 16px rgba(0, 83, 139, 0.15);
  transform: translateY(-2px);
}
.product-card h3 {
  margin-top: 0;
  font-size: 18px;
  border-bottom: none;
}
.product-card h3 a {
  color: #00538b;
  text-decoration: none;
}
.product-card h3 a:hover {
  text-decoration: underline;
}
.product-card p {
  font-size: 14px;
  color: #555;
  margin-bottom: 12px;
}
.product-card .product-card__icon {
  font-size: 36px;
  color: #00538b;
  margin-bottom: 12px;
}
.product-card .btn-product {
  display: inline-block;
  background: #00538b;
  color: #fff;
  padding: 8px 20px;
  border-radius: 4px;
  font-size: 14px;
  text-decoration: none;
  transition: background 0.2s;
}
.product-card .btn-product:hover {
  background: #003e6b;
  color: #fff;
  text-decoration: none;
}

/* --- Info box --- */
.info-box {
  background: #eaf3fa;
  border-left: 4px solid #00538b;
  padding: 20px 24px;
  border-radius: 0 6px 6px 0;
  margin: 24px 0;
}
.info-box h4 {
  color: #00538b;
  margin: 0 0 8px;
  font-weight: 600;
}

/* --- CTA gomb --- */
.btn-cta {
  display: inline-block;
  background: #00538b;
  color: #fff;
  padding: 12px 32px;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
}
.btn-cta:hover {
  background: #003e6b;
  color: #fff;
  text-decoration: none;
}

/* --- Táblázat --- */
.page-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0 24px;
}
.page-content table th,
.page-content table td {
  padding: 10px 14px;
  border: 1px solid #ddd;
  text-align: left;
  font-size: 14px;
}
.page-content table th {
  background: #00538b;
  color: #fff;
  font-weight: 600;
}
.page-content table tr:nth-child(even) {
  background: #f9fafb;
}

/* --- Kapcsolat oldal --- */
.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 24px 0;
}
.contact-card {
  background: #fff;
  border: 1px solid #e0e4e8;
  border-radius: 8px;
  padding: 24px;
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
}
.contact-card h3 {
  margin-top: 0;
  border-bottom: none;
}
.contact-card .fa {
  color: #00538b;
  margin-right: 8px;
}

/* --- Vezetőség kártyák --- */
.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 24px 0;
}
.team-card {
  background: #fff;
  border: 1px solid #e0e4e8;
  border-radius: 8px;
  padding: 24px;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 240px;
  text-align: center;
}
.team-card .team-card__avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #e0e4e8;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: #00538b;
}
.team-card h4 {
  margin: 0 0 4px;
  color: #003e6b;
}
.team-card .team-card__role {
  font-size: 14px;
  color: #777;
}

/* --- FAQ --- */
.faq-item {
  border-bottom: 1px solid #e0e4e8;
  padding: 16px 0;
}
.faq-item h3 {
  font-size: 16px;
  margin: 0 0 8px;
  cursor: pointer;
  border-bottom: none;
}
.faq-item h3::before {
  content: "\f059";
  font-family: FontAwesome;
  margin-right: 8px;
  color: #00538b;
}
.faq-item p {
  margin: 0;
  color: #555;
}

/* --- Responsive --- */
@media (max-width: 991px) {
  .product-card,
  .contact-card {
    flex: 1 1 calc(50% - 24px);
  }
  .team-card {
    flex: 1 1 calc(50% - 24px);
  }
}
@media (max-width: 767px) {
  .page-hero {
    padding: 32px 0 28px;
  }
  .page-hero h1 {
    font-size: 24px;
  }
  .page-hero .page-hero__lead {
    font-size: 15px;
  }
  .page-content {
    padding: 24px 0 40px;
  }
  .product-card,
  .contact-card,
  .team-card {
    flex: 1 1 100%;
  }
}
