/* ==========================================================================
   Design & Stylesheet: Zimmerer-Meister-Kollektiv GmbH
   Exakte Umsetzung des Mockup-Designs
   - Hintergrund: uKOTEST-L-lbNEBURG-102.jpg
   - Kompakte Karte mit dunklem Header, weißem Body und Holzbalken-Fußzeile
   - Streng KEINE Mouseover-Effekte
   ========================================================================== */

:root {
  --color-accent-red: #b92932;
  --color-accent-red-dark: #961e25;
  --color-dark-header: #282828;
  --color-dark-text: #1a1a1a;
  --color-body-text: #424242;
  --color-subtle-text: #666666;
  --color-wood-text: #2c2016;

  --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;

  --radius-card: 20px;
  --radius-pill: 50px;
  --radius-btn: 10px;
}

/* Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-main);
  background-color: #1f1f1f;
  color: var(--color-dark-text);
  line-height: 1.5;
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
}

/* Top Announcement Bar */
.top-bar {
  background: linear-gradient(90deg, #9b2128 0%, #b92932 50%, #9b2128 100%);
  color: #ffffff;
  padding: 7px 16px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
  position: relative;
  z-index: 100;
}

.top-bar-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.badge-hinweis {
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  padding: 2px 8px;
  border-radius: 4px;
}

.top-bar-text {
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.2px;
}

/* Page Layout mit Vollbild-Hintergrund */
.page-layout {
  flex: 1;
  width: 100%;
  background-image: url('uKOTEST-L-lbNEBURG-102.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 55px 16px 35px 16px;
}

.card-container {
  width: 100%;
  max-width: 730px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Main Brand Card */
.brand-card {
  width: 100%;
  background: #ffffff;
  border-radius: var(--radius-card);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.38),
              0 0 0 1px rgba(0, 0, 0, 0.06);
  position: relative;
  margin-top: 45px; /* Platzhalter für überlappendes Logo */
}

/* Logo Badge */
.logo-anchor {
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
}

.logo-disc {
  width: 105px;
  height: 105px;
  border-radius: 50%;
  background: #ffffff;
  border: 4px solid #ffffff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  overflow: hidden;
}

.logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
  display: block;
}

/* Dark Card Header */
.card-header-dark {
  background-color: var(--color-dark-header);
  border-radius: var(--radius-card) var(--radius-card) 0 0;
  padding: 58px 24px 20px 24px;
  text-align: center;
  color: #ffffff;
}

.header-brand-title {
  font-family: var(--font-main);
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 4px;
  color: #ffffff;
}

.header-brand-slogan {
  font-size: 0.85rem;
  font-weight: 400;
  color: #cccccc;
  letter-spacing: 0.3px;
}

/* White Card Body */
.card-body-white {
  background-color: #ffffff;
  padding: 34px 34px 26px 34px;
  text-align: center;
}

.main-heading {
  font-family: var(--font-main);
  font-size: 1.75rem;
  font-weight: 800;
  color: #1a1a1a;
  letter-spacing: -0.4px;
  margin-bottom: 14px;
}

.paragraph-lead {
  font-size: 0.94rem;
  color: var(--color-body-text);
  line-height: 1.55;
  margin-bottom: 12px;
}

.paragraph-services {
  font-size: 0.88rem;
  color: var(--color-body-text);
  line-height: 1.55;
  margin-bottom: 24px;
}

.paragraph-services strong {
  color: #1a1a1a;
}

/* Categories Row (Pills) */
.categories-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}

.category-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #dcdad4;
  background-color: #ffffff;
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--color-dark-text);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.category-pill svg {
  color: var(--color-accent-red);
}

/* Section Beratung */
.consultation-section {
  padding-top: 4px;
}

.kicker-red {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-accent-red);
  margin-bottom: 4px;
}

.consultation-heading {
  font-size: 1.15rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 4px;
}

.consultation-sub {
  font-size: 0.84rem;
  color: var(--color-subtle-text);
}

/* Bottom Wooden Beam (Holzbalken) mit dunklem, halb-transparentem Overlay */
.card-wood-beam {
  background: 
    linear-gradient(rgba(18, 18, 18, 0.62), rgba(18, 18, 18, 0.68)),
    url('wood_beam.jpg') center center / cover no-repeat;
  border-radius: 0 0 var(--radius-card) var(--radius-card);
  border-top: 2px solid rgba(255, 255, 255, 0.35);
  border-bottom: 2px solid rgba(0, 0, 0, 0.6);
  box-shadow: inset 0 2px 5px rgba(255, 255, 255, 0.15),
              inset 0 -2px 6px rgba(0, 0, 0, 0.4);
  padding: 24px 26px 22px 26px;
  position: relative;
  color: #ffffff;
}

.beam-contacts-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.95fr 1.15fr;
  gap: 14px;
  margin-bottom: 20px;
  align-items: flex-start;
}

.beam-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  text-align: left;
}

.beam-icon {
  flex-shrink: 0;
  color: #ffffff;
  margin-top: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.beam-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.beam-label {
  font-size: 0.70rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.2;
  margin-bottom: 2px;
}

.beam-val-title {
  font-size: 0.84rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.25;
}

.beam-val-sub {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.3;
}

.beam-link {
  font-size: 0.84rem;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1.25;
}

/* Buttons auf dem Holzbalken - KEINE MOUSEOVER EFFEKTE */
.beam-buttons-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-beam {
  font-family: var(--font-main);
  font-size: 0.86rem;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: var(--radius-btn);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: none; /* Keine Hover-Effekte */
}

.btn-beam-red {
  background-color: var(--color-accent-red);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.btn-beam-dark {
  background-color: var(--color-dark-header);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

/* Footer Copyright */
.site-copyright {
  margin-top: 14px;
  text-align: center;
}

.site-copyright p {
  font-size: 0.82rem;
  font-weight: 600;
  color: #1a1a1a;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.9),
               0 0 5px #ffffff;
}

/* Responsive Anpassungen */
@media (max-width: 680px) {
  .page-layout {
    padding: 45px 12px 25px 12px;
  }

  .card-body-white {
    padding: 26px 20px 20px 20px;
  }

  .main-heading {
    font-size: 1.45rem;
  }

  .beam-contacts-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .beam-link {
    white-space: normal;
    word-break: break-word;
  }

  .beam-buttons-row {
    flex-direction: column;
    width: 100%;
  }

  .btn-beam {
    width: 100%;
  }
}
