/* ============================================================
   industrie.css — Site-spezifische Styles für TMH Industrie-Service
   Ergänzt tmh-base.css + tmh-components.css (nie entfernen)
   ============================================================ */

/* ---------- Hero ---------- */
.industrie-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--c-navy);
}
.industrie-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.industrie-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  opacity: 0.35;
}
.industrie-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(7,19,35,0.85) 0%, rgba(7,19,35,0.55) 100%);
}
.industrie-hero-inner {
  position: relative;
  z-index: 1;
  padding: 5rem 0 4rem;
  max-width: 760px;
}
.industrie-hero-inner .eyebrow {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-primary);
  margin-bottom: 1rem;
}
.industrie-hero-inner h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.08;
  color: #fff;
  margin-bottom: 1.2rem;
}
.industrie-hero-inner h1 em {
  color: var(--c-primary);
  font-style: normal;
}
.industrie-hero-sub {
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.82);
  margin-bottom: 2rem;
  max-width: 580px;
}
.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ---------- Stats Strip ---------- */
.industrie-stats {
  background: var(--c-primary);
  padding: 1.2rem 0;
}
.industrie-stats-inner {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.ind-stat {
  text-align: center;
  color: #fff;
}
.ind-stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}
.ind-stat-label {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.88;
}

/* ---------- Service Grid ---------- */
.leistungs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.leistungs-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 1.8rem;
  box-shadow: 0 2px 8px rgba(7,19,35,0.06);
  transition: box-shadow 0.2s, transform 0.2s;
}
.leistungs-card:hover {
  box-shadow: 0 6px 24px rgba(7,19,35,0.12);
  transform: translateY(-2px);
}
.leistungs-card-icon {
  width: 48px;
  height: 48px;
  background: var(--c-primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  font-family: 'Barlow Condensed', sans-serif;
}
.leistungs-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--c-navy);
  margin-bottom: 0.6rem;
}
.leistungs-card p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #4b5563;
  margin: 0;
}

/* ---------- Accordion / Leistungsdetail ---------- */
.accordion-item {
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  margin-bottom: 0.75rem;
  overflow: hidden;
}
.accordion-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.2rem;
  background: #f9fafb;
  border: none;
  cursor: pointer;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--c-navy);
  text-align: left;
  transition: background 0.15s;
}
.accordion-header:hover { background: #f0f2f5; }
.accordion-header .acc-arrow {
  width: 20px;
  height: 20px;
  color: var(--c-primary);
  flex-shrink: 0;
  transition: transform 0.25s;
}
.accordion-item.open .acc-arrow { transform: rotate(180deg); }
.accordion-body {
  display: none;
  padding: 1rem 1.2rem 1.4rem;
  font-size: 0.92rem;
  line-height: 1.7;
  color: #374151;
}
.accordion-body ul { padding-left: 1.2rem; margin: 0.5rem 0 0; }
.accordion-body li { margin-bottom: 0.35rem; }
.accordion-item.open .accordion-body { display: block; }

/* ---------- Reference Gallery ---------- */
.ref-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.2rem;
  margin-top: 2rem;
}
.ref-item {
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  background: #e5e7eb;
  aspect-ratio: 4/3;
}
.ref-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
  display: block;
}
.ref-item:hover img { transform: scale(1.04); }

/* ---------- Instandsetzung Highlight ---------- */
.instand-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  margin-top: 2rem;
}
@media (max-width: 720px) {
  .instand-split { grid-template-columns: 1fr; gap: 1.5rem; }
}
.instand-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #f3f4f6;
  font-size: 0.94rem;
  line-height: 1.55;
  color: #374151;
}
.instand-list li:last-child { border-bottom: none; }
.instand-list li::before {
  content: '\2713\00a0';
  color: var(--c-primary);
  font-weight: 700;
}

/* ---------- CTA Band ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--c-navy) 0%, #0f2843 100%);
  padding: 4rem 0;
  text-align: center;
}
.cta-band h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
}
.cta-band p {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 2rem;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}
.cta-band-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- Kontakt Page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
  margin-top: 2rem;
}
@media (max-width: 760px) {
  .contact-grid { grid-template-columns: 1fr; }
}
.contact-info-box {
  background: #f9fafb;
  border-radius: 10px;
  padding: 2rem;
}
.contact-info-box h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--c-navy);
  margin-bottom: 1rem;
}
.contact-info-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  line-height: 1.6;
  color: #374151;
}
.contact-info-row a { color: var(--c-primary); }

/* i18n HOTFIX — NIEMALS entfernen */
[data-lang-de],[data-lang-en],[data-lang-pl] { display:none; }
[data-lang-de] { display:inline; }
