@font-face {
  font-family: 'DINPro';
  src: url('fonts/DINPro.woff2') format('woff2'),
       url('fonts/DINPro.woff') format('woff');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'DINPro';
  src: url('fonts/DINPro-Bold.woff2') format('woff2'),
       url('fonts/DINPro-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'DINPro', Arial, sans-serif;
  color: var(--black, #000);
  background: #fff;
}

.container {
    width: 100%;
    max-width: 1440px;
    min-width: 400px;
    margin: 200px auto 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 180px;
    padding: 0 20px;
    box-sizing: border-box;
}

.nowrap {
  white-space: nowrap;
}

.title {
  font-size: 64px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.1;
  min-width: 320px;       /* minimalna szerokość */
  word-break: keep-all;   /* nie rozbija słów */
}

.kickoff {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 24px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.2;
}

.highlight {
  background: var(--hero, #00ECE4);
  padding: 4px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.inquiries {
  max-width: 82%;
  font-size: 24px;
  line-height: 32px;
}

.inquiries span {
  font-weight: 700;
  white-space: nowrap;
}

.inquiries a {
  color: inherit;
  text-decoration: none;
}

.inquiries a:hover {
  text-decoration: underline;
}

/* --- Skalowanie mobilne x200% + odsunięcie w lewo + mniejszy gap --- */
@media (max-width: 768px) {
  .container {
    padding-left: 20%; /* tylko lewy padding */
    gap: 80px;         /* zmniejszony odstęp */
    margin: 100px auto 0;
  }

  .title {
    font-size: 128px;
  }

  .kickoff {
    font-size: 48px;
    gap: 24px;
  }

  .highlight {
    font-size: 48px;
    padding: 8px 24px;
  }

  .inquiries {
    font-size: 48px;
    line-height: 64px;
    max-width: 100%;
  }

  .container img {
    width: 128px;
    height: 128px;
  }
}

@media (max-width: 480px) {
  .container {
    padding-left: 20%; /* tylko lewo */
    gap: 50px;         /* jeszcze ciaśniej */
    margin: 80px auto 0;
  }

  .title {
    font-size: 36px;   /* zmniejszone na małych ekranach */
    min-width: 280px;  /* minimalna szerokość */
  }

  .kickoff {
    font-size: 40px;
    gap: 16px;
  }

  .highlight {
    font-size: 40px;
    padding: 6px 18px;
  }

  .inquiries {
    font-size: 40px;
    line-height: 54px;
  }

  .container img {
    width: 100px;
    height: 100px;
  }
}
