/* Marketing-site UI kit — local glue layered on top of colors_and_type.css */

body {
  background: #fff;
  color: var(--fg);
  font-family: var(--font-body);
}

/* ===================== Navigation ===================== */
.axj-nav {
  position: sticky; top: 0; z-index: 50;
  background: #eaeaea;
  padding: 14px max(28px, calc((100% - 1280px) / 2));
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.axj-nav__brand img { height: 56px; width: auto; display: block }
.axj-nav__links {
  display: flex; gap: 28px; list-style: none; margin: 0; padding: 0;
  align-items: center;
}
.axj-nav__links a {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--color-info);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.2s ease-in-out;
}
.axj-nav__links a:hover { color: var(--color-info-hover) }
.axj-nav__links a.is-active { color: var(--color-info-hover) }

/* ===================== Hero ===================== */
.axj-hero {
  position: relative;
  min-height: 520px;
  background-size: cover; background-position: center;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}
.axj-hero::before {
  content: ""; position: absolute; inset: 0;
  background: #000; opacity: 0.4;
}
.axj-hero__inner { position: relative; z-index: 1; padding: 80px 24px; max-width: 760px }
.axj-hero h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 4.6rem;
  letter-spacing: 0.01em;
  line-height: 1.1;
  margin: 0 0 56px;
}
.axj-hero p {
  font-family: var(--font-body);
  font-size: 1.2rem;
  line-height: 1.7;
  font-weight: 400;
  margin: 0;
}

/* ===================== Hairline intro ===================== */
.axj-intro {
  background: #fafafa;
  padding: 48px 24px 28px;
  text-align: center;
}
.axj-intro__hl { height: 2px; background: var(--hairline); border: 0; width: min(900px, 92%); margin: 14px auto }
.axj-intro__text {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--fg);
  letter-spacing: 0.01em;
  margin: 0 auto;
}

/* ===================== Product cards (DROHNE/LIVE/VIDEO) ===================== */
.axj-cards {
  background: #fafafa;
  padding: 28px 28px 60px;
}
.axj-cards__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
}
.axj-card {
  position: relative;
  background-color: #1b2f4d;
  background-size: cover; background-position: center;
  color: #fff;
  padding: 0;
  overflow: hidden;
  cursor: pointer;
}
.axj-card__wrap {
  padding: 4rem 2rem;
  height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; gap: 18px;
  transition: transform 1s;
}
.axj-card:hover .axj-card__wrap { transform: rotateY(360deg) }
.axj-card__icon i,
.axj-card__icon svg { width: 3.5rem; height: 3.5rem; color: #fafafa; stroke-width: 1.5; }
.axj-card__title {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 3rem;
  line-height: 1.1;
  color: var(--color-info);
  text-shadow: -1px -1px #000;
  margin: 0;
}
.axj-card__body {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.35;
  color: #fff;
  text-shadow: -1px -1px #000;
  margin: 0;
}
.axj-card__cta {
  margin-top: 8px;
  opacity: 0;
  transition: opacity 1s;
}
.axj-card:hover .axj-card__cta { opacity: 1 }

/* ===================== Buttons ===================== */
.axj-btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  padding: 0.6rem 1.5rem;
  border-radius: 4px;
  border: 2px solid var(--color-info);
  background: var(--color-info);
  color: #fff;
  box-shadow: var(--shadow-btn);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.axj-btn:hover { background: var(--color-info-hover); border-color: var(--color-info-hover); box-shadow: var(--shadow-btn-hover) }
.axj-btn--md { padding: 0.75rem 1.8rem }
.axj-btn--sm { padding: 0.4rem 1rem; font-size: 0.95rem }
.axj-btn--outline { background: transparent; color: var(--color-info) }
.axj-btn--outline:hover { background: transparent; color: var(--color-info-hover); border-color: var(--color-info-hover); box-shadow: none }
.axj-btn--dark { background: #232323; border-color: #232323 }
.axj-btn--dark:hover { background: #000; border-color: #000 }

/* ===================== About strip ===================== */
.axj-about {
  background: #eaeaea;
  padding: 80px 24px 60px;
  text-align: center;
}
.axj-about__inner { max-width: 760px; margin: 0 auto }
.axj-about h2 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 2rem;
  margin: 0 0 16px;
  color: var(--fg);
}
.axj-about p {
  font-family: var(--font-body);
  font-size: 1.2rem;
  line-height: 1.7;
  margin: 0 0 28px;
  color: var(--fg);
}

/* ===================== Client grid ===================== */
.axj-clients {
  background: #fff;
  padding: 80px 24px 60px;
}
.axj-clients__head { text-align: center; margin-bottom: 36px }
.axj-clients__head h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 2rem;
  margin: 0;
}
.axj-clients__head .sub {
  margin-top: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.2rem;
}
.axj-clients__grid {
  max-width: 1100px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.axj-client {
  display: flex; align-items: center; justify-content: center;
  min-height: 110px; padding: 16px;
  background: #fff;
}
.axj-client img {
  max-height: 70px; max-width: 80%; width: auto; height: auto;
  filter: grayscale(0.15);
  transition: filter 0.2s ease-in-out;
}
.axj-client:hover img { filter: grayscale(0) }

/* ===================== Footer ===================== */
.axj-footer {
  background: #232323;
  color: #c8c8c8;
  padding: 60px 28px 28px;
  font-family: var(--font-body);
}
.axj-footer__row {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 2fr 1fr; gap: 24px;
  align-items: center;
}
.axj-footer img { height: 56px; width: auto }
.axj-footer__contact {
  text-align: center;
  font-size: 0.95rem;
  line-height: 1.7;
}
.axj-footer__contact a { color: #fff }
.axj-footer__legal {
  text-align: right;
  font-size: 0.85rem;
}
.axj-footer__legal a { color: #c8c8c8; margin-left: 14px; letter-spacing: 0.04em; text-transform: uppercase }
.axj-footer__legal a:hover { color: #fff }
.axj-footer__social {
  display: flex; justify-content: flex-end; gap: 14px;
  margin-top: 12px;
}
.axj-footer__social a {
  color: #c8c8c8; display: flex; align-items: center;
  transition: color 0.2s;
  margin-left: 0;
  text-transform: none;
  letter-spacing: 0;
}
.axj-footer__social a:hover { color: #fff }
.axj-footer__social svg { width: 18px; height: 18px; stroke-width: 1.5 }
.axj-footer__bottom {
  max-width: 1200px; margin: 24px auto 0; padding-top: 18px;
  border-top: 1px solid #3a3a3a;
  text-align: center;
  font-size: 0.75rem;
  color: #888;
  letter-spacing: 0.04em;
}

/* ===================== Hamburger Toggle ===================== */
.axj-nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  min-width: 44px; min-height: 44px;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
}
.axj-nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--fg);
  border-radius: 1px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.axj-nav[data-open] .axj-nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.axj-nav[data-open] .axj-nav-toggle span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.axj-nav[data-open] .axj-nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===================== Sub-page wrapper ===================== */
.axj-subpage { background:#fafafa; padding: 80px 24px 60px }
.axj-subpage__inner { max-width: 1000px; margin: 0 auto; }
.axj-subpage h2 {
  font-family: var(--font-body); font-weight: 700;
  font-size: 2rem; margin: 0 0 18px; color: var(--fg);
}
.axj-subpage p { font-size: 1.1rem; line-height: 1.7; color: var(--fg); margin: 0 0 18px; max-width: 720px }
.axj-subpage__gallery {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
  margin-top: 28px;
}
.axj-subpage__gallery img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 3/2; display: block }

@media (max-width: 900px) {
  .axj-cards__grid { grid-template-columns: 1fr }
  .axj-clients__grid { grid-template-columns: repeat(2, 1fr) }
  .axj-hero h1 { font-size: 3rem }
  .axj-footer__row { grid-template-columns: 1fr; text-align: center }
  .axj-footer__legal { text-align: center }
  .axj-footer__social { justify-content: center }
}

/* ===================== Mobile Nav (Hamburger) ===================== */
@media (max-width: 768px) {
  /* Hamburger sichtbar */
  .axj-nav-toggle { display: flex; }

  /* Nav-Layout */
  .axj-nav {
    flex-wrap: wrap;
    padding: 10px 16px;
    gap: 0;
    align-items: center;
  }
  .axj-nav__brand { flex: 1; }
  .axj-nav__brand img { height: 44px; }

  /* Links collapsed by default */
  .axj-nav__links {
    flex-direction: column;
    width: 100%;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    margin-top: 0;
  }
  .axj-nav[data-open] .axj-nav__links { max-height: 500px; margin-top: 10px; }
  .axj-nav__links li { border-top: 1px solid #d4d4d4; }
  .axj-nav__links a {
    display: block;
    padding: 14px 4px;
    font-size: 1rem;
  }

  /* KI-Sektion 1-Spaltig */
  .axj-ki__inner { gap: 32px; }

  /* Showreel Footer Stack */
  .axj-showreel__foot { flex-direction: column; align-items: flex-start; gap: 16px; }

  /* Clients */
  .axj-clients__grid { grid-template-columns: repeat(2, 1fr); }

  /* Fachpositionen */
  .axj-weitere__list { grid-template-columns: 1fr; gap: 16px; }

  /* Footer Logo */
  .axj-footer img { height: 44px; max-width: 160px; }
  .axj-footer__social svg { width: 24px; height: 24px; }
  .axj-footer__social a { min-width: 44px; min-height: 44px; justify-content: center; }
}

/* ===================== Small Phones ===================== */
@media (max-width: 480px) {
  /* Hero-Buttons gestapelt */
  .axj-hero__actions { flex-direction: column; align-items: stretch; }
  .axj-hero__actions .axj-btn,
  .axj-hero__actions .axj-btn--ghost { text-align: center; }

  /* Section-Padding */
  .axj-about { padding: 48px 16px 40px; }
  .axj-clients { padding: 48px 16px 40px; }
  .axj-ki { padding: 60px 16px 48px; }
  .axj-weitere { padding: 60px 16px 48px; }

  /* Sub-Cards 2 Spalten auf kleinen Phones */
  .axj-cards--sub .axj-cards__grid { grid-template-columns: repeat(2, 1fr); }

  /* Showreel 1 Spalte auf sehr kleinen Screens */
  .axj-showreel__track { grid-template-columns: 1fr; }
  .axj-showreel { padding: 60px 0 40px; }
  .axj-showreel__head { padding: 0 16px 28px; }
  .axj-showreel__foot { padding: 24px 16px 0; }

  /* Footer */
  .axj-footer { padding: 40px 16px 20px; }
  .axj-footer__contact a { word-break: break-word; }
}
