/* FAQ accordion */
.faq {
  max-width: 800px;
  margin: 40px auto 0;
}

.faq-item {
  border-bottom: 1px solid #ddd;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 0;
  font-size: 18px;
  font-weight: bold;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question:hover {
  opacity: 0.7;
}

.faq-icon {
  font-size: 22px;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer p {
  padding-bottom: 20px;
  margin: 0;
  color: #444;
}

/* aktywny element */
.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}





/* ===== FOOTER ===== */

.footer {
  background: #0b0b0b;
  color: #fff;
  padding: 60px 20px 20px;
  margin-top: 80px;
}

.footer-container {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
}

.footer-box h3 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 20px;
  font-size: 20px;
}

.footer-box ul {
  list-style: none;
  padding: 0;
}

.footer-box ul li {
  margin-bottom: 10px;
}

.footer-box a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-box a:hover {
  color: #fff;
}

.socials {
  margin-top: 15px;
  display: flex;
  gap: 15px;
}

.socials a {
  font-size: 14px;
  letter-spacing: 1px;
}

.footer-bottom {
  max-width: 1000px;
  margin: 40px auto 0;
  padding-top: 20px;
  border-top: 1px solid #222;
  text-align: center;
  font-size: 13px;
  color: #777;
}

/* mobile */
@media (max-width: 768px) {
  .footer {
    text-align: center;
  }

  .socials {
    justify-content: center;
  }
}













.page-transition {
  position: fixed;
  inset: 0;
  background: #0b0b0b;
  z-index: 9999;

  display: flex;
  align-items: center;
  justify-content: center;

  opacity: 1;
  transition: opacity 0.6s ease;
}

.page-transition.hide {
  opacity: 0;
  pointer-events: none;
}


/* ===== STYL NAPISU ===== */

.loader {
  text-align: center;
  animation: fadeScale 1.4s ease infinite alternate;
}

.loader-logo {
  display: block;
  font-family: 'Playfair Display', serif;   /* jak u Ciebie w nagłówkach */
  font-size: 42px;
  letter-spacing: 2px;
  color: #fff;
}

.loader-text {
  display: block;
  margin-top: 8px;

  color: #777;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
}


/* delikatne pulsowanie */
@keyframes fadeScale {
  from {
    opacity: 0.6;
    transform: scale(0.97);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}





















@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.gallery img {
  transition: transform 0.4s ease;
  cursor: pointer;
}

.gallery img:hover {
  transform: scale(1.05);
}




body {
  margin: 0;
    font-family: 'Inter', sans-serif;
  line-height: 1.6;
}

h1, h2 {
  font-family: 'Playfair Display', serif;
}

nav {
  background: #111;
  padding: 10px 20px;

  position: fixed;
  top: 0;
  left: 0;
  width: 100%;

  z-index: 999;
}

nav a {
  color: #fff;
  margin: 0 10px;
  text-decoration: none;
  font-weight: bold;
  position: relative;
  padding-bottom: 8px;
  box-sizing: border-box;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #fff;
  transition: width 0.3s ease;
}

nav a:hover::after,
nav a.active::after {
  width: 100%;
}

.section {
  padding: 80px 20px;
  animation: fadeUp 0.8s ease;
  max-width: 1000px;
  margin: 0 auto;
}

.hero {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 120px 20px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px,1fr));
  gap: 15px;
}

.gallery img {
  width: 100%;
  border-radius: 8px;
}

form input, form textarea {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
}

form button {
  padding: 10px 20px;
  background: #111;
  color: #fff;
  border: none;
  cursor: pointer;
}


.projects {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;;
  
}

.project {
  position: relative;
  overflow: hidden;
  border-radius: 12px;

}

.project img {
  width: 100%;
  display: block;
  transition: transform 0.6s ease;
}

.project:hover img {
  transform: scale(1.08);
}

.project-info {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.project:hover .project-info {
  opacity: 1;
}

.project-info h3 {
  margin-bottom: 15px;
}

.project-info button {
  background: #fff;
  color: #000;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  font-weight: bold;
}

#lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
  cursor: zoom-out;
}

#lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
  animation: zoomIn 0.4s ease;
}

@keyframes zoomIn {
  from {
    transform: scale(0.85);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}









.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;   /* 2 w wierszu */
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .video-grid {
    grid-template-columns: 1fr;     /* na telefonie 1 */
  }
}

.video-card {
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 9 / 16;             /* idealne pod rolki 360 */
}

.yt-video {
  width: 100%;
  height: 100%;
  display: block;
}

/* przycisk play jak na lewyprofil */
.play-btn {
  position: absolute;
  inset: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 50px;
  color: white;
  background: rgba(0,0,0,0.35);

  transition: .3s;
}

.video-cover:hover .play-btn {
  background: rgba(0,0,0,0.55);
}

.video-cover video {
  width: 100%;
  display: block;
  cursor: pointer;
}

.play-btn {
  pointer-events: none;   /* dokładnie jak u nich */
}








/* ===== ANIMACJA TAP PLAY/PAUSE ===== */

.tap-indicator {
  position: absolute;
  inset: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 72px;
  color: white;

  opacity: 0;
  transform: scale(0.8);

  pointer-events: none;
}

.tap-indicator.show {
  animation: tapFlash .65s ease;
}

@keyframes tapFlash {
  0% {
    opacity: 0;
    transform: scale(0.7);
  }

  40% {
    opacity: 1;
    transform: scale(1);
  }

  100% {
    opacity: 0;
    transform: scale(1.1);
  }
}
















.hero {
  background:
    radial-gradient(circle at top, rgba(255,255,255,0.08), transparent 60%),
    #0b0b0b;
  color: #fff;
  text-align: center;
  padding: 160px 20px 140px;
}

.hero h1 {
  font-size: 64px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.hero p {
  font-size: 18px;
  opacity: 0.85;
  margin-bottom: 30px;
}

.hero-link {
  color: #ccc;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 1px;
  transition: opacity 0.3s ease;
}

.hero-link:hover {
  opacity: 0.6;
}




.section {
  max-width: 1000px;
  margin: 0 auto;
  padding: 100px 20px;
}

.section-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 28px;
  white-space: nowrap;
}

.section-header span {
  height: 1px;
  background: #ccc;
  flex: 1;
}



.about {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 60px;
  align-items: center;
}

.about img {
  width: 100%;
  border-radius: 4px;
}

.about-text {
  max-width: 520px;
}

.about-text p {
  margin-bottom: 15px;
  color: #333;
  line-height: 1.6;
}


























.section,
.hero {
  animation: fadeUp 0.8s ease both;
}






@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.gallery img {
  cursor: pointer;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.gallery img:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

form button {
  transition: background 0.3s ease, transform 0.2s ease;
}

form button:hover {
  background: #000;
  transform: translateY(-2px);
}

#lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

#lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
}


@media (max-width: 768px) {
  .about {
    grid-template-columns: 1fr;
  }
}


@media (max-width: 768px) {

  nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  nav a {
    margin: 5px;
    font-size: 14px;
  }

  .hero {
    padding: 100px 20px;
  }

  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 22px;
  }

  .section {
    padding: 60px 20px;
  }

}





















.packages {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.package-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.package-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

.package-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.package-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  margin: 20px;
}

.package-card ul {
  list-style: none;
  padding: 0 20px;
  margin: 0;
}

.package-card ul li {
  padding: 8px 0;
  border-bottom: 1px solid #eee;
  font-size: 15px;
}

.package-card ul li:last-child {
  border-bottom: none;
}

.price {
  font-size: 22px;
  font-weight: bold;
  padding: 20px;
  text-align: center;
  background: #111;
  color: #fff;
}


form input,
form textarea {
  border: 1px solid #bbb;
  padding: 14px;
  font-size: 14px;
  border-radius: 4px;
  outline: none;
}

form input:focus,
form textarea:focus {
  border-color: #000;
}

form button {
  margin-top: 20px;
  background: #111;
  color: #fff;
  padding: 14px 30px;
  letter-spacing: 1px;
}