:root {
  --kig-pink: #ff0d8a;
  --kig-dark: #001c29;
  --text-light: #ffffff;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: #000;
  color: var(--text-light);
}


/* Tło z mapą */
.landing-page {
  min-height: 100vh;
  background: #000 url("pcx/backgroung.png") center center / cover no-repeat fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3vh 2vw;
	padding-top: 0px;
	
}

/* Wewnętrzny kontener, żeby trzymać proporcje jak na web.png */
.landing-inner {
  width: 100%;
  max-width: 1365px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Kolumna środkowa (baner z datą) */
.kig-banner {
  max-width: 468px;
  width: 100%;

}

.kig-banner img {
  display: block;
  top: 0;
  height: auto;
	margin: auto;
}

/* Dolne logotypy + napis HACKATHON */
.logos-row {
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  padding-bottom: 2.5rem;
}

.logo-proidea img,
.logo-krakow img {
  width: auto;
  height: 61px;
}

.logo-krakow img {
  height: 61px;
}

.hackathon-logo img {
  display: block;
  margin-inline: auto;
  width: auto;
  max-height: 140px;
}

/* RWD */
@media (max-width: 991.98px) {
  .landing-inner {
    min-height: auto;
    gap: 2rem;
  }

  .logos-row {
    align-items: center;
  }
}

@media (max-width: 767.98px) {
  .landing-page {
    padding: 2rem 1rem;
	  padding-top: 0px;
  }
.kig-banner {
  max-width: 468px;
}
	.kig-banner img {
		position: relative !important;
		width: 100%;
	}
  .logos-row {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 1.25rem;
  }

  .logo-proidea img,
  .logo-krakow img {
    height: 32px;
  }

  .hackathon-logo img {
    max-height: 64px;
  }
}

/* --- Lekkie unoszenie banera --- */
.hackathon-logo {
  animation: kig-floating 6s ease-in-out infinite;
}

@keyframes kig-floating {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
  100% {
    transform: translateY(0);
  }
}
/* --- Delikatny fade-up logotypów przy starcie --- */
.kig-banner {
  opacity: 0;

  animation: kig-baner-in 0.9s ease-out 0.1s forwards;
}

@keyframes kig-baner-in {
  to {
    opacity: 1;
  }
}

.logos-row {
  opacity: 0;
  transform: translateY(12px);
  animation: kig-logos-in 0.9s ease-out 0.3s forwards;
}

@keyframes kig-logos-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* --- Footer --- */
.kig-footer {
    background: #012730;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 14px;
}

.kig-footer .privacy-link {
    color: #ffffff;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.kig-footer .privacy-link:hover {
    opacity: 1;
    text-decoration: underline;
}
