body {
  background-color: #000;
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}
html {
  scroll-behavior: smooth;
}
h1, h2, h3, h4 {
  font-family: 'JetBrains Mono', monospace;
}
h2 {
  font-size: 20px;
}
h3 {
  font-size: 16px;
}
h4 {
  font-size: 14px;
}
p {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 200;
  color: #BBBBBB;
}
p.small {
  font-size: 14px;
}
a {
  color: #fff;
  opacity: .9;
  text-decoration: none;
}

a:hover {
  color: #fff;
  opacity: 1;
  transition: 0.3s;
  text-shadow: 0 0 10px #fff;
}

h1 {
  font-size: 28px;
}
a.button {
  background-color: #404040;
  border-radius: 24px;
  padding: 7px 16px;
  line-height: 16px;
  cursor: pointer;
}
a.button img {
  margin-bottom: 4px;
}

canvas#particles {
  position: absolute;
}
.margin-60-30 {
  margin: 60px 0 30px;
}
.margin-24 {
  margin: 24px 0;
}
.big-caps {
  font-weight: uppercase;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (max-width: 992px) {
  .container {
    max-width: 800px;
  }
}

@media (max-width: 576px) {
  .container {
    max-width: 375px;
  }
}

/* Podstawowy navbar */
nav {
  position: fixed; /* przyklejony do góry */
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  transition: background-color 0.3s ease; /* płynna zmiana tła */
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0); /* początkowo przezroczysty */
}

/* Nawigacja desktop */
.nav-desktop {
  display: flex;
  justify-content: center;
  gap: 2rem;
  font-family: 'JetBrains Mono', monospace;
}

/* Klasa dodawana przy scrollu */
nav.scrolled {
  background-color: rgb(0 0 0 / 80%);
  backdrop-filter: blur(5px);
}


.nav-desktop a {
  color: #fff;
  text-decoration: none;
  transition: opacity 0.2s;
  font-size: 15px;
}

.nav-desktop a:hover {
  opacity: 0.7;
}

.logo {
  font-weight: 700;
  font-size: 1.5rem;
}
.logo img {
  max-height: 20px;
}
#logo {
  margin: 140px 0 30px;
}

/* Mobile nav */
.nav-mobile {
  display: none;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 10px 20px;
  background: #000000ad;
  z-index: 2;
}

.nav-mobile img#menu-btn {
  width: 28px;
  height: 28px;
  cursor: pointer;
  transition: opacity 0.2s;
}

.nav-mobile img:hover {
  opacity: 0.7;
}

@media (max-width: 768px) {
  .nav-desktop {
    display: none;
  }

  .nav-mobile {
    display: flex;
  }
}

/* Overlay menu (z prawej strony) */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 80%;
  max-width: 320px;
  background-color: rgba(0, 0, 0, 0.95);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  font-family: 'JetBrains Mono', monospace;
  text-transform: uppercase;
  font-size: 1.25rem;
  transform: translateX(100%);
  transition: transform 0.4s ease;
  z-index: 999;
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu a {
  color: #fff;
  text-decoration: none;
  transition: opacity 0.2s;
}

.mobile-menu a:hover {
  opacity: 0.7;
}

.mobile-menu .close-btn {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 2rem;
  cursor: pointer;
  user-select: none;
}

/* Ciemne tło półprzezroczyste */
.menu-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 998;
}

.menu-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.background-woman {
  min-height: 100dvh; /* dynamic viewport height */
  background-image: url('assets/bcg.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
}
.margin-bottom-120 {
  margin-bottom: 120px;
}
.margin-bottom-30 {
  margin-bottom: 30px;
}
.margin-bottom-60 {
  margin-bottom: 60px;
}

img.avatar {
  max-width: 140px;
  margin-left: auto;
  margin-right: auto;
  height: auto;
  border-radius: 100%;
}


/*tabelka*/
.info-table {
  width: 100%;
  border-collapse: collapse;
  background: transparent; /* przezroczyste tło */
  color: #fff; /* biały tekst */
  font-family: "JetBrains Mono", sans-serif;
  font-size: 16px;
  text-transform: uppercase;
}

.info-table td {
  padding: 0;
  vertical-align: top;
}

/* lewa kolumna — tekst do prawej */
.info-table .label {
  text-align: right;
  width: 50%; /* możesz zmienić np. na 30% */
  font-weight: 600;
  opacity: 0.8;
}

/* prawa kolumna — tekst do lewej */
.info-table .value {
  text-align: left;
  padding-left: 1rem;
  width: 50%;
  font-weight: 400;
}
.info-table td.space {
  padding-bottom: 30px;
}



.gallery {
  display: grid;
  gap: 20px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* zawsze 3 kolumny na desktopie */
  gap: 20px;
}

/* 📱 Tablet */
@media (max-width: 992px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}



.gallery img {
  width: 100%;
  height: auto;
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.02);
  opacity: 0.9;
}

/* --- Lightbox --- */
.lightbox {
  display: none; /* ukryte domyślnie */
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  justify-content: center;
  align-items: center;
  z-index: 9999;
  flex-direction: column;
}

.lightbox.active {
  display: flex;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  text-align: center;
}

.lightbox img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 8px;
}

/* Zamknij */
.close-btn {
  position: absolute;
  top: -50px;
  right: 0;
  background: transparent;
  border: none;
  color: #fff;
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.2s ease;
}

.close-btn:hover {
  opacity: 1;
}

/* Nawigacja */
.nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 10px;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.nav:hover {
  opacity: 1;
}

.nav.left {
  left: -60px;
}

.nav.right {
  right: -60px;
}

.nav img {
  width: 40px;
  height: 40px;
}

.dark-bcg {
  background:rgba(0, 0, 0, 0.6);;
  padding: 15px 25px;
  margin: 0 -25px;
}

#logo {
  width: 200px;
  position: relative;
  animation: twitch 6s infinite;
}

.actors h3 {
  text-transform: uppercase;
  margin: 16px 0 8px;
}

.actors h4 {
  text-transform: uppercase;
  color: #888;
}

.footer-box p {
  margin: 0;
  font-size: 14px;
  color: #BBBBBB;
}
.footer-box h4 {
  font-size: 14px;
}
.footer-box .social a {
  display: block;
}

footer small {
  margin: 10px;
  color: #BBBBBB;
}

iframe { 
  width: 100%;
  aspect-ratio: 16 / 9;
}

.info-table tr td:first-child {
  font-weight: 100;
}




/* 📱📱 Mobile */
@media (max-width: 600px) {
  .gallery {
    grid-template-columns: 1fr;
  }
  .mobile-margin-40-30 {
    margin: 40px 0 20px 0;
  }
  .mobile-m-b-30 {
    margin-bottom: 30px;
  }
  .footer-box .col-md-4 {
    margin-bottom: 20px;
  }
  .margin-bottom-60 {
    margin-bottom: 40px;
  }
}








































