


.powitalny-blok {
	background-color: #ffffff;
	padding: 30px 20px;
	border-radius: 8px;
	text-align: center;
}

.haslo {
	font-size: 20px;
	line-height: 1.5;
	margin-bottom: 15px;
}

.naglowek {
	font-size: 28px;
	font-weight: bold;
	line-height: 1.4;
	margin-bottom: 15px;
}

.podnaglowek {
	font-size: 16px;
	line-height: 1.6;
	margin-bottom: 25px;
}

.cta-button {
	display: inline-block;
	padding: 10px 20px;
	background-color: #d1a7d8; /* pastelowy fioletowo-różowy */
	color: #ffffff;
	text-decoration: none;
	border-radius: 4px;
	font-size: 14px;
}

#frontpage-widgets {
    margin-bottom: 60px;
}

/* Styl tylko dla stron ID 2886 i 5060,5121 */
.page-id-2886,
.page-id-5121,
.page-id-5060 {
    font-family: Arial, sans-serif;
}

/* Treść – ograniczenie szerokości i marginesy */
.page-id-2886 .entry-content,
.page-id-5121 .entry-content
.page-id-5060 .entry-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

/* Linki jako pastelowe przyciski */
.page-id-2886 .entry-content a,
.page-id-2886 .site-content a,
.page-id-5121 .entry-content a,
.page-id-5121 .site-content a,
.page-id-5060 .entry-content a,
.page-id-5060 .site-content a {
    display: inline-block;
    background-color: #d1a7d8; /* pastelowy różowo-fioletowy */
    color: #fff;
    padding: 12px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 16px;
    margin-top: 10px;
}

/* Brak efektów hover */
.page-id-2886 .entry-content a:hover,
.page-id-2886 .site-content a:hover,
.page-id-5121 .entry-content a:hover,
.page-id-5121 .site-content a:hover,
.page-id-5060 .entry-content a:hover,
.page-id-5060 .site-content a:hover {
    background-color: #d4a8d0;
}

/* Normalne listy z wcięciem */
.page-id-2886 ul,
.page-id-5121 ul,
.page-id-5060 ul {
    list-style-type: disc;
    margin-left: 30px;
    padding-left: 20px;
}

.page-id-2886 li,
.page-id-5121 li,
.page-id-5060 li {
    color: #333;
    margin-bottom: 10px;
}

/* Styl tylko dla konkretnych podstron */
.page-id-2886 p,
.page-id-2886 li,
.page-id-5121 p,
.page-id-5121 li,
.page-id-5060 p,
.page-id-5060 li {
    font-size: 16px;
    line-height: 1.5;
}

/* Opcjonalnie – dopracowanie wyglądu list */
.page-id-2886 ul,
.page-id-5121 ul,
.page-id-5060 ul {
    padding-left: 1.2em;
    margin-bottom: 1.5em;
}

.page-id-2886 li,
.page-id-5121 li,
.page-id-5060 li {
    margin-bottom: 0.5em;
}

/* Ukrycie znaczników przy pustych elementach listy */
.page-id-2886 li:empty::before,
.page-id-5121 li:empty::before,
.page-id-5060 li:empty::before {
    content: none;
}


/* Stylizacja kontenera cennika */
.pricing-section {
  max-width: 1100px !important;
  margin: 40px auto !important;
  padding: 0 20px !important;
  font-family: 'Segoe UI', 'Helvetica Neue', sans-serif !important;
}

/* Siatka cennika */
.pricing-grid {
  overflow: hidden !important;
  margin: 0 -10px !important;
}

/* Karty cennika */
.pricing-card {
  width: 31% !important;
  background: #fff7f4 !important;
  border: 2px solid #fad3c0 !important;
  border-radius: 16px !important;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05) !important;
  padding: 30px 20px !important;
  box-sizing: border-box !important;
  text-align: center !important;
  transition: transform 0.3s ease !important;
}

.pricing-card:hover {
  transform: scale(1.03) !important;
}

.pricing-card h3 {
  font-size: 22px !important;
  margin-bottom: 10px !important;
  color: #333 !important;
  font-weight: 600 !important;
}

.pricing-card .price {
  font-size: 30px !important;
  color: #d97355 !important;
  margin: 20px 0 !important;
  font-weight: 700 !important;
}

.pricing-card ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 20px 0 !important;
  font-size: 16px !important;
  color: #444 !important;
  line-height: 1.6 !important;
}

.pricing-card ul li {
  margin: 12px 0 !important;
}

.pricing-card a {
  display: inline-block !important;
  margin-top: 20px !important;
  padding: 12px 24px !important;
  background-color: #d97355 !important;
  color: white !important;
  text-decoration: none !important;
  border-radius: 6px !important;
  font-weight: bold !important;
  font-size: 16px !important;
  transition: background 0.3s ease !important;
}

.pricing-card a:hover {
  background-color: #bb5c41 !important;
}

/* Kontener cennika */
.pricing-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 40px 0;
  gap: 20px; /* Poprawiamy sposób dodawania przestrzeni między elementami */
  padding: 0 10px; /* Padding dodany dla lepszego wyśrodkowania */
}

/* Kolumny w cenniku */
.pricing-column {
  flex: 1 1 calc(33.33% - 20px); /* Ustalamy szerokość kolumny na 33.33% minus gap */
  background-color: #fdf9f5;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease;
}

/* Usunięcie marginesu po prawej stronie w ostatniej kolumnie */
.pricing-column:last-child {
  margin-right: 0;
}

/* Efekt hover dla kolumn */
.pricing-column:hover {
  transform: translateY(-5px);
}

/* Tytuł pakietu */
.package-title {
  font-size: 1.6em;
  color: #2c2c2c;
  margin-bottom: 10px;
}

/* Opis pakietu */
.package-description {
  font-size: 1em;
  color: #777;
  margin-bottom: 20px;
}

/* Ceny pakietów */
.price {
  font-size: 2em;
  color: #9b6e9b;  /* Zgaszony różowo-fioletowy */
  font-weight: bold;
  margin-bottom: 20px;
}

.price:hover {
  color: #7a4b7a;  /* Ciemniejszy odcień na hover */
}

/* Szczegóły pakietów (lista) */
.package-details {
  list-style: none; /* Usunięcie kropek z listy */
  padding: 0;
  margin: 0;
}

.package-details li {
  font-size: 1em;
  color: #444;
  margin-bottom: 10px;
}

/* Responsywność: Na mniejszych ekranach każda kolumna ma 100% szerokości */
@media (max-width: 900px) {
  .pricing-column {
    flex: 1 1 100%; /* Kolumny zajmują pełną szerokość ekranu */
    margin-bottom: 20px; /* Dodanie marginesu między kolumnami */
  }
}

/* Styl dla przycisków */
.inbound-button,
.ib-button,
a.inbound-button,
a.ib-button {
  border-radius: 25px !important;
  padding: 12px 25px;
}

section.no-results.not-found {
  display: none;
}

/* Stylizacja dla strony portfolio */
.page-template-template-portfolio .container,
.page-template-template-portfolio .site-content,
.page-template-template-portfolio .content-area,
.page-template-template-portfolio .entry-content,
.page-template-template-portfolio .row {
  max-width: 100vw !important;
  width: 100vw !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/* Rozwijanie podmenu przy najechaniu na cały przycisk nadrzędny */
.menu-item-has-children:hover > .sub-menu {
  display: block;
  visibility: visible;
  opacity: 1;
}

/* Ukryj oryginalny tekst stopki */
.site-info {
  display: none !important;
}

/* Dodaj własną stopkę z podziałem na linie */
.site-footer::after {
  content: "Katarzyna Szołdrowska • Studio On The Moon\A Twoja sesja noworodkowa Kraków\A czeka właśnie tu!";
  display: block;
  white-space: pre-line;
  text-align: center;
  font-size: 14px;
  color: #888;
  padding: 20px 10px;
  font-style: italic;
  line-height: 1.6;
}

.entry-content ul li:empty {
  list-style-type: none !important;
  margin-bottom: 1em;
  height: 1em;
}

img.full-mobile {
  width: 100%;
  max-width: 100%;
  display: block;
}

/* Tylko na ekranach do 768px (czyli telefony i małe tablety) */
@media (max-width: 768px) {
  img.full-mobile {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
  }
}

