
/* WIDOK GRAFIK WYBIERZ SWÓJ STYL --------------------------*/
  
.image-container {
  display: flex;
  flex-direction: column; /* układ pionowy: tytuł nad zdjęciami */
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.title {
  font-size: 2.8rem;
  font-weight: 500;
  margin-bottom: 30px;
  line-height: 1.2;
  font-family: 'Cormorant Garamond';
  text-align: center;
}

/* DOMYŚLNIE – WERSJA DESKTOP */
.title-desktop-main,
.title-desktop-sub {
  display: inline;
}

.title-mobile-main,
.title-mobile-sub {
  display: none;
}

.image-row {
  display: flex;
  gap: 0px;
  justify-content: center;
  width: 100%;
}

.image-row a {
  flex: 1;
}

.image-row img {
  width: 100%;
  height: auto;
  display: block;
  max-width: 100%;
}

/* WERSJA MOBILNA – PONIŻEJ 1000px */
@media (max-width: 1000px) {
  /* schowaj desktopowe napisy */
  .title-desktop-main,
  .title-desktop-sub {
    display: none;
  }

  /* pokaż mobilne napisy */
  .title-mobile-main,
  .title-mobile-sub {
    display: block;
  }

  .title-mobile-main {
    font-size: 2.8rem; /* możesz zmniejszyć, np. 2.2rem jeśli za duże */
    margin-bottom: 5px;
  }

  .title-mobile-sub {
    font-size: 25px;
  }

  /* obrazki jeden pod drugim z odstępem */
  .image-row {
    flex-direction: column;
    gap: 20px;          /* odstęp między obrazkami */
    align-items: center;
    padding-bottom: 30px;
  }

  .image-row a {
    width: 100%;
  }

  .image-row img {
    max-width: 500px;
    height: auto;
    margin: 0 auto;     /* wyśrodkowanie obrazków */
  }
}


/* ZMIANA OBRAZKÓW NA GÓRZE STRONY ---------------------------------------------------- */


.hero-slider {
  margin-top: 50px;
  width: 100%;
  background-color: #dbd5ce;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 3s ease-in-out;
  overflow: hidden;
  position: relative;
}

.hero-slider img {
  width: 100%;
  max-width: 1000px;
  height: auto;
  opacity: 0;
  transition: opacity 3s ease-in-out;
  position: absolute;
  inset: 0;
  margin: auto;
  max-height: 100%;
  object-fit: contain;
}

.hero-slider img.active {
  opacity: 1;
  position: relative;
  z-index: 2;
}





/* KAFELKI ----------------------------------------------------------------------*/

.kafelki-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 60px;
  max-width: 1000px;
  margin: 0 auto;
}

.kafelek {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-decoration: none;
  background-color: #ffffff;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  padding: 10px 20px 30px 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  color: inherit;
  height: auto;
}

.kafelek:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.kafelek h1 {
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 10px;
  color: #111;
}

.kafelek p {
  font-family: 'Arsenal', serif;
  font-size: 1rem;
  color: #333;
  line-height: 1.5;
  flex-grow: 1;
}

.kafelek .wiecej {
  margin-top: 0px;
  font-size: 0.9rem;
  color: #000;
  font-weight: 600;
  display: flex;
  align-items: center;
  letter-spacing: 0.5px;
  font-family: 'Arsenal', serif;
}

/* przycisk pod kafelkami – domyślnie ukryty (desktop) */
.kafelki-mobile-button {
  display: none;
}

/* WERSJA MOBILNA: max 1024px */
@media (max-width: 1024px) {

  /* kafelki w jednej kolumnie na mobile */
  .kafelki-container {
    max-width: 600px;
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 20px;
  }

  /* ukryj wszystkie kafelki oprócz tych z klasą kafelek-mobile-main */
  .kafelki-container .kafelek {
    display: none;
  }

  .kafelki-container .kafelek.kafelek-mobile-main {
    display: flex;
  }

  /* pokaż przycisk "sprawdź pełną ofertę" */
  .kafelki-mobile-button {
    display: flex;
    justify-content: center;
    margin-top: 10px;
    margin-bottom: 30px;
  }
}

/*---------------------------------------------------------------------------------*/

.belka-dlaczego {
  display: flex;
  justify-content: center;  /* wyśrodkowanie w poziomie */
  align-items: center;      /* wyśrodkowanie w pionie */
  background-color: #ffe463;
  border-radius: 30px;
  max-width: 1000px;
  margin: 30px auto;
  font-family: 'Arsenal', serif;
  color: #111;
  gap: 60px;
}



.belka-kolumna.lewa p {
  font-family: 'Cormorant Garamond';

  font-size: 2rem;
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
  width: 150px
  

}

.belka-kolumna.prawa p {
  
  padding: 30px 0px 0px 0px;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 10px;
  width: 600px

}

.belka-kolumna.prawa ul {
  list-style: disc;
  padding-bottom: 30px;
}

.belka-kolumna.prawa li {
  margin-bottom: 8px;
  font-size: 1.1rem;
}


/*-----------------ZAUFALI MI--------------------------------------------------------------*/


.gallery-scroll1 {
  overflow: hidden;
  max-width: 1000px;
  margin: 0px auto;
  padding: 20px;
}


.gallery-row1 {
  max-width: 1000px;
  display: flex;
  flex-wrap: nowrap;
  gap: 100px;
}

.gallery-row1:hover {
  animation-play-state: paused; 
}

.gallery-row1 img {

  flex: 0 0 auto;
  max-height: 100px;
  width: auto;
  padding-bottom: 30px;
}

@keyframes scroll1 {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/*---------------------------------------------------------------------------------------------*/


.about-section {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #dbd5ce;
  flex-wrap: wrap;
  gap: 20px;
}

.about-text {
  max-width: 500px;
  
}

.about-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.about-text p {
  font-family: 'Arsenal', serif;
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #111;
}


.about-image {
  flex: 1;
  max-width: 500px;
  transition: transform 3s ease, opacity 1s ease;
}

.about-image img {
  width: 100%;
  height: auto;
}

/* ANIMACJA z prawej */
.hidden-right {
  opacity: 0;
  transform: translateX(100px);
}

.reveal-right {
  opacity: 1;
  transform: translateX(0);
}


.button {
  font-family: 'Cormorant Garamond', serif;
  display: inline-block;
  padding: 10px 30px;
  margin-top: 0px;
  background-color: #ffdb58;
  color: #000;
  font-weight: 100;
  text-decoration: none;
  font-size: 25px;
  border-radius: 40px;
  border: 0px solid #000;
  box-shadow: 5px 5px 10px rgba(0,0,0,0.2);
  transition: background 0.3s;

  
}

.button:hover {
  background-color: #ffffff;
}