* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
  background-image: url('Photo/pszczelarz_ver1.jpeg'); /* ← tutaj wstaw nazwę pliku tła */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: #3a2e1a;
  
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main, .price-section {
  flex: 1;
}



/* RWD */
@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    align-items: center;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .logo {
    height: 50px;
  }
}

@media (max-width: 480px) {
  nav ul {
    flex-direction: column;
    align-items: center;
  }

.hero {
    font-size: 1.5rem;     /* 🔧 dopasowana do małych ekranów */
    padding: 6vh 1rem;
  }

  .hero h1 {
    font-size: 1.3rem; /* zamiast 0,5rem (z przecinkiem) */
  }

  .logo {
    height: 60px;
  }

  .gallery {
    grid-template-columns: 1fr; /* ✅ jedno zdjęcie na rząd */
  }

  

}

@media (max-width: 375px) {
  .hero h1 {
    font-size: 1.2rem;
  }
}

@media (max-width: 375px) {
  section {
    padding: 2rem 1rem;
  }
}


/* Przycisk hamburgera */
#menu-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  color: #5a4316;
  cursor: pointer;
}

/* RWD: menu rozwijane po kliknięciu */
@media (max-width: 768px) {
  #menu-toggle {
    display: block;
    margin-left: auto;
  }

  nav#main-nav ul {
    display: none;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
    background-color: #fffef3;
    padding: 1rem;
    border-radius: 10px;
  }

  nav#main-nav ul.active {
    display: flex;
  }

  nav#main-nav a {
    padding: 0.5rem;
    text-align: left;
  }
}

/* Domyślnie pokazujemy wersję desktopową */
.desktop-only {
  display: block;
}

.mobile-only {
  display: none;
}

/* Na mniejszych ekranach (max 768px) zamieniamy widoczność */

@media (max-width: 768px) {
  .desktop-only {
    display: none;
  }

  .mobile-only {
    display: block;
  }

}


header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: rgba(255, 255, 255, 0.6);
  border-bottom: 2px solid #e6d9b0;
  padding-bottom: 8rem;
  margin-bottom: 1rem;

}

.logo {
  height: 150px;
}


nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  position: relative;
  margin: 0;
  padding: 0;
}

nav li {
  position: relative;
  font-size: 20px;
}

nav a {
  text-decoration: none;
  color: #5a4316;
  font-weight: bold;
  padding: 0.5rem;
  display: inline-block;
}

nav ul li a {
  font-size: clamp(0.85rem, 2.5vw, 1.1rem);
  white-space: nowrap;
  overflow: visible;
  text-overflow: ellipsis;
}

.dropdown-menu li a {
  font-size: clamp(0.85rem, 2vw, 1.1rem);
  white-space: nowrap;
}


@media (max-width: 480px) {
  nav ul {
    flex-direction: column;       /* pionowy układ pozycji */
    align-items: flex-start;      /* wyrównanie do lewej */
    padding-left: 1.2rem;         /* odstęp od lewej krawędzi */
  }

  nav ul li {
    width: 100%;
  }

  nav ul li a {
    font-size: 0.95rem;
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
  }
}


/* Dropdown menu – pojawia się pod napisem */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%; /* ⬅️ pojawia się pod napisem */
  left: 0;
  background-color: #fff8dc;
  z-index: 1000;
  min-width: 200px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);

  overflow-x: auto;
  max-width: 100vw;

}

.dropdown-menu li a {
  display: block;
  padding: 0.5rem 1rem;
  color: #5a4316;
  white-space: nowrap;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu li {
  border-bottom: 1px solid #e0d4a0; /* cienka linia oddzielająca */
}

.dropdown-menu li:last-child {
  border-bottom: none; /* usuwa kreskę pod ostatnim elementem */
}

.dropdown-menu li a:hover {
  background-color: #f9f3d0; /* delikatne podświetlenie po najechaniu */
}




.hero {
  text-align: center;
  font-size: clamp(1.6rem, 5vw, 3rem);
  padding: 10vh 2rem;
  color: #7a5a1f;
  font-size: 3.0rem;   /* ✅ duży rozmiar dla desktopów */
  font-weight: 800;
  font-style: italic;
  line-height: 1.2;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.section {
  padding: 4rem 2rem;
  text-align: center;
}

.section h2 {
  margin-bottom: 1rem;
  color: #5d4317;
}

.fb-link {
  text-decoration: none;
  color: #3b5998;
  font-weight: bold;
}

.fb-link:hover {
  text-decoration: underline;
}

.intro {
  font-size: 1.5rem;
  line-height: 1.6;
  margin: 0 auto;
  max-width: 1000px;
}

footer {
  padding: 1.2rem;
  text-align: center;
  font-size: 0.9rem;
  background-color: rgba(255, 255, 255, 0.7);
  border-top: 2px solid #e6d9b0;

}

.footer-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.footer-row span {
  font-size: 1rem;
  color: #5a4316;
}

.fb-link {
  font-size: 1.3rem;
  color: #3b5998;
  text-decoration: none;
}

.fb-link:hover {
  color: #2d4373;
}
#onas{
    text-align: center;
    color:#5a4316;
    font-weight: 800;
    font-style: italic;
}

#galeria{
    text-align: center;
    color:#5a4316;
    font-weight: 800;
    font-style: italic;
    font-size: 70px;
}

#kit{
    text-align: center;
    color:#5a4316;
    font-weight: 800;
    font-style: italic;
    font-size: 50px;
}

/* Gallery styles */

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.2rem;
  margin-top: 2rem;
}

.gallery-section {
  padding: 3rem 1rem;
  text-align: center;
}

.gallery figure {
  margin: 0;
  text-align: center;
  overflow: hidden;
}

.gallery img {
  width: 100%;
  height: auto; /* lub np. 250px – dostosuj do potrzeb */
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.05);
}

.gallery figcaption {
  margin-top: 0.6rem;
  font-size: 1.2rem;
  color: #3a2e1a;
  line-height: 1.5;
  font-weight: bold; /* 🔧 Dodane */
}

.product-gallery {
  text-align: center;
  padding: 3rem 1rem;
  border-radius: 12px;
}
.mobile-only {
  display: none;
}

.product-gallery img {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 10px;
}

.product-gallery figcaption {
  margin-top: 1rem;
  font-size: 1rem;
  color: #3a2e1a;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.product-gallery {
  text-align: center;
  padding: 3rem 1rem;
  border-radius: 12px;
}






.price-section {
  padding: 3rem 1rem;
  text-align: center;
  border-radius: 12px;
}


.price-table {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.price-item {
  background-color:  rgba(255, 255, 240, 0.5); /* 🟡 jasny krem z 80% krycia */
  border: 1px solid #e6d9b0;
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.price-item h3 {
  color: #5a4316;
  margin-bottom: 0.5rem;
}

.price-item p {
  margin: 0.3rem 0;
  color: #3a2f1a;
}



.contact-section {
  
  text-align: center;
  padding: 3rem 1rem;
}

.contact-info {
  max-width: 600px;
  margin: 0 auto;
  font-size: 2rem;
  color: #3a2f1f;
  font-weight: 600;
}

.contact-info a {
  color: #5a4316;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

.social-link i {
  margin-right: 0.4rem;
  color: #3b5998;
  font-size: 1.2rem;
  vertical-align: middle;
}

#kuferek h2 {
  text-align: center;
  font-size: 2rem;
  color: #5a4316;
  margin-bottom: 2rem;
}

#kuferek figcaption {
  font-size: 2.2rem;
  font-weight: bold;
  color: #3a2e1a;
  line-height: 1.6;
  margin-top: 0.8rem;
}

#miod figcaption,
.gallery-miod figcaption {
  font-size: 1.2rem;         /* ✅ większa czcionka */
  font-weight: bold;         /* jeśli nie było */
  color: #3a2e1a;
  line-height: 1.6;
  margin-top: 0.8rem;
}

.tata-foto {
  max-width: 200px;
  margin: 2rem auto;
  text-align: center;
}

.tata-foto img {
  border: 4px solid #5a4316; /* miodowo-brązowy odcień */
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 6px 14px rgba(0,0,0,0.15);
}

.tata-foto figcaption {
  margin-top: 0.8rem;
  font-size: 1.1rem;
  color: #5a4316;
  font-style: italic;
}



/*ZESTAW MIODU GALERIA*/
#miod {
  padding: 3rem 1rem;
  text-align: center;
}

#miod h2 {
  font-size: 2rem;
  color: #5a4316;
  margin-bottom: 0.5rem;
}

#miod .subheading {
  font-size: 1.2rem;
  color: #7a5a1f;
  margin-bottom: 2rem;
}

#miod .gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

#miod figure {
  margin: 0;
  text-align: center;
}

#miod img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

#miod img:hover {
  transform: scale(1.05);
}

#miod figcaption {
  margin-top: 0.8rem;
  font-size: 1.2rem;
  font-weight: bold;
  color: #3a2e1a;
  line-height: 1.6;
}

/* Responsywność ZESTAW MIODU GALERIA */
.desktop-only { display: block; }
.mobile-only { display: none; }

@media (max-width: 768px) {
  .desktop-only { display: none; }
  .mobile-only { display: block; }

  #miod h2 {
    font-size: 1.5rem;
  }

  #miod .subheading {
    font-size: 1rem;
  }

  #miod .gallery {
    grid-template-columns: 1fr;
  }
}


/*ZESTAW SWIATECZNY GALERIA*/
#swiateczny {
  padding: 3rem 1rem;
  text-align: center;
}

#swiateczny h2 {
  font-size: 2rem;
  color: #5a4316;
  margin-bottom: 0.5rem;
}

#swiateczny .subheading {
  font-size: 1.2rem;
  color: #7a5a1f;
  margin-bottom: 2rem;
}

#swiateczny .gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

#swiateczny figure {
  margin: 0;
  text-align: center;
}

#swiateczny img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

#swiateczny img:hover {
  transform: scale(1.05);
}

#swiateczny figcaption {
  margin-top: 0.8rem;
  font-size: 1.2rem;
  font-weight: bold;
  color: #3a2e1a;
  line-height: 1.6;
}

/* RWD — widoczność mobilna */
@media (max-width: 768px) {
  .desktop-only { display: none; }
  .mobile-only  { display: block; }

  #swiateczny h2 {
    font-size: 1.5rem;
  }

  #swiateczny .subheading {
    font-size: 1rem;
  }

  #swiateczny .gallery {
    grid-template-columns: 1fr;
  }
}

/* RWD — informacji o miejscu pasieki */
@media (max-width: 480px) {
  .contact-info p,
  .contact-info a {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .contact-info i {
    font-size: 1rem;        /* nieco mniejsze na telefonie */
  }
}


.contact-info i {
  vertical-align: middle;
  position: relative;
  top: -0.50rem; /* lub -0.05rem zależnie od ikon — można dopasować */
  font-size: 1.2rem;
  margin-right: 0.4rem;
  color: #7a5a1f;
}



.contact-info i {
  font-size: 1.2rem;        /* jednolita wielkość dla wszystkich ikon */
  color: #7a5a1f;
  margin-right: 0.5rem;
  vertical-align: middle;
}

  .icon-home {
    font-size: 2rem; /* wielkość ikonki */
    margin-right: 0.4rem;
  }


.icon-home {
  margin-right: 0.5rem;
  font-size: 0.2rem;
  color: #7a5a1f;
}

.contact-info p {
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  color: #3a2e1a;
  margin: 0.5rem 0;
}

.contact-section {
  background-color:  rgba(255, 255, 240, 0.1); /* 🟡 jasny krem z 80% krycia */
  padding: 2rem 1rem;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
}

.contact-info p,
.contact-info a {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: #3a2e1a;
  margin: 0.5rem 0;
  text-decoration: none;
  font-weight: 500;
}

.contact-info i {
  margin-right: 0.4rem;
  color: #7a5a1f;
  font-size: 1.2rem;
}




/* RWD — DZIEN BABCI I DZIADKA */
#dziadek-babcia {
  padding: 3rem 1rem;
  text-align: center;
}

#dziadek-babcia h2 {
  font-size: 2rem;
  color: #5a4316;
  margin-bottom: 0.5rem;
}

#dziadek-babcia .subheading {
  font-size: 1.2rem;
  color: #7a5a1f;
  margin-bottom: 2rem;
}

#dziadek-babcia .gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

#dziadek-babcia figure {
  margin: 0;
  text-align: center;
}

#dziadek-babcia img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

#dziadek-babcia img:hover {
  transform: scale(1.05);
}

#dziadek-babcia figcaption {
  margin-top: 0.8rem;
  font-size: 1.2rem;
  font-weight: bold;
  color: #3a2e1a;
  line-height: 1.6;
}

/* RWD — mobilna wersja */
@media (max-width: 768px) {
  .desktop-only { display: none; }
  .mobile-only  { display: block; }

  #dziadek-babcia h2 {
    font-size: 1.5rem;
  }

  #dziadek-babcia .subheading {
    font-size: 1rem;
  }

  #dziadek-babcia .gallery {
    grid-template-columns: 1fr;
  }
}

.subheading {
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  font-weight: 700;
  font-family: 'Segoe UI', 'Roboto', sans-serif;
  color: #3a2e1a;
  text-align: center;
  line-height: 1.5;
  letter-spacing: 0.5px;
  text-shadow: 0 1px 0 #fff, 0 0 2px rgba(90, 67, 22, 0.2);
  margin-bottom: 2rem;
}




/* dodatkowy akapit INDEX*/
.about-text {
  max-width: 800px;
  margin: 2rem auto;
  font-size: 1.2rem;
  line-height: 1.6;
  color: #5a4316;
  text-align: center;
}

.about-text .invitation {
  margin-top: 1.5rem;
  font-style: italic;
  font-weight: bold;
  color: #7a5a1f;
}


/* Życzenia Bożonarodzeniowe */
.zyczenia-boze-narodzenie {
  background-color: #fdf6ec;
  color: #5a4316;
  text-align: center;
  padding: 2rem 1rem;
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  font-weight: bold;
  font-style: italic;
  border: 2px dashed #e6cfa9;
  border-radius: 12px;
  margin: 2rem auto;
  max-width: 800px;
  background-color:  rgba(255, 255, 240, 0.5);
}


.mail {
  font-size: clamp(1.3rem, 2.2vw, 1.2rem);
  color: #5a4316;
  word-break: break-all; /* rozbijanie adresu na małych ekranach */
  text-decoration: none;
}

.mail:hover {
  text-decoration: none;
}


/* Tło strony na smartfony i na małe ekrany */
@media (max-width: 480px) {
  .tlo-spojne {
    background-image: url('Photo/tlo_mobile_640.jpeg');
    background-size: 100vh; /* dopasowanie do wysokości ekranu */
    background-repeat: no-repeat;
    background-position: top center;
    background-attachment: fixed;
    background-color: #fffaf2; /* fallback na pastelowy odcień */
    font-family: 'Poppins', sans-serif;
    color: #3a2e1a;
    margin: 0;
    padding: 0;
    line-height: 1.6;
  }
}

.hero,
.contact-section,
.price-section {
  background: transparent;
}

/* pseudo-element body::after dla iphone*/

@media (max-width: 480px) {
  body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    background-image: url('Photo/tlo_mobile_640.jpeg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center top;
  }

  body > * {
    position: relative;
    z-index: 1;
  }
}

@media (max-width: 1024px) {
  body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    background-image: url('Photo/tlo_mobile_640.jpeg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
  }

  body > * {
    position: relative;
    z-index: 1;
  }
}


@supports (-webkit-touch-callout: none) {
  body {
    background-attachment: scroll; /* zamiast fixed na iOS */
  }
}

/* Styl dla pozycji menu z długimi nazwami */
.menu-item a {
  display: inline-block;
  min-width: 120px; /* zapobiega ściskaniu do zera */ 
  word-break: break-word; /* łamie długie słowa */
}

@media (max-width: 480px) {
  .menu-item a {
    font-size: 0.85rem;
    padding: 0.4rem 0.6rem;
  }
}

/* Sekcja OMG Partner */
.omg-partner {
  background-color: rgba(255, 250, 242, 0.4); /* jasny beż z 40% kryciem */
  padding: 2rem;
  border-top: 2px solid #e6c36f;
  border-bottom: 2px solid #e6c36f;
  margin-bottom: 5rem; /* lub więcej, np. 5rem */
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}


.omg-wrapper {
  display: flex;
  align-items: center;
  gap: 2rem;
  max-width: 1000px;
  margin: auto;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;       /* zawija na małych ekranach */
  flex-direction: row;     /* wymusza poziomy układ */
}


/* Zdjęcie */
.omg-photo {
  width: 300px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  flex-shrink: 0;
  transition: transform 0.4s ease;
}

.omg-photo:hover {
  transform: scale(1.1); /* lub 1.1 dla mocniejszego efektu */
  cursor: pointer;

}

@media (max-width: 768px) {
  .omg-photo:hover {
    transform: none;
    box-shadow: none;
    cursor: default;
  }
}


/* OMG */
.omg-text {
  max-width: 400px;
  color: #3a2e1a;
  font-size: 1rem;
  flex-shrink: 0;
  text-align: center;
}

.omg-logo {
  display: block;
  height: 60px;
  margin: 0.5rem auto;
}


.omg-text h2 {
  margin-top: 0;
  font-size: 1.3rem;
}

.wloska-restauracja {
  margin: 1rem 0;
  line-height: 1.4;
  font-weight: 700; /* lub bold */
}

.omg-button {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  background-color: #f4c542;
  color: #3a2e1a;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
  transition: background-color 0.3s ease;
  cursor: pointer;

}

.omg-button:hover {
  background-color: #e0b030;
}


.overlay {
  pointer-events: none; /* nie blokuje kliknięć pod spodem */
}

img.omg-logo {
  padding: 0.4rem 0.8rem;
  height: 60px;
  vertical-align: middle;
}

.omg-logo {
  display: block;
  height: 60px;
  margin: 0.5rem auto;
}

.swiateczna-informacja {
  background-color: rgba(255, 250, 242, 0.4); /* jasny beż z 40% kryciem */
  color: #3a2e1a;
  font-size: 1.9rem;
  font-weight: 600;
  text-align: center;
  padding: 1rem;
  border: 1px solid #e6c36f;
  border-radius: 8px;
  margin-bottom: 2rem;
}

/*BLOG*/
.section {
  padding: 2rem;
  max-width: 1000px;
  margin: auto;
}

.blog-post {
  margin-bottom: 3rem;
  border-bottom: 1px solid #e6c36f;
  padding-bottom: 2rem;
}

.blog-post h3 {
  font-size: 1.8rem;   /* większy rozmiar czcionki */
  font-weight: bold;   /* pogrubienie */
  text-align: center;  /* wyśrodkowanie */
  margin-bottom: 1.5rem; /* odstęp pod nagłówkiem */
  color: #3a2e1a;      /* elegancki, ciemny kolor */
}

.blog-post p {
  line-height: 1.6;
  margin-bottom: 1rem;
}

.blog-post figure {
  text-align: center;
}

.blog-post img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.blog-post figcaption {
  font-size: 0.9rem;
  color: #555;
  margin-top: 0.5rem;
}


#blog h2 {
  font-size: 2.6rem;     /* większy rozmiar czcionki */
  font-weight: bold;     /* pogrubienie */
  text-align: center;    /* wyśrodkowanie */
  margin-bottom: 2rem;   /* odstęp pod nagłówkiem */
  color: #3a2e1a;         /* elegancki, ciemny kolor */
  margin-bottom: 1.5rem; /* odstęp pod nagłówkiem */
}

#blog .intro {
  line-height: 1.8;      /* większy odstęp między wierszami */
  margin-bottom: 2rem;   /* odstęp pod akapitem */
}

/* Styl dla zimowej notki */

.zimowa-notka {
  font-size: 1.4rem;       /* większa czcionka */
  font-weight: bold;       /* pogrubienie */
  color: #3a2e1a;          /* ciemniejszy kolor dla kontrastu */
  background-color: rgba(255, 251, 238, 0.9); /* jasne tło z lekką przezroczystością */
  padding: 1rem;
  border: 2px solid #e6c36f; /* złota ramka */
  border-radius: 8px;
  text-align: center;
  margin: 1.5rem 0;
}


.zimowa-notka {
  background-color: rgba(255, 250, 242, 0.4); /* jasny beż z 40% kryciem */
  animation: fadeIn 1s ease-in-out;
}


/*
@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}
*/

