/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Mar 08 2026 | 20:06:36 */
/* Ładowanie czcionek Google na WordPress.com Premium */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,700&family=Lato:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap');

/* Globalnie Lato + nagłówki Playfair */
body {
  font-family: 'Lato', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
  color: #1F2F2B;
}

h1, h2, h3, h4, h5, h6,
.section-title,
.hero-title,
.elementor-heading-title {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif !important;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

/* Paleta Medietura – luksusowa */
:root {
  /* Zielenie premium */
  --ziel-glowna: #1F3D36;      /* logo, nagłówki, CTA */
  --ziel-hover: #2E5E54;       /* hover, linki, przyciski */
  --ziel-jasna: #4F8A7A;       /* tła sekcji, akcenty */

  /* Róże eleganckie */
  --roz-glowny: #A44A6F;       /* badge, ikony, akcent */
  --roz-pastel: #C07A97;       /* delikatne tła */
  --roz-jasny:  #E9CBD6;       /* sekcje, karty */

  /* Neutrale */
  --tlo-gl: #FAFAF8;           /* główne tło */
  --tlo-sek: #F1F4F2;          /* sekcje oddzielające */
  --biel:    #FFFFFF;          /* karty, formularze */

  /* Teksty */
  --tekst-gl:  #1F2F2B;        /* główny */
  --tekst-pom: #6B7F78;        /* pomocniczy */
  
 
}

/* Globalne ustawienia tekstu i box modelu */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Lato', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--tekst-gl);
 /* background: linear-gradient(
    180deg,
    var(--tlo-gl) 0%,
    var(--tlo-sek) 45%,
    var(--roz-jasny) 100%
  );
	*/
	 /* powtarzalna grafika PNG jako tło strony 
  background-image: url('https://medietura.pl/wp-content/uploads/2026/02/tlo-poziom.png');
	  background-repeat: repeat-y;      powtarzanie TYLKO góra–dół */
  

  background-position: top center; /* trzyma obraz na środku w poziomie */
  background-size: 100% auto;           /* brak rozciągania na szerokość */
  background-color: #FAFAF8;       /* kolor pod spodem */
  line-height: 1.7;
}

/* Nagłówki – Playfair Display */
h1, h2, h3, h4, h5, h6,
.section-title,
.hero-title {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif !important;
  color: var(--ziel-glowna) !important;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

/* Rozmiary nagłówków */
h1, .hero-title {
  font-size: clamp(2.6rem, 5vw, 3.8rem);
  font-weight: 700;
}

h2, .section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
}

h3 {
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 500;
}

/* Tekst pomocniczy */
p, li, span {
  font-size: 1rem;
  color: var(--tekst-gl);
}

.muted,
.text-muted {
  color: var(--tekst-pom);
}

/* Elementor – wymuszenie Playfair na nagłówkach */
.elementor-heading-title {
  font-family: 'Playfair Display', serif !important;
  letter-spacing: -0.02em;
}

/* ===========================================
   LAYOUT GLOBALNY
============================================= */

.site,
body #page {
  min-height: 100vh;
}

/* Kontener główny */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===========================================
   HEADER STICKY
============================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250,250,248,0.96);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(111,175,155,0.15);
  padding: 16px 0;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.logo a,
.site-title a {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--ziel-glowna);
  text-decoration: none;
}

/* Menu główne */
.main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 28px;
}

.main-nav li {
  position: relative;
}

.main-nav a {
  text-decoration: none;
  font-weight: 900;
  color: var(--ziel-hover);
  font-size: 0.98rem;
  transition: color 0.25s ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--roz-glowny);
  transition: width 0.25s ease;
}

.main-nav a:hover {
  color: var(--roz-glowny);
}

.main-nav a:hover::after {
  width: 100%;
}

/* MOBILE header */
@media (max-width: 768px) {
  .site-header .container {
    flex-wrap: wrap;
  }
}

/* ===========================================
   SEK CJA HERO
============================================= */

.hero {
  background:
    radial-gradient(circle at top right, var(--roz-jasny) 0%, transparent 45%),
    radial-gradient(circle at bottom left, var(--ziel-jasna) 0%, transparent 45%),
    linear-gradient(
      180deg,
      var(--tlo-gl) 0%,
      var(--tlo-sek) 45%,
      var(--roz-jasny) 100%
    );
  padding: 80px 20px 70px;
  border-radius: 0 0 32px 32px;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 56px;
}

/* Kolumny hero – lewa tekst, prawa zdjęcie */
.hero-content {
  flex: 1 1 55%;
}

.hero-subtitle {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.86rem;
  color: var(--tekst-pom);
  margin-bottom: 10px;
}

.hero-title {
  margin: 0 0 16px;
}

.hero-lead {
  font-size: 1.05rem;
  color: var(--tekst-pom);
  margin-bottom: 26px;
}

/* Zdjęcie */
.hero-image-wrap {
  flex: 1 1 45%;
  display: flex;
  justify-content: center;
}

.hero-image {
 
  display: block;
  width: 100%;           /* zajmuje całą szerokość kontenera */
  height: auto;          /* wysokość liczy się proporcjonalnie */
  max-width: 400px;      /* górny limit, żeby nie rosło za bardzo na dużych 
 
}

/* Przyciski w hero */
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* Responsywność hero */
@media (max-width: 900px) {
  .hero-inner {
    flex-direction: column-reverse;
    text-align: center;
  }
  .hero-content {
    flex: 1 1 100%;
  }
  .hero-actions {
    justify-content: center;
  }
}

/* ===========================================
   PRZYCISKI PREMIUM
============================================= */
.wp-block-button__link.button,
.wp-block-button__link.btn-primary,
.wp-block-button__link,
.button,
a.button,
.btn-primary,
.elementor-button,
.wp-block-button__link {
  display: inline-block;
  background: var(--ziel-glowna);
  color: var(--biel) !important;
  padding: 14px 30px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.98rem;
  border: none;
  box-shadow: 0 12px 30px rgba(31,61,54,0.18);
  transition: all 0.3s ease;
}
.wp-block-button__link.button:hover,
.wp-block-button__link.btn-primary:hover,
.wp-block-button__link:hover,
.button:hover,
a.button:hover,
.btn-primary:hover,
.elementor-button:hover,
.wp-block-button__link:hover {
  background: var(--ziel-hover);
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(31,61,54,0.25);
}

/* Wariant secondary */
.button-secondary,
.btn-secondary {
  background: transparent;
  color: var(--roz-glowny) !important;
  border-radius: 14px;
  border: 1px solid var(--roz-glowny);
  box-shadow: none;
}

.button-secondary:hover,
.btn-secondary:hover {
  background: var(--roz-jasny);
  box-shadow: 0 10px 25px rgba(164,74,111,0.18);
}
/* PRZYCISKI GUTENBERGA – globalny styl Medietura */
.wp-block-button .wp-block-button__link,
.wp-element-button {
  background-color: var(--ziel-glowna) !important;
  color: #FFFFFF !important;
  border-radius: 14px !important;
  border: none !important;
  box-shadow: 0 12px 30px rgba(31,61,54,0.18);
  padding: 14px 30px;
  font-weight: 600;
  font-size: 0.98rem;
}

/* Hover */
.wp-block-button .wp-block-button__link:hover,
.wp-element-button:hover {
  background-color: var(--ziel-hover) !important;
  color: #FFFFFF !important;
  box-shadow: 0 16px 36px rgba(31,61,54,0.25);
  transform: translateY(-2px);
}

/* ===========================================
   SEKCJE I KARTY (Opinie, Oferta)
============================================= */

.section {
  padding: 70px 20px;
}

.section--alt {
  background: var(--tlo-sek);
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  margin: 0 0 42px;
}

/* Grid kart */
.section-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.card {
  background: var(--biel);
  border-radius: 20px;
  padding: 36px 30px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(31,61,54,0.08);
  transition: all 0.35s ease;
}

.card--soft {
  background: linear-gradient(135deg, var(--biel) 0%, var(--roz-jasny) 100%);
}

.card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 50px rgba(31,61,54,0.15);
}

.card-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: rgba(79,138,122,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ziel-jasna);
  font-size: 1.6rem;
}

.card h3 {
  margin: 0 0 12px;
}

.card p {
  margin: 0 0 18px;
  color: var(--tekst-pom);
}

/* Nawigacja kropek (np. slider opinii) */
.dots-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 22px;
}

.dots-nav span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(31,61,54,0.2);
}

.dots-nav span.is-active {
  width: 20px;
  background: var(--ziel-glowna);
}

/* ===========================================
   STOPKA
============================================= */

.site-footer {
  background: var(--tlo-sek);
  padding: 40px 20px 20px;
  margin-top: 60px;
  border-top: 1px solid rgba(111,175,155,0.25);
}

.site-footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--ziel-glowna);
}

.footer-meta {
  font-size: 0.9rem;
  color: var(--tekst-pom);
}

/* Ikony social */
.footer-social {
  display: flex;
  gap: 14px;
}

.footer-social a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--biel);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--roz-glowny);
  text-decoration: none;
  font-size: 1.1rem;
  box-shadow: 0 6px 16px rgba(31,61,54,0.12);
  transition: all 0.25s ease;
}

.footer-social a:hover {
  background: var(--roz-jasny);
  transform: translateY(-2px);
}

/* ===========================================
   RESPONSYWNOŚĆ OGÓLNA
============================================= */

@media (max-width: 768px) {

  .section {
    padding: 50px 16px;
  }

  .section-cards {
    grid-template-columns: 1fr;
  }

  .site-header .container {
    gap: 16px;
  }

  .main-nav ul {
    gap: 18px;
    font-size: 0.94rem;
  }
	/* Nagłówki */
  h1, h2, h3, h4, h5, h6,
  .section-title,
  .hero-title,
  .elementor-heading-title {
    color: #1F3D36 !important;   /* ciemna zieleń brand */
  }
}
