/* 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 {
  height: 0;
  overflow: hidden;
  transition: height 0.45s ease;
}

.faq-answer p {
  padding-bottom: 20px;
  margin: 0;
  color: #444;
}

/* aktywny element */


.faq-item.active .faq-icon {
  transform: rotate(45deg);
}









/* STRZAŁKI LIGHTBOX */

.lb-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  font-size: 40px;
  cursor: pointer;
  user-select: none;
  padding: 20px;
  opacity: 0.8;
  transition: 0.3s;
}

.lb-arrow:hover {
  opacity: 1;
  transform: translateY(-50%) scale(1.1);
}

.lb-prev { left: 10px; }
.lb-next { right: 10px; }

/* licznik 3 / 40 */
.lb-counter {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 14px;
  letter-spacing: 1px;
}

















/* ===== 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;
}



.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;
}






/* ===== UKŁAD JAK NA  ===== */

.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);   /* 2 kolumny jak na screenie */
  gap: 12px;
}

/* zwykłe zdjęcie = 1 kolumna */
.gallery img {
  width: 100%;
  display: block;
  border-radius: 6px;
}

/* zdjęcie poziome na pełną szerokość */
.gallery img.wide {
  grid-column: 1 / -1;   /* zajmuje 2 kolumny */
}

/* telefon = 1 kolumna */
@media (max-width: 768px) {
  .gallery {
    grid-template-columns: 1fr;
  }

  .gallery img.wide {
    grid-column: auto;
  }
}





/* na telefonie tylko 1 kolumna */
@media (max-width: 768px) {
  .gallery {
    grid-template-columns: 1fr;
  }
}

.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{
  height:100vh;

  background:
    radial-gradient(circle at top, rgba(255,255,255,0.08), transparent 60%),
    url("TŁO.jpg");

  background-size:cover;
  background-position:center;

  display:flex;
  justify-content:center;
  align-items:center;

  color:#fff;
  text-align:center;

  animation: heroZoom 20s infinite alternate;
}

@keyframes heroZoom{
  0%{
    background-size:100%;
  }
  100%{
    background-size:110%;
  }
}



.hero-overlay{
  text-align:center;
  color:white;
  background:rgba(0,0,0,0.7);
  padding:50px 70px;
  border-radius:12px;
  backdrop-filter: blur(8px);
}




.socials{
  margin-top:20px;
  display:flex;
  justify-content:center;
  gap:30px; /* odstęp między ikonami */
}

.socials img{
  width:50px;
}


@media (max-width: 768px){

  .hero-overlay{
    padding:30px 20px;
  }

  .socials{
    display:flex;
    justify-content:center;
    gap:30px;
  }

  .socials img{
    width:40px;
  }

}













.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: 380px;
  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;
}













/* ===== GALERIA – NAGŁÓWEK  ===== */

.gallery-header {
  text-align: left;
  margin-bottom: 70px;
  animation: fadeUp 0.9s ease both;
}

.gallery-subtitle {
  display: block;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #777;
  margin-bottom: 10px;
}

.gallery-title {
  font-family: 'Playfair Display', serif;
  font-size: 64px;
  font-weight: 600;
  letter-spacing: 1px;
  margin: 0;
}

.gallery-meta {
  display: inline-block;
  margin-top: 14px;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #999;
}

/* mobile */
@media (max-width: 768px) {
  .gallery-title {
    font-size: 36px;
  }
}

.gallery-line {
  display: block;
  width: 160px;
  height: 2px;
  background: #111;
  margin-top: 22px;
}







.container {
    text-align: center;
}












.portfolio-hero {
  max-width: 720px;
  margin-bottom: 70px;
  animation: fadeUp 0.9s ease both;
}

.portfolio-hero-subtitle {
  display: block;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #777;
  margin-bottom: 12px;
}

.portfolio-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 1.15;
  margin: 0;
}

.portfolio-hero-note {
  margin-top: 18px;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #999;
  opacity: 0.8;
}

.portfolio-hero-line {
  display: block;
  width: 140px;
  height: 2px;
  background: #111;
  margin-top: 24px;
}

/* mobile */
@media (max-width: 768px) {
  .portfolio-hero-title {
    font-size: 36px;
  }

  .portfolio-hero {
    text-align: left;
  }
}





.extras-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}

/* prawa kolumna */
.extras-right {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.extra-item {
  padding-bottom: 25px;
  border-bottom: 1px solid #eee;
}

.extra-item:last-child {
  border-bottom: none;
}

.extra-item h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  margin-bottom: 8px;
}

.extra-item p {
  color: #555;
  line-height: 1.6;
  margin: 0;
}

.extra-price {
  font-weight: bold;
  font-size: 18px;
  margin: 8px 0;
  color: #000;
}

.extra-note {
  font-size: 13px;
  color: #888;
  margin-top: 6px;
}

@media (max-width: 768px) {
  .extras-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}





/* ===== FOOTER LOGO ===== */

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo img {
  max-width: 170px;
  width: 100%;
  opacity: 0.9;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.footer-logo img:hover {
  opacity: 1;
  transform: scale(1.03);
}

.footer-logo-link {
  display: inline-block;
  text-decoration: none;
}




/* ===== Body LOGO ===== */

.body-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.body-logo img {
  max-width: 50px;
  width: 100%;
  opacity: 0.9;
  transition: opacity 0.3s ease, transform 0.3s ease;
  margin: 5px;
}

.body-logo img:hover {
  opacity: 1;
  transform: scale(1.03);
}

.body-logo-link {
  display: inline-block;
  text-decoration: none;
}










/* ===== Logo główne ===== */

.index-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.index-logo img {
  max-width: 380px;
  width: 100%;
  opacity: 0.9;
  transition: opacity 0.3s ease, transform 0.3s ease;
}







/* ===== Loading główne ===== */

.Loading-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.Loading-logo img {
  max-width: 180px;
  width: 100%;
  opacity: 0.9;
  transition: opacity 0.3s ease, transform 0.3s ease;
}























.aboutFAQ {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 60px;
  align-items: center;
}

/* ważne — obcina powiększony obraz */
.aboutFAQ img {
  width: 100%;
  border-radius: 4px;
  display: block;

   transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* kontener musi ukrywać nadmiar */
.aboutFAQ {
  overflow: hidden;
}

/* efekt hover */
.aboutFAQ img:hover {
  transform: scale(0.95);
}

@media (max-width: 768px) {

  .aboutFAQ {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .aboutFAQ img {
    width: 100%;
    max-height: 300px;     /* żeby nie było ogromne */
    object-fit: cover;
  }

}





.site-header {
  position: fixed;
  left: 0;
  top: 0;
  width: 220px;
  height: 100vh;
  background: #0f0f0f;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  
  
}

.site-header nav {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.site-header nav a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  letter-spacing: 1px;
  position: relative;
  padding: 6px 0;
  transition: 0.3s;
}

/* animowana kreska */
.site-header nav a::after {
  content: "";
  position: absolute;
  height: 2px;
  width: 0%;
  left: 0;
  bottom: -3px;
  background: white;
  transition: width 0.3s;
}

.site-header nav a:hover::after {
  width: 100%;
}

.site-header nav a.active::after {
  width: 100%;
}


body {
  margin-left: 220px;
}










/* ===== MENU MOBILNE ===== */

.menu-toggle{
  display:none;
}

@media (max-width:768px){

  .site-header{
    width:100%;
    height:60px;
    padding:15px;
    justify-content:space-between;
    align-items:center;
  }

  .menu-toggle{
    display:block;
    color:white;
    font-size:30px;
    cursor:pointer;
    z-index:10001;
  }

  .site-header nav{
    position:fixed;
    top:0;
    left:-260px;
    width:260px;
    height:100vh;
    background:#0f0f0f;

    display:flex;
    flex-direction:column;
    align-items:center;

    padding-top:80px;
    padding-bottom:40px;

    transition:left 0.35s ease;
    z-index:10000;
  }

  .site-header nav.active{
    left:0;
  }

  .site-header nav a{
    font-size:18px;
  }

	.menu-social{
  margin-top:auto;
  display:flex;
  justify-content:center;
  gap:5px;
  padding-bottom:30px;
}

.menu-social img{
  width:28px;
}

  body{
    margin-left:0;
    padding-top:60px;
  }

}





.menu-logo{
  margin-bottom:40px;
}

.menu-logo img{
  width:160px;
  height:auto;
}













.menu-social{
  margin-top:auto;
  display:flex;
  gap:18px;
  padding-bottom:40px;
}

.menu-social img{
  width:32px;
  height:auto;
  opacity:0.8;
  transition:0.3s;
}

.menu-social img:hover{
  opacity:1;
}




/* ===== LOGO W NAGŁÓWKU OFERTY ===== */


.photo-book{
  padding:100px 20px;

  background:
    linear-gradient(rgba(0,0,0,.5), rgba(0,0,0,.5)),
    url("tło oferta.png");

  background-size:cover;
  background-position:center;

  color:white;
  text-align:center;
}

.photo-book-line{
  background:white;
  margin:24px auto;
}

.photo-book-subtitle{
  color:rgba(255,255,255,.8);
}

.photo-book-note{
  color:rgba(255,255,255,.7);
}









.hero-max{
  display:inline-block;      /* dopasowuje szerokość do tekstu */

  text-align:center;
  color:white;
  background:rgba(0,0,0,0.7);

  padding:25px 40px;         /* trochę mniejszy padding */
  border-radius:12px;

  backdrop-filter: blur(8px);
}



.hero-divider{
  display:block;
  width:120px;
  height:1px;
  background:white;

  margin:18px auto;
}
.portfolio-hero-max {
  display: block;
  font-size: 15px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #777;
  margin-bottom: 12px;
}

.portfolio-hero-min {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 1.15;
  margin: 0;
}


@media (max-width:768px){

  .photo-book{
    padding:70px 15px;
    background-position:center;
  }

  .hero-max{
    padding:18px 22px;
    border-radius:10px;
  }

  .portfolio-hero-max{
    font-size:12px;
    letter-spacing:2px;
  }

  .portfolio-hero-min{
    font-size:26px;
    line-height:1.2;
  }

  .hero-divider{
    width:80px;
    margin:14px auto;
  }

}







.photo-fotobudka{
  padding:100px 20px;

  background:
    linear-gradient(rgba(0,0,0,.5), rgba(0,0,0,.5)),
    url("tło fotobudka1.png");

  background-size:cover;
  background-position:center;

  color:white;
  text-align:center;
}

.photo-fotobudka-line{
  background:white;
  margin:24px auto;
}

.photo-fotobudka-subtitle{
  color:rgba(255,255,255,.8);
}

.photo-fotobudka-note{
  color:rgba(255,255,255,.7);
}



@media (max-width:768px){

  .photo-fotobudka{
    padding:70px 15px;
    background-position:center;
  }

  .photo-fotobudka-subtitle{
    font-size:12px;
    letter-spacing:2px;
  }

  .photo-fotobudka-note{
    font-size:12px;
  }

  .photo-fotobudka-line{
    width:80px;
    height:1px;
    margin:14px auto;
  }

}







.photo-portfolio{
  padding:100px 20px;

  background:
    linear-gradient(rgba(0,0,0,.5), rgba(0,0,0,.5)),
    url("Tło Portfolio.png");

  background-size:cover;
  background-position:center;

  color:white;
  text-align:center;
}

.photo-portfolio-line{
  background:white;
  margin:24px auto;
}

.photo-portfolio-subtitle{
  color:rgba(255,255,255,.8);
}

.photo-portfolio-note{
  color:rgba(255,255,255,.7);
}



@media (max-width:768px){

  .photo-portfolio{
    padding:70px 15px;
    background-position:center;
  }

  .photo-portfolio-subtitle{
    font-size:12px;
    letter-spacing:2px;
  }

  .photo-portfolio-note{
    font-size:12px;
  }

  .photo-portfolio-line{
    width:80px;
    height:1px;
    margin:14px auto;
  }

}






.photo-tłofotobudka{
  padding:100px 20px;

  background:
    linear-gradient(rgba(0,0,0,.5), rgba(0,0,0,.5)),
    url("tło fotobudka.png");

  background-size:cover;
  background-position:center;

  color:white;
  text-align:center;
}

.photo-tłofotobudka-line{
  background:white;
  margin:24px auto;
}

.photo-tłofotobudka-subtitle{
  color:rgba(255,255,255,.8);
}

.photo-tłofotobudka-note{
  color:rgba(255,255,255,.7);
}



@media (max-width:768px){

  .photo-tłofotobudka{
    padding:70px 15px;
    background-position:center;
  }

  .photo-tłofotobudka-subtitle{
    font-size:12px;
    letter-spacing:2px;
  }

  .photo-tłofotobudka-note{
    font-size:12px;
  }

  .photo-tłofotobudka-line{
    width:80px;
    height:1px;
    margin:14px auto;
  }

}





.photo-faqs{
  padding:100px 20px;

  background:
    linear-gradient(rgba(0,0,0,.5), rgba(0,0,0,.5)),
    url("Tło Faqs.png");

  background-size:cover;
  background-position:center;

  color:white;
  text-align:center;
}

.photo-faqs-line{
  background:white;
  margin:24px auto;
}

.photo-faqs-subtitle{
  color:rgba(255,255,255,.8);
}

.photo-faqs-note{
  color:rgba(255,255,255,.7);
}



@media (max-width:768px){

  .photo-faqs{
    padding:70px 15px;
    background-position:center;
  }

  .photo-faqs-subtitle{
    font-size:12px;
    letter-spacing:2px;
  }

  .photo-faqs-note{
    font-size:12px;
  }

  .photo-faqs-line{
    width:80px;
    height:1px;
    margin:14px auto;
  }

}




.photo-kontakt{
  padding:100px 20px;

  background:
    linear-gradient(rgba(0,0,0,.5), rgba(0,0,0,.5)),
    url("Tło kontakt.png");

  background-size:cover;
  background-position:center;

  color:white;
  text-align:center;
}

.photo-kontakt-line{
  background:white;
  margin:24px auto;
}

.photo-kontakt-subtitle{
  color:rgba(255,255,255,.8);
}

.photo-kontakt-note{
  color:rgba(255,255,255,.7);
}



@media (max-width:768px){

  .photo-kontakt{
    padding:70px 15px;
    background-position:center;
  }

  .photo-kontakt-subtitle{
    font-size:12px;
    letter-spacing:2px;
  }

  .photo-kontakt-note{
    font-size:12px;
  }

  .photo-kontakt-line{
    width:80px;
    height:1px;
    margin:14px auto;
  }

}











.KontaktMax{
  min-height:100vh;
  padding:60px 20px;

  background:
    radial-gradient(circle at top, rgba(255,255,255,0.08), transparent 60%),
    url("formularz.jpg");

  background-size:cover;
  background-position:center;

  display:flex;
  justify-content:center;
  align-items:center;

  color:#fff;
  text-align:center;
}

/* overlay */
.KontaktMax-overlay{
  text-align:center;
  color:white;
  background:rgba(0,0,0,0.7);

  padding:50px 60px;
  border-radius:12px;

  backdrop-filter: blur(8px);

  width:100%;
  max-width:500px;
}

/* FORMULARZ */
.KontaktMax-overlay form{
  display:flex;
  flex-direction:column;
  gap:15px;
  margin-top:20px;
  margin-right: 20px;
}

.KontaktMax-overlay input,
.KontaktMax-overlay textarea{
  width:100%;
  padding:14px;
  border-radius:6px;
  border:none;
  font-size:16px;
}

/* BUTTON */
.KontaktMax-overlay button{
  margin-top:10px;
  padding:14px;
  background:#fff;
  color:#000;
  border:none;
  cursor:pointer;
  font-weight:bold;
  transition:0.3s;
}

.KontaktMax-overlay button:hover{
  background:#ddd;
}

/* SOCIALS */
.socials{
  margin-top:20px;
  display:flex;
  justify-content:center;
  gap:25px;
  flex-wrap:wrap;
}

.socials img{
  width:45px;
}

/* ===== MOBILE ===== */
@media (max-width:768px){

  .KontaktMax{
    padding:40px 15px;
  }

  .KontaktMax-overlay{
    padding:25px 15px;
    max-width:100%;
  }
  
  .KontaktMax-overlay form{
  margin-right: 20px;
}

  .KontaktMax-overlay input,
  .KontaktMax-overlay textarea{
    padding:12px;
  }

  .socials{
    gap:18px;
  }

  .socials img{
    width:35px;
  }

}

.footerkontakt {
  background: #0b0b0b;
  color: #fff;
  padding: 60px 20px 20px;
  margin-top: 0px;
}







/* ===== PRZYCISK GŁÓWNY ===== */
.btn-main {
  display: inline-block;
  margin-top: 40px;
  padding: 14px 32px;

  background: #111;
  color: #fff;

  text-decoration: none;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;

  border: 1px solid #111;
  border-radius: 6px;

  transition: all 0.3s ease;
}

/* hover */
.btn-main:hover {
  background: transparent;
  color: #111;
}

.btn-center {
  text-align: center;
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

@media (max-width: 768px) {

  .btn-main {
    width: 100%;              /* pełna szerokość */
    max-width: 320px;        /* żeby nie był za szeroki */
    
    text-align: center;
    padding: 16px 20px;

    font-size: 12px;
    letter-spacing: 2px;
  }

  .btn-center {
    padding: 0 20px;         /* odstęp od krawędzi */
    margin-top: 30px;
  }
}