/* ===== DEFINICJE FONTÓW ===== */
@font-face {
  font-family: "Mont";
  src: url("../font/Mont-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Mont";
  src: url("../font/Mont-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ===== ZMIENNE KOLORÓW ===== */
:root {
  /* Tło */
  --gradient-color-1: #050505; /* góra/dół – prawie czarny */
  --gradient-color-2: #004225; /* British Racing Green */
  --brand-gold: #d4af37; /* kolor CI */
  --brand-gold-soft: rgba(
    212,
    175,
    55,
    0.28
  ); /* złoto jako delikatna poświata */

  /* Tekst */
  --text-primary: #ffffff;
  --text-secondary: #cccccc;

  /* Przyciski */
  --button-border: #ffffff;
}

/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ===== TŁO STRONY ===== */
body {
  font-family: "Mont", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, sans-serif;
  min-height: 100vh;
  background: radial-gradient(
      ellipse at 20% 55%,
      var(--gradient-color-2),
      transparent 55%
    ),
    radial-gradient(ellipse at 80% 55%, var(--brand-gold-soft), transparent 55%),
    linear-gradient(to bottom, var(--gradient-color-1), var(--gradient-color-1));
  background-attachment: fixed;
  color: var(--text-primary);
  overflow-x: hidden;
}

/* ===== KONTENER GŁÓWNY ===== */
.container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.content {
  text-align: center;
  max-width: 720px;
  width: 100%;
  animation: fadeIn 1s ease-in;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ===== LOGO ===== */
.logo {
  margin-bottom: 48px;
  animation: slideDown 0.8s ease-out 0.2s both;
}

.logo img {
  max-width: 260px;
  width: 100%;
  height: auto;
}

/* ===== NAGŁÓWEK "COMING SOON" ===== */
.coming-soon {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: -1.5px;
  animation: slideUp 0.8s ease-out 0.4s both;
}

/* ===== OPIS ===== */
.description {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 44px;
  line-height: 1.6;
  max-width: 520px;
  animation: slideUp 0.8s ease-out 0.6s both;
}

/* ===== PRZYCISK KONTAKTOWY ===== */
.contact-button {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 14px 36px;
  background-color: #d4af37;
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  animation: slideUp 0.8s ease-out 0.8s both;
  margin-bottom: 16px;
  gap: 4px;
  width: 320px;
  max-width: 100%;
}

.contact-button-title {
  font-size: 13px;
  font-weight: 400;
  opacity: 0.8;
}

.contact-button-email {
  font-size: 15px;
  font-weight: 600;
}

.contact-button:hover {
  background-color: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.45);
}

.contact-button:active {
  transform: translateY(0);
}

/* ===== PRZYCISK CTA ===== */
.cta-button {
  display: inline-block;
  padding: 14px 36px;
  background-color: transparent;
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  border: 1px solid var(--button-border);
  transition: all 0.3s ease;
  animation: slideUp 0.8s ease-out 1s both;
  width: 320px;
  max-width: 100%;
  box-sizing: border-box;
}

.cta-button:hover {
  background-color: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.45);
}

.cta-button:active {
  transform: translateY(0);
}

/* ===== ANIMACJE ===== */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== RESPONSYWNOŚĆ ===== */

/* Tablety */
@media (max-width: 768px) {
  .logo {
    margin-bottom: 36px;
  }

  .logo img {
    max-width: 220px;
  }

  .coming-soon {
    font-size: 34px;
    margin-bottom: 18px;
  }

  .description {
    font-size: 16px;
    margin-bottom: 28px;
    padding: 0 16px;
  }

  .contact-button {
    padding: 12px 30px;
    margin-bottom: 14px;
  }

  .contact-button-title {
    font-size: 12px;
  }

  .contact-button-email {
    font-size: 14px;
  }

  .cta-button {
    padding: 12px 30px;
    font-size: 14px;
  }
}

/* Telefony */
@media (max-width: 480px) {
  .logo {
    margin-bottom: 28px;
  }

  .logo img {
    max-width: 220px;
  }

  .coming-soon {
    font-size: 24px;
    margin-bottom: 16px;
    letter-spacing: -1px;
  }

  .description {
    font-size: 15px;
    margin-bottom: 24px;
    padding: 0 12px;
  }

  .contact-button {
    padding: 11px 24px;
    margin-bottom: 12px;
  }

  .contact-button-title {
    font-size: 11px;
  }

  .contact-button-email {
    font-size: 13px;
  }

  .cta-button {
    padding: 11px 24px;
    font-size: 13px;
  }
}

/* ===== STOPKA ===== */
.footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 18px;
  text-align: center;
  background: transparent;
  z-index: 10;
}

.footer p {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-secondary);
  opacity: 0.6;
  margin: 0;
  letter-spacing: 0.4px;
}

/* Responsywność stopki */
@media (max-width: 480px) {
  .footer {
    padding: 14px;
  }

  .footer p {
    font-size: 12px;
  }
}
