/* === Orbitron === */
@font-face {
  font-family: 'Orbitron';
  src: url('fonts/Orbitron-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
/* --- RESET --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* --- STRONA --- */
body, html {
  height: 100%;
  color: #e0f7ff;
  overflow-x: hidden;
  scroll-behavior: smooth;
  font-family: 'Orbitron', Arial, sans-serif;
}
/* --- TŁO WIDEO --- */
.video-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -999;
}
.overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: -1;
}

/* --- NAGŁÓWEK --- */
header {
  text-align: center;
  padding-top: 2vh;
  animation: fadeIn 2s ease forwards;
}
header h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: 3rem;
  color: #b3e9ff;
  text-shadow: 0 0 15px #00cfff77, 0 0 25px #00b8ff55, 0 0 40px #00b8ff88;
  letter-spacing: 2px;
}
header h1 span {
  color: #00b8ff;
  animation: blink 1s step-start infinite;
}
header p {
  font-size: 1.2rem;
  color: #8dd8ff;
  margin-top: 0.5em;
}

/* --- PRZYCISK CTA --- */
.cta-btn {
  display: inline-block;
  margin-top: 1.5em;
  padding: 0.9em 2.2em;
  color: #e6faff;
  background: rgba(0, 184, 255, 0.15);
  border: 2px solid rgba(0, 184, 255, 0.5);
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  box-shadow: 0 0 12px #00b8ff55, 0 0 25px #00b8ff33 inset;
}
.cta-btn:hover {
  color: #fff;
  background: rgba(0, 184, 255, 0.25);
  box-shadow: 0 0 25px #00b8ffaa, 0 0 45px #00b8ff55 inset;
  transform: scale(1.06);
}

/* --- SEKCJA BRIEFING --- */
.about {
  max-width: 900px;
  margin: 3vh auto 5vh;
  padding: 2rem 1.5rem;
  background: rgba(15, 25, 40, 0.6);
  border-radius: 12px;
  text-align: center;
  color: #bfefff;
  animation: fadeIn 2s ease;
  backdrop-filter: blur(4px);
  box-shadow: 0 0 15px rgba(0, 184, 255, 0.1);
}
.about h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #00b8ff;
  text-shadow: 0 0 12px #00b8ff55;
}
.about p {
  line-height: 1.6;
  color: #aeeaff;
  font-size: 1.1rem;
}

/* --- MENU KAFELKOWE --- */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 25px;
  max-width: 1100px;
  margin: 4vh auto;
  padding: 0 20px;
}

/* --- KAFELKI Z LINKAMI --- */
.menu-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  border: 2px solid rgba(0, 184, 255, 0.3);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: pulseBorder 2.5s infinite alternate;
  background: rgba(0, 15, 30, 0.4);
  display: block;
  text-decoration: none;
  color: inherit;
}

.menu-item img.menu-img {
  display: block;
  width: 100%;
  height: auto;
  opacity: 0.9;
  transition: transform 0.3s ease, filter 0.3s ease, opacity 0.3s ease;
}

/* Efekt hover dla obrazka */
.menu-item:hover img.menu-img {
  filter: brightness(0.5);
  transform: scale(1.05);
  opacity: 1;
}

/* --- NAPIS NA KAFELKU --- */
.menu-item .menu-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 20, 40, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.menu-item .menu-overlay span {
  color: #b3e9ff;
  font-family: 'Orbitron', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 1px;
  text-shadow: 0 0 12px #00b8ff88, 0 0 25px #00b8ff55;
  transform: translateY(10px);
  opacity: 0;
  transition: all 0.8s ease;
}
.menu-grid a.menu-item {
  text-decoration: none;
  color: inherit;
  display: block;
}

/* Efekt hover – pokazanie napisu */
.menu-item:hover .menu-overlay {
  opacity: 1;
}

.menu-item:hover .menu-overlay span {
  transform: translateY(0);
  opacity: 1;
}
.steps a {text-decoration: none;
 color: #b3e9ff;
}
/* --- ANIMACJA OBRAMOWANIA (NEON) --- */
@keyframes pulseBorder {
  0% { border-color: rgba(0, 184, 255, 0.3); box-shadow: 0 0 10px rgba(0, 184, 255, 0.1); }
  50% { border-color: rgba(0, 184, 255, 0.6); box-shadow: 0 0 20px rgba(0, 184, 255, 0.3); }
  100% { border-color: rgba(0, 184, 255, 0.3); box-shadow: 0 0 10px rgba(0, 184, 255, 0.1); }
}

/* --- SEKCJA JAK DOŁĄCZYĆ --- */
.join-us {
  margin: 5vh auto 8vh;
  text-align: center;
  color: #bfefff;
  max-width: 900px;
  padding: 0 20px;
}
.join-us h2 {
  font-family: 'Orbitron', sans-serif;
  margin-bottom: 3rem;
  text-shadow: 0 0 12px #00b8ff55;
}
.steps {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-weight: 500;
}
.steps div {
  background: rgba(40, 15, 40, 0.6);
  color: #ffe0ff;
  padding: 1rem 2rem;
  border-radius: 8px;
  border: 2px solid rgba(255, 119, 255, 0.3);
  box-shadow: 0 0 10px #ff77ff55, 0 0 20px #ff77ff33 inset;
  transition: all 0.3s ease;
}
.steps div:hover {
  box-shadow: 0 0 20px #ff77ffaa, 0 0 35px #ff77ff55 inset;
  transform: scale(1.02);
}

/* --- KONTAKT --- */
.contact-command {
  text-align: center;
  margin-top: 4rem;
}
.contact-command a {
  display: inline-block;
  background: rgba(15, 25, 40, 0.6);
  color: #bfefff;
  padding: 1rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  box-shadow: 0 0 10px #00b8ff55, 0 0 20px #00b8ff33 inset;
  border: 2px solid rgba(0, 184, 255, 0.3);
  transition: all 0.3s ease;
}
.contact-command a:hover {
  box-shadow: 0 0 25px #00b8ffaa, 0 0 35px #00b8ff55 inset;
  transform: scale(1.03);
  background: rgba(0, 150, 255, 0.15);
}

/* --- MEDIA SPOŁECZNOŚCIOWE --- */
.socials {
  text-align: center;
  margin-top: 3vh;
}
.socials h3 {
  margin-bottom: 15px;
  color: #9ee9ff;
  text-shadow: 0 0 12px #00b8ff55;
}
.socials a {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin: 0 10px;
  color: #00cfff;
  font-size: 1.6rem;
  transition: all 0.3s ease;
  text-decoration: none;
  font-weight: bold;
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
}
.socials a:hover {
  color: #fff;
  text-shadow: 0 0 20px #00b8ff;
  transform: scale(1.2);
  background: rgba(0, 184, 255, 0.1);
}

/* --- STOPKA --- */
footer {
  text-align: center;
  color: #99a;
  font-size: 0.9rem;
  margin: 3vh 0 3vh;
}

/* --- ANIMACJE --- */
@keyframes fadeIn { from {opacity: 0;} to {opacity: 1;} }
@keyframes blink { 50% {opacity: 0;} }

/* --- RESPONSYWNOŚĆ --- */
@media (max-width: 900px) {
  header h1 { font-size: 2.4rem; }
  .about { margin: 8vh 10px; padding: 1.5rem; }
  .menu-grid { gap: 18px; }
}
@media (max-width: 600px) {
  header h1 { font-size: 2rem; }
  header p { font-size: 1rem; }
  .cta-btn { padding: 0.7em 1.5em; font-size: 0.9rem; }
  .about h2 { font-size: 1.6rem; }
  .about p { font-size: 1rem; }
  .menu-item { min-height: 120px; }
  .steps div { padding: 0.8rem 1.2rem; font-size: 0.95rem; }
  .contact-command a { padding: 0.8rem 1.4rem; font-size: 0.95rem; }
  .socials a { font-size: 1.4rem; margin: 0 6px; }
}
/* === COOKIE BANNER === */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(20, 20, 20, 0.9);
  color: #ccc;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 15px 20px;
  font-size: 0.95rem;
  box-shadow: 0 -3px 10px rgba(255, 255, 255, 0.1);
  z-index: 2000;
}

.cookie-banner p {
  margin: 0;
  text-align: center;
}

.cookie-banner a {
  color: #33ffff;
  text-decoration: underline;
  transition: 0.3s;
}

.cookie-banner a:hover {
  color: #fff;
}

.cookie-banner button {
  background: rgba(51, 255, 255, 0.2);
  border: 1px solid #33ffff;
  color: #fff;
  padding: 8px 18px;
  border-radius: 6px;
  cursor: pointer;
  font-family: 'Orbitron', sans-serif;
  transition: all 0.3s ease;
}

.cookie-banner button:hover {
  background: rgba(51, 255, 255, 0.4);
  transform: scale(1.05);
}
/*social*/
.socials-top {
  display: flex;
  gap: 12px;
  align-items: center;
}

.socials-top a {
  display: inline-block;
  transition: transform 0.3s ease;
}

.social-icon {
  width: 32px;                /* trochę większe, żeby lepiej wyglądały */
  height: 32px;
  display: block;
  object-fit: cover;           /* idealne do okrągłych ikon PNG */
  border-radius: 50%;          /* zachowuje idealny kształt koła */
  background: rgba(255,255,255,0.05); /* delikatne tło */
  filter: grayscale(100%) brightness(1.2);
  opacity: 0.85;
  transition: all 0.3s ease;
}

.social-icon:hover {
  filter: grayscale(0%) drop-shadow(0 0 6px #33ffff);
  opacity: 1;
  transform: scale(1.15);
  box-shadow: 0 0 10px #33ffff, 0 0 20px #33ffff;    
}