/* --- 1. HERO & TITEL LAYOUT --- */
.hero-title {
  background-color: rgba(0, 0, 0, 0.6); /* dunkler halbtransparenter Hintergrund */
  color: #fff; /* weiße Schrift bleibt lesbar */
  padding: 0.5em 1em;
  border-radius: 6px;
  display: inline-block; /* passt sich nur dem Text an */
}

@media (min-width: 1400px) {
  .acm-hero .col-xxl-5 {
    flex: 0 0 75%; /* etwa 9 von 12 Spalten */
    max-width: 75%;
  }
}

/* --- 2. LOGO ANPASSUNGEN --- */
.logo-img {
  max-height: 80px;
  height: auto;
  width: auto;
}

/* --- 3. SCHRIFTARTEN (KARLA) --- */
@font-face {
  font-family: 'Karla-Regular';
  src: url('../fonts/Karla-Regular.woff2') format('woff2'),
       url('../fonts/Karla-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Karla';
  src: url('/PCLweb/templates/ja_purity_iv/fonts/Karla-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

body {
  font-family: 'Karla', 'Karla-Regular', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #111;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Karla', sans-serif;
  font-weight: 400;
}

/* --- 4. ACM FEATURES ANPASSUNGEN --- */
.ja-acm.acm-features {
    font-family: 'Public Sans', 'Karla', sans-serif !important;
    font-size: 16px !important;
    line-height: 1.6;
    color: #111;
}

.ja-acm.acm-features h2,
.ja-acm.acm-features h3,
.ja-acm.acm-features h5 {
    font-family: 'Public Sans', 'Karla', sans-serif !important;
    font-weight: 600;
    font-size: 20px;
}

body div#eprivacy-banner.alert {
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 10000 !important; /* Überlagert alles */
    margin: 0 !important;
    padding: 10px 5% !important;
    background-color: #1a1a1a !important; /* Dunkler Balken */
    color: #ffffff !important;
    border: none !important;
    border-radius: 0 !important;
    display: flex !important;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

/* Button-Styling (Blau wie etp-logistics) */
#eprivacy-banner .btn-primary, 
#eprivacy-banner button[type="submit"] {
    background-color: #005bb7 !important;
    border-color: #005bb7 !important;
    color: #fff !important;
    padding: 5px 15px !important;
    font-size: 13px !important;
    text-transform: uppercase !important;
    font-weight: bold !important;
}

/* Textgröße anpassen */
#eprivacy-banner .eprivacy-message {
    font-size: 13px !important;
    margin: 0 !important;
}