/* ===================================================
   Landing Page – VDO auf der Automechanika 2026
   Extends: https://www.aumovio-aftermarket.com/css/styles.css
   =================================================== */

/* Reset override – the base stylesheet already provides full reset */
html {
  scroll-behavior: smooth;
}

/*
Unset font-family for all overrides from fonts.css.
*/
div {
    font-family: 'Noto Sans Display';
}

.nav-dropdown {
	font-family: 'Noto Sans Display';
}

h1, h2, h3, h4 {
    font-family: 'Noto Sans Display';
}

body {
  /* Override the spinner-page centering from the template */
  display: block;
  place-items: unset;
  margin: 0;
  font-family: 'Noto Sans Display';

  line-height: 1.6;
  color: #003c6b;
  overflow-x: hidden;
}

/* ---------- Hero image override ---------- */
/*
This section could be removed, but instead of removing it, we override the hero
image to use the online image. This allows the page to be viewed offline.
*/
.hero-image {
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url('https://www.aumovio-aftermarket.com/images/ATE_VDO_Keyvisual_Banner.jpg')
    center center / cover no-repeat;
}


/* ---------- Hero label (eyebrow text) ---------- */
.hero-label {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #00b0eb;
  margin-bottom: 0.75rem;
}

/* ---------- Content Section (white bg + generous padding) ---------- */
.content-section {
  padding: 6rem 0;
  background: #ffffff;
}

.content-text-block {
  max-width: 820px;
  margin: 0 auto 4rem;
  color: #003c6b;
  font-size: 1.05rem;
  line-height: 1.8;
  text-align: center;
}

.content-text-block p + p {
  margin-top: 1.5rem;
}

/* ---------- Stand / CTA Section ---------- */
.stand-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #003c6b 0%, #005a9e 100%);
}

.stand-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 4rem 3rem;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  backdrop-filter: blur(8px);
}

.stand-icon {
  margin-bottom: 1.5rem;
}

.stand-card h2 {
  font-size: 2rem;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.stand-location {
  font-size: 1.5rem;
  font-weight: 700;
  color: #00b0eb;
  margin-bottom: 0.5rem;
}

@media (min-width: 769px) {
  .hero-content {
    padding-right: 0;
  }

  .hero-content h1 {
    width: 452px;
  }
}

.stand-tagline {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2.5rem;
}

/* White variant of CTA for dark background */
.stand-card .cta-button {
  background: #00b0eb;
  color: #ffffff;
  border-color: #00b0eb;
  font-size: 1rem;
}

.stand-card .cta-button:hover {
  background: transparent;
  color: #00b0eb;
  border-color: #00b0eb;
}

/* ---------- Arrow button white (inside dark sections) ---------- */
.stand-card .arrow-button {
  filter: invert(1);
}

/* ---------- Breadcrumb (hidden – this is a standalone page) ---------- */
.breadcrumb {
  display: none;
}

/* ---------- Responsive tweaks ---------- */
@media (max-width: 768px) {
  .content-text-block {
    text-align: left;
  }

  .stand-card {
    padding: 2.5rem 1.5rem;
  }

  .stand-card h2 {
    font-size: 1.5rem;
  }

  .stand-location {
    font-size: 1.2rem;
  }
}

/* ---------- Hamburger active state ---------- */
.hamburger.active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* keep "AUMOVIO Aftermarket" text from wrapping on mobile */
@media (max-width: 768px) {
  .hero-content h1 {
    white-space: nowrap;
    font-size: clamp(1.1rem, calc((100vw - 104px) / 11.4), 2rem);
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: clamp(1.1rem, calc((100vw - 88px) / 11.4), 1.8rem);
  }
}
