@font-face {
  font-family: "Futurism";
  src: url("../fonts/FUTURISM.OTF") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background: #000000;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
}

.subhero {
  position: relative;
  min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: url("../images/hero.webp") center / cover no-repeat;
  padding: 60px 20px;
}

.subhero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(31, 41, 55, 0.7) 0%,
    rgba(0, 0, 0, 0.7) 100%
  );
  z-index: 1;
}

.subhero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.subhero-content h1 {
  font-family: "Futurism", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: clamp(24px, 3.4vw, 46px);
  text-shadow: 0 6px 16px rgba(0, 0, 0, 0.55);
  margin-bottom: 16px;
}

.subhero-content p {
  font-size: 18px;
  line-height: 1.6;
  opacity: 0.95;
  margin-bottom: 28px;
}

.subhero-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 36px;
  border: 2px solid #ffffff;
  color: #ffffff;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 14px;
  transition:
    background-color 0.2s ease,
    color 0.2s ease;
}

.subhero-button:hover {
  background-color: #ffffff;
  color: #000000;
}

.news-section {
  padding: 90px 0 120px;
  background: #000000;
}

.news-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.news-container h2 {
  font-family: "Futurism", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: clamp(24px, 3vw, 40px);
  margin-bottom: 20px;
}

.news-container p {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.news-embed {
  margin-top: 32px;
  display: flex;
  justify-content: center;
}

.news-embed iframe {
  width: min(100%, 720px);
  height: 720px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: #0b0c0f;
}

.news-note {
  margin-top: 14px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

.news-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  text-align: left;
}

.news-card {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.news-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.4);
}

.news-image {
  position: relative;
  width: 100%;
  padding-top: 100%;
  background: #111;
}

.news-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-body {
  padding: 18px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.news-caption {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

.news-date {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.site-footer {
  background: #000000;
  color: #ffffff;
  padding: 80px 0 50px;
}

.footer-desktop {
  display: block;
}

.footer-mobile {
  display: none;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.9fr 0.8fr;
  gap: 40px;
  align-items: start;
}

.footer-logo {
  width: 160px;
  height: auto;
  margin-bottom: 20px;
}

.footer-col h3 {
  font-family: "Futurism", sans-serif;
  font-size: 20px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-block {
  margin-bottom: 18px;
}

.footer-block p,
.footer-block a {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

.footer-block a:hover {
  color: #fdf0d5;
}

.footer-nav-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav-links a {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

.footer-nav-links a:hover {
  color: #fdf0d5;
}

.footer-realizacja {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}

.footer-realizacja-row {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.footer-realizacja-text {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
}

.footer-realizacja-label {
  font-family: "Futurism", sans-serif;
  font-size: 20px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #ffffff;
}

.footer-realizacja img {
  width: 28px;
  height: auto;
}

.footer-bottom {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
}

.footer-socials {
  display: flex;
  gap: 22px;
  font-size: 18px;
}

.footer-socials a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-socials a:hover {
  color: #ffffff;
}

.footer-copy {
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 900px) {
  .site-footer {
    padding: 60px 0 40px;
  }

  .footer-desktop {
    display: none;
  }

  .footer-mobile {
    display: block;
  }

  .footer-mobile .footer-container {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  .footer-mobile-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 16px;
  }

  .footer-mobile-links a {
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
  }

  .footer-mobile-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
  }

  .footer-mobile-contact a {
    color: inherit;
    text-decoration: none;
  }

  .footer-mobile .footer-bottom {
    align-items: center;
    text-align: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-realizacja {
    align-items: center;
    text-align: center;
  }

  .footer-realizacja-row {
    justify-content: center;
  }

  .footer-realizacja-label {
    margin-top: 20px;
    font-size: 16px;
    letter-spacing: 0.16em;
  }

  .footer-realizacja-text {
    font-size: 12px;
    letter-spacing: 0.06em;
  }

  .footer-realizacja img {
    width: 22px;
  }
}

@media (max-width: 768px) {
  .news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .subhero {
    min-height: 50vh;
    padding: 70px 16px;
  }

  .subhero-content p {
    font-size: 16px;
  }
}

@media (max-width: 560px) {
  .news-grid {
    grid-template-columns: 1fr;
  }
}
