/* --- Reset és alapok --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
  color: #333;
  background: #fff;
}
html {
  scroll-behavior: smooth;
}
body, button, input, select, textarea {
  font-family: "Montserrat", sans-serif;
}
/* --- Navigáció --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
  z-index: 1000;
}

.site-nav {
  display: flex;
  justify-content: center;
  padding: 1rem;
}

.site-nav a {
  color: white;
  margin: 0 1.5rem;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 0.5px;
  transition: color 0.3s;
  text-shadow: 0 1px 3px rgba(0,0,0,0.6);
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.05em;
}

.site-nav a:hover {
  color: #ffd700;
}

/* --- Hero szakasz --- */
/* Nagy háttér a teljes hero mögött */
.hero {
  position: relative;
  z-index: 1;
  background: url('../images/hero.webp') center/cover no-repeat; /* <<< EZ kapja a képet */
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 120px; /* ne fusson a fix menü alá */
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.3); /* overlay, hogy olvasható legyen a szöveg */
  z-index: 0;
}

.hero-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 2rem;
  position: relative;
  z-index: 2; /* előtérben marad */
}

.hero-image img {
  max-width: 350px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Szövegdoboz – nincs külön háttérképe! */
.hero-text {
  text-align: center;
  max-width: 600px;
  padding: 2rem;
  border-radius: 12px;
  color: #fff;
  background: rgba(0,0,0,0.4); /* csak egy áttetsző sötét háttér */
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

.hero-text h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.hero-text p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.hero-text .btn {
  align-self: center; 
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #c68c8c;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}
.service-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
    max-width: 100%;
  box-sizing: border-box; /* nagyon fontos, hogy padding ne tolja ki */
}
.services-link {
  text-align: center;
  margin-top: 2rem;
}

.services-link .btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #c68c8c;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s, transform 0.2s;
}

.services-link .btn:hover {
  background-color: #a66a6a;
  transform: translateY(-2px);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  padding: 1.5rem;
  text-align: center;
}
.card .icon {
  background: #fcefee;            /* halvány rózsaszín kör */
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.card .icon i {
  font-size: 2rem;
  color: #c68c8c;                /* ikon színe */
}
.local-focus {
  background: #fcefee;
  padding: 1.5rem;
  text-align: center;
  font-weight: 600;
  font-size: 1.2rem;
  margin-top: 2rem;
  border-radius: 8px;
}

.more-link {
  font-weight: 600;
  color: #2c3e50;
  text-decoration: none;
}
.more-link:hover {
  color: #d4a017;
}

/* --- Bemutatkozó szöveges blokk (Főoldal) --- */
.intro {
  background: #f9f9f9;
  padding: 5rem 1rem;
}

.intro .container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.intro h2 {
  font-size: 2.2rem;
  margin-bottom: 2.5rem;
  color: #2c3e50;
}

.intro p {
  font-size: 1.3rem;
  line-height: 2;
  color: #444;
  margin-bottom: 2rem;
}
.intro .lead {
  font-size: 1.4rem;
  line-height: 2.05;
}

/* Aláírás */
.signature {
  font-family: 'Dancing Script', cursive;
  font-size: 2.4rem;
  font-weight: 700;
  color: #222;
  margin-top: 3rem;
}

/* --- Általános konténer --- */
.container {
  max-width: 1200px;
  margin: 3rem auto;
  padding: 0 1rem;
}

.container h1, .container h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 600;
  color: #2c3e50;
}

.container p {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  color: #444;
}

.container img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 1rem;
}

/* --- Lábléc --- */
.site-footer {
  background: #f5f5f5;
  color: #777;
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
  margin-top: 3rem;
}

/* --- Idézet blokk (Főoldal) --- */
.quote-section {
  position: relative;
  margin: 5rem 0;
}

.quote-background img {
  width: 100%;
  height: 70vh;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.quote-box {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.6);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 4rem;
  text-align: center;
  border-radius: 12px;
 }

.quote-text {
  font-family: 'Dancing Script', cursive;
  font-size: 4rem;
  line-height: 1.3;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 2rem;
  max-width: 1100px;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.15);
}

.quote-author {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
  color: #333;
  letter-spacing: 0.3rem;
}

/* --- About Hero --- */
.about-hero {
  background: url('../images/about-hero.webp') center/cover no-repeat;
  height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding-top: 100px;
}
.about-hero::before {
  content: "";
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.4);
}
.about-hero-inner {
  position: relative; z-index: 1; color: #fff; text-align: center;
}
.about-hero-inner h1 {
  font-size: 3rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
}

/* --- About: Szöveg + portré --- */
.about-content .container {
  max-width: 1200px; margin: 0 auto;
}
.about-flex {
  display: flex; align-items: flex-start; gap: 4rem; margin-top: 3rem;
}
.about-text {
  flex: 3;
  font-size: 1.2rem;
  line-height: 1.9;
  color: #444;
}
.about-text p { margin-bottom: 1.2rem; }
.about-image { flex: 2; text-align: right; }
.about-image img {
  width: 100%; max-width: 600px;
  border-radius: 16px; box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* --- About: Két oszlop --- */
.two-column-sections {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 1rem;
  display: flex;
  gap: 3rem;
  align-items: flex-start;
}
.two-column-sections section { flex: 1; }
.two-column-sections h2 {
  font-size: 1.8rem; margin-bottom: 1rem; color: #2c3e50;
}
.two-column-sections ul { list-style: disc inside; margin-top: 0.5rem; }
.two-column-sections li {
  font-size: 1.1rem; line-height: 1.8; margin-bottom: 0.5rem;
}
.two-column-sections a { color: #2c3e50; text-decoration: underline; }
.two-column-sections a:hover { color: #d4a017; }

/* --- Illusztrációs elválasztó --- */
.illustration-divider {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;                 /* távolság a 3 ikon között */
  margin: 2.5rem 0 3.5rem;
  padding: 2rem 0;           /* csík magassága */
  background: #f9f9f9;       /* világos szürke háttér */
}
.illustration-divider img,
.illustration-divider svg {
  max-width: 120px; width: 100%; height: auto; display: inline-block;
}

/* --- Vélemények --- */
.testimonials.section-light { background: #fff; }
.testimonials.section-gray { background: #f9f9f9; }
.testimonials .container {
  max-width: 1200px; margin: 0 auto;
}
.testimonials h2 {
  font-size: 2rem; margin-bottom: 2rem; color: #2c3e50; text-align: center;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.testimonial {
  background: #f9f9f9;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.testimonial p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #444;
  text-align: left;
}
.testimonial span {
  display: block;
  margin-top: 0.75rem;
  font-weight: 600;
  color: #2c3e50;
}


/* --- Quote fix --- */
.quote-section {
  position: relative;
  z-index: 0;
}

.quote-background img {
  width: 100%;
  display: block;
  position: relative;
  z-index: -1; /* a háttérkép mindig lejjebb legyen */
}
/* --- Services hero --- */
.services-hero {
  background: url('../images/serviceshero.jpg') center/cover no-repeat;
  min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding-top: 80px;
}
.services-hero::before {
  content: ""; position: absolute; inset: 0; background: rgba(0,0,0,0.35);
}
.services-hero-inner {
  position: relative; z-index: 1; text-align: center; color: #fff; padding: 1.5rem;
}
.services-hero-inner h1 { font-size: 2.2rem; margin-bottom: 0.5rem; }
.services-hero-inner p { font-size: 1.1rem; max-width: 900px; margin: 0 auto; }

/* --- Package overview --- */
.package-overview h2 { text-align: center; }
.package-cards {
 display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 0 auto;
  padding: 0 1rem;
  box-sizing: border-box;
}
.package-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.package-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}
.pkg-icon {
  width: 72px; height: 72px; border-radius: 50%;
  background: #fcefee; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
}
.pkg-icon i { font-size: 1.8rem; color: #c68c8c; }
.package-card h3 { margin: 0.25rem 0 0.5rem; color: #2c3e50; }
.package-card p { color: #444; }
.btn-outline {
  display: inline-block; margin-top: 1rem; padding: 0.6rem 1rem;
  border: 2px solid #c68c8c; color: #c68c8c; border-radius: 8px; text-decoration: none; font-weight: 600;
  transition: background 0.25s, color 0.25s, transform 0.2s;
}
.btn-outline:hover { background: #c68c8c; color: #fff; transform: translateY(-2px); }

/* --- Accordion (details) --- */
.packages-details h2 { text-align: center; margin-top: 3rem; }
.pkg-accordion {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  margin: 1rem 0;
  overflow: hidden;
}
.pkg-accordion > summary {
  cursor: pointer;
  list-style: none;
  padding: 1rem 1.25rem;
  font-weight: 700;
  color: #2c3e50;
  position: relative;
}
.pkg-accordion > summary::marker { display: none; }
.pkg-accordion > summary::after {
  content: "\f078"; /* fa-chevron-down */
  font-family: "Font Awesome 6 Free"; font-weight: 900;
  position: absolute; right: 1rem; top: 1rem; transition: transform .2s;
}
.pkg-accordion[open] > summary::after { transform: rotate(180deg); }
.pkg-accordion .pkg-body { padding: 0 1.25rem 1.25rem; }
.pkg-accordion ul { margin-left: 1rem; padding-left: 0.5rem; }
.pkg-accordion li { margin: 0.4rem 0; line-height: 1.7; }

/* --- Doula stats (számkártyák) --- */
.doula-stats h2 { text-align: center; margin-top: 3rem; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem; margin-top: 1rem;
}
.stat-card {
  background: #f9f9f9;
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.stat-num {
  font-size: 2rem; font-weight: 800; color: #2c3e50; margin-bottom: 0.25rem;
}
.stats-note { text-align: center; color: #777; margin-top: 0.5rem; }

/* --- Topics (témasvédasztal) --- */
.topics h2 { text-align: center; margin-top: 3rem; }
.topics-acc {
  background: #fff; border-radius: 12px; box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  padding: 0.75rem 1rem; margin-top: 1rem;
}
.topics-acc > summary { cursor: pointer; font-weight: 700; color: #2c3e50; }
.topics-list { margin: 1rem 0 0 1.25rem; }
.topics-list li { margin: 0.4rem 0; }
.topics-note { color: #777; margin-top: 0.5rem; }

/* --- CTA --- */
.services-cta {
  background: #fcefee; text-align: center; padding: 2.5rem 1rem; margin-top: 3rem;
}
.services-cta h2 { margin-bottom: 1rem; }
.services-cta .btn {
  display: inline-block; padding: 0.75rem 1.5rem; background: #c68c8c; color: #fff;
  border-radius: 8px; text-decoration: none; font-weight: 700;
}
/* --- Doula stats rövid blokk --- */
.doula-stats-home {
  margin-top: 3rem;
  text-align: center;
}

.stats-grid-home {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}

.stat-card {
  background: #f9f9f9;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: #2c3e50;
  margin-bottom: 0.5rem;
}

.stats-note {
  font-size: 0.9rem;
  color: #777;
  margin-top: 1rem;
}
.mini-testimonials {
  text-align: center;
  max-width: 1000px;   /* vagy amekkora jó */
  margin: 0 auto;      /* középre igazítja a teljes szekciót */
}
.mini-testimonials-grid {
display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 900px;   /* ne legyen túl széles */
  margin: 0 auto;     /* középre igazítás */
  justify-items: center; /* minden oszlop tartalma középre kerül */
}
.mini-testimonials blockquote {
  background: #f9f9f9;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.05);
  font-style: italic;
  position: relative;
}

.mini-testimonials blockquote i {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 1.2rem;
  color: #c68c8c;
}

.mini-testimonials footer {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: #666;
}
.testimonial-slider {
  position: relative;
  overflow: hidden;
  max-width: 600px;
  margin: 0 auto;
}

.testimonial-slider .slide {
  display: none;
  text-align: center;
}

.testimonial-slider .slide.active {
  display: block;
  animation: fadeIn 0.6s ease;
}

.slider-controls {
  text-align: center;
  margin-top: 1rem;
}

.slider-controls .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 5px;
  background: #ccc;
  border-radius: 50%;
  cursor: pointer;
}

.slider-controls .dot.active {
  background: #c68c8c;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}



.stats-infographic {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
  text-align: center;
}
.doula-stats {
  display: grid;
  
  gap: 2rem;
  margin-top: 2rem;
  
    grid-template-columns: repeat(3, 1fr); /* 3 oszlop, 6 kártya = 2 sor */
  
}

.stat-item {
  background: #fff;
  padding: 1.5rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

.stat-item i {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: #c68c8c;
}

.stat-num {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  color: #333;
}



.image-text {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin: 3rem 0;
  }

.text-col {
  flex: 1.2;
}
.image-col {
  flex: 0.8;   /* kisebb, mint a szöveg */
}
.image-text .text-col {
  flex: 1.2;   /* nagyobb teret kapjon a szöveg */
}
.image-text img {
   max-height: 250px;   /* eddigi 300px helyett */
  width: auto;
  object-fit: cover;
  border-radius: 12px;  /* barátságosabb sarkok */
}
.image-text-section.alt .image-text {
  flex-direction: row-reverse;
}
.cta-button {
  display: inline-block;
  background: #c68c8c;
  color: #fff;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 3px 8px rgba(0,0,0,0.2);
  transition: background 0.3s ease;
}
.cta-button:hover {
  background: #a86c6c;
}

.topics-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.topics-list li {
  margin: 0.6rem 0;
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  line-height: 1.4;
}

.topics-list i {
  color: #c68c8c;  /* fő szín, harmonizál a többi elemmel */
  margin-top: 0.25rem; /* kicsit középre kerül a szöveghez képest */
}

/* --- Egységesített Quote blokk --- */

.quote-section {
  position: relative;
  width: 100%;
  margin: 5rem 0;
  overflow: hidden;
}

.quote-background {
  position: relative;
  width: 100%;
}

.quote-background img {
  width: 100%;
  height: 70vh;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}

.quote-box {
  position: absolute;
  inset: 0; /* top:0; left:0; width:100%; height:100%; */
  background: rgba(255, 255, 255, 0.7);
  display: flex;
  flex-direction: column;
  justify-content: center; /* VERTIKÁLIS közép */
  align-items: center;     /* HORIZONTÁLIS közép */
  padding: 2rem;
  text-align: center;
  box-sizing: border-box;
  border-radius: 12px;
}

.quote-text {
  font-family: 'Dancing Script', cursive;
  font-size: 4rem;
  line-height: 1.4;
  margin-bottom: 1rem;
  color: #1a1a1a;
}

.quote-author {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
  letter-spacing: 0.1rem;
}

.fade-in {
  opacity: 0;
  transform: none;
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ha van JS (head-ben betöltöd a class-t), akkor animálunk */
.js .fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.js .fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}


.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  margin-top: 3rem;
}

.contact-item {
  background: #fff;
  padding: 1.5rem 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

.contact-item i {
  font-size: 1.5rem;
  color: #c68c8c;
}

.contact-item a {
  color: #333;
  font-weight: 600;
  text-decoration: none;
}

.contact-item a:hover {
  color: #c68c8c;
}
.contact-hero {
  background: url('../images/contact-hero.webp') center/cover no-repeat !important;
  min-height: 60vh;  /* kisebb, mint a főoldali hero */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

.contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.3); /* overlay, hogy a szöveg olvasható legyen */
}

.contact-hero .hero-inner {
  position: relative;
  z-index: 1;
  color: #fff;
  text-shadow: 0 2px 6px rgba(0,0,0,0.5);
  text-align: center;
  font-size:1.6rem
}
/* FAQ hero */
.gyik-hero {
  background-image: url("../images/gyik-hero.webp");
  background-size: cover;
  background-position: center bottom;
  color: #fff;
  position: relative;
  min-height: 80vh;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding-bottom: 6rem;
  text-align: center;
  overflow: hidden;
}
.gyik-hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1;
}

.gyik-hero .hero-inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 3rem;
  backdrop-filter: blur(6px);
  background: rgba(0, 0, 0, 0.2);
  border-radius: 16px;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.25);
  animation: fadeInUp 1.5s ease forwards;
  opacity: 0;
}


.gyik-hero h1 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
}

/* Szöveg olvashatóbb, nagyobb sortávval */
.gyik-hero p {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 0.8rem;
}

.gyik-hero .hero-inner p {
  display: block;
  max-width: 650px;
  margin: 0.5rem auto;
  color: #f9f9f9;
  line-height: 1.6;
}


/* FAQ Section */
.faq {
  padding: 4rem 2rem;
}

.faq h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
}

.accordion {
  max-width: 900px;
  margin: 0 auto;
}

.accordion-item {
  border-bottom: 1px solid #e0e0e0;
}

.accordion-header {
  width: 100%;
  text-align: left;
  background: #f9f9f9;
  padding: 1rem 1.2rem;
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  outline: none;
  cursor: pointer;
  transition: background 0.3s ease;
}

.accordion-header:hover {
  background: #f1f1f1;
}

.accordion-header.active {
  background: #e7f3ea;
  color: #2a5934;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: #fff;
  padding: 0 1.2rem;
}

.accordion-content p {
  padding: 1rem 0;
  line-height: 1.6;
  color: #444;
}

/* CTA Section */
.faq-cta {
  text-align: center;
  background: #f9f9f9;
  padding: 3rem 2rem;
}

.faq-cta h3 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.faq-cta p {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  color: #555;
}

.faq-cta .btn {
  display: inline-block;
  padding: 0.8rem 1.6rem;
  background: #2a5934;
  color: #fff;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.faq-cta .btn:hover {
  background: #3d7a4c;
}
.mit-kapsz {
  background-color: #faf8f6;
  padding: 4rem 1.5rem;
  text-align: center;
}

.mit-kapsz h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #44322b;
}

.mit-kapsz-list {
  list-style: none;
  max-width: 800px;
  margin: 2rem auto;
  padding: 0;
  text-align: left;
}

.mit-kapsz-list li {
  font-size: 1rem;
  margin-bottom: 1.2rem;
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  line-height: 1.6;
}

.mit-kapsz-list i {
  color: #a47d63;
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.mit-kapsz .closing {
  font-style: italic;
  margin-top: 2rem;
  font-size: 1.05rem;
}

.debrecen-support {
  background-color: #fff;
  padding: 4rem 1.5rem;
  text-align: center;
}

.debrecen-support h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: #5b4035;
  margin-bottom: 1.5rem;
}

.debrecen-support p {
  max-width: 750px;
  margin: 0 auto 1rem;
  line-height: 1.7;
  font-size: 1rem;
  color: #4a3d37;
}

/* --- Rövid vélemény előnézet (Home oldal) --- */
.testimonial-preview {
  background-color: #faf7f5;
  padding: 4rem 1rem;
  text-align: center;
  border-top: 1px solid #eee;
}

.testimonial-preview .testimonial-quote {
  font-style: italic;
  font-size: 1.3rem;
  color: #444;
  margin-bottom: 1.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.testimonial-preview footer {
  color: #777;
  font-weight: 600;
  margin-top: 0.5rem;
}

.testimonial-btn .btn-primary {
  background-color: #e3b5ac;
  color: #fff;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.testimonial-btn .btn-primary:hover {
  background-color: #d89a93;
}

/* --- További olvasnivalók blokk (GYIK után) --- */
.extra-reading {
  background-color: #faf7f5;
  padding: 4rem 1rem;
  text-align: center;
}

.extra-reading h2 {
  font-size: 2rem;
  color: #444;
  margin-bottom: 1rem;
}

.extra-reading .intro-text {
  max-width: 700px;
  margin: 0 auto 2.5rem auto;
  color: #666;
  line-height: 1.7;
}

.reading-cards {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  max-width: 1000px;
  margin: 0 auto;
}

.reading-card {
  background-color: #fff;
  padding: 1.8rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  text-align: left;
  transition: transform 0.3s ease;
}

.reading-card:hover {
  transform: translateY(-5px);
}

.reading-card h3 {
  color: #c27a7a;
  margin-bottom: 0.8rem;
  font-size: 1.2rem;
}

.reading-card p {
  color: #555;
  line-height: 1.6;
}

.hero-articles {
  background: url('images/articles-hero.webp') center/cover no-repeat;
  padding: 8rem 1rem;
  text-align: center;
  color: #fff;
  position: relative;
}

.hero-articles::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.hero-articles .hero-content {
  position: relative;
  z-index: 1;
}

.hero-articles h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.articles-grid {
  padding: 4rem 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.articles-grid article {
  background: #fff;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.articles-grid article:hover {
  transform: translateY(-5px);
}

.articles-grid h2 a {
  color: #a05a6d;
  text-decoration: none;
}

.articles-grid h2 a:hover {
  text-decoration: underline;
}
.hero-article {
  background-size: cover;
  background-position: center;
  position: relative;
  color: #fff;
  text-align: center;
  padding: 7rem 1rem;
}

.hero-article::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.hero-article .hero-content {
  position: relative;
  z-index: 2;
}

.article-content {
  padding: 4rem 1rem;
  background: #fff;
}

.article-content .container {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
  font-size: 1.05rem;
  color: #444;
}

.article-content h2 {
  color: #a05a6d;
  margin-top: 2rem;
}

.article-content a.btn-secondary {
  display: inline-block;
  margin-top: 2rem;
}
.articles-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 4rem auto;
}

.article-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.article-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 25px rgba(0,0,0,0.08);
}

.article-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.article-card h2 {
  font-size: 1.25rem;
  margin: 1rem;
}

.article-card p {
  margin: 0 1rem 1.5rem;
  color: #555;
}

.article-card a {
  color: #b86b77;
  text-decoration: none;
}

.btn-secondary {
  display: inline-block;
  margin-top: 1rem;
  color: #a05a6d;
  font-weight: 600;
  text-decoration: none;
}

.messenger-contact {
  text-align: center;
  margin-top: 3rem;
}

.messenger-contact p {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: #4a3b33;
}

.messenger-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #0084ff;
  color: white;
  padding: 12px 20px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.messenger-button:hover {
  background-color: #006fe6;
  transform: translateY(-2px);
}

.messenger-button img {
  width: 22px;
  height: 22px;
}
/* --- Floating Messenger Button --- */
.floating-messenger {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background-color: #0084ff;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  z-index: 1000;
}

.floating-messenger:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 14px rgba(0,0,0,0.25);
}

.floating-messenger img {
  width: 28px;
  height: 28px;
}


@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* --- Testimonial gomb új dizájn --- */
.testimonial .read-more {
  background-color: #c68c8c;
  color: #fff;
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 1rem;
  display: inline-block;
}

.testimonial .read-more:hover {
  background-color: #a66a6a;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}
@media screen and (max-width: 1024px) {
  .mobile-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #ede3e1; /* gombjaid világos tónusához illeszkedve */
    z-index: 1000;
    border-bottom: 1px solid #d6c2be;
  }

  .mobile-header .header-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
    position: relative;
  }

  .mobile-header .site-title {
    font-family: "Montserrat", sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #5b3b34;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }

  .menu-toggle {
    position: absolute;
    left: 15px;
    background: none;
    border: none;
    color: #a47d63;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
  }

  .mobile-nav {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    height: calc(100vh - 60px);
    background-color: #ede3e1;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .mobile-nav.active {
    display: flex;
  }

  .mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
  }

  .mobile-nav li {
    margin: 1.2rem 0;
  }

  .mobile-nav a {
    text-decoration: none;
    font-size: 1.2rem;
    color: #5b3b34;
    font-weight: 500;
  }

  .mobile-nav a:hover,
  .mobile-nav a.active {
    color: #a47d63;
  }

  body {
    padding-top: 60px; /* hogy ne takarja el a fix header */
  }
}
/* ==== MOBIL NAVBAR – Motherseed stílus ==== */
@media screen and (max-width: 1024px) {
  /* Eredeti navbar elrejtése */
  header.site-header,
  nav.site-nav {
    display: none !important;
  }

  /* Új mobil header */
  .mobile-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #ede3e1; /* halvány rózsás árnyalat */
    z-index: 1000;
    border-bottom: 1px solid #d6c2be;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
  }

  .mobile-header .header-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
    position: relative;
	width:100%
  }

  .mobile-header .site-title {
    font-family: "Montserrat", sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #5b3b34;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }

  /* Menü gomb (bal oldali + jel) */
  .menu-toggle {
    position: absolute;
    left: 15px;
    background: none;
    border: none;
    color: #a47d63; /* gombok színe */
    font-size: 2.2rem;
    line-height: 1;
    cursor: pointer;
  }

  .plus-icon {
    transition: transform 0.3s ease;
  }

  .mobile-nav {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    height: calc(100vh - 60px);
    background-color: #ede3e1;
    flex-direction: column;
    justify-content: center;
    align-items: center;
	font-size:2rem;
  }

  .mobile-nav.active {
    display: flex;
  }

  .mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
  }

  .mobile-nav li {
    margin: 1.5rem 0;
  }

  .mobile-nav a {
    text-decoration: none;
    font-size: 1.3rem;
    color: #5b3b34;
    font-weight: 500;
    letter-spacing: 0.03em;
  }

  .mobile-nav a:hover,
  .mobile-nav a.active {
    color: #a47d63;
  }

  /* Tartalom eltolása, hogy ne takarja el a header */
  body {
    padding-top: 60px;
  }
}

/* ==== DESKTOP ====
   Mobil header rejtése nagyobb kijelzőn */
@media screen and (min-width: 1025px) {
  .mobile-header {
    display: none !important;
  }
}

/* --- CTA gomb és olvasnivalók egységes megjelenése --- */
.faq-cta {
  text-align: center;
  background-color: #f9f6f4;
  padding: 4rem 1rem;
}

.faq-cta h3 {
  font-size: 1.8rem;
  color: #5b3b34;
  margin-bottom: 1rem;
}

.faq-cta p {
  font-size: 1.1rem;
  color: #5b3b34;
  margin-bottom: 2rem;
}

.btn-primary {
  background-color: #e3b5ac;;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.8rem 1.8rem;
  border-radius: 2rem;
  transition: background-color 0.3s ease;
}

.btn-primary:hover {
  background-color: #d89a93;
}



/* --- Cikk kártyák --- */
.article-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.article-card {
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  padding: 1.5rem;
  transition: transform 0.3s ease;
}

.article-card:hover {
  transform: translateY(-5px);
}

.article-card h3 {
  margin-bottom: 0.8rem;
  color: #5b3b34;
}

.article-card a {
  color: #5b3b34;
  text-decoration: none;
}

.article-card a:hover {
  text-decoration: underline;
}

.article-card p {
  color: #5b3b34;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* --- Középre igazított gomb --- */
.center-btn {
  text-align: center;
  margin-top: 2rem;
}
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  align-items: start;
}
/* Ne legyen plusz szélesség a gyerekeken */
.video-card, .video-figure { margin: 0; }
.video-play img, .video-card iframe { width: 100%; display: block; aspect-ratio: 16/9; object-fit: cover; }

/* Kártya megjelenés – kerekített, árnyék, mint a dobozaid */


/* Gomb + kép *
.video-card img {
  width: 100%;
  aspect-ratio: 16 / 9;   /* egységes kártyamagasság */
  object-fit: cover;
  display: block;
  transition: transform .25s ease;
}

.video-card{
  background:#fff;
  border-radius:14px;
  box-shadow:0 10px 25px rgba(0,0,0,.08);
  overflow:hidden;
}
.video-figure{ margin:0; }
.video-play{ all:unset; display:block; width:100%; cursor:pointer; position:relative; }
.video-play img{ width:100%; aspect-ratio:16/9; object-fit:cover; display:block; transition:transform .25s ease; }
.video-card:hover img{ transform:scale(1.02); }

/* Play jelvény középen */
.play-badge{ position:absolute; left:50%; top:50%; transform:translate(-50%,-50%); pointer-events:none; }

/* Képaláírás */
.video-caption{
  padding:.75rem 1rem;
  text-align:center;
  font-size: 1.5rem;
  line-height:1.4;
  color:#4b4b4b; /* igazítsd a palettádhoz */
}

.two-column-sections h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.two-column-sections li {
    font-size: 1.5rem;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.services-overview .services-link{
     display: flex;
	flex-direction: row;
    gap: 20px;               /* vízszintes távolság */
  }
  .services-overview .services-link .btn{
    flex: 1 1 0;             /* egyforma szélesség */
    text-align: center;
  }
  
  .services-overview .services-link .btn{
  display: inline-block;
  padding: 12px 18px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: transform .08s ease, box-shadow .08s ease, filter .15s ease;
}

/* Fallback színek (minden böngésző): két közeli árnyalat */
.services-overview .services-link .btn:first-child{
  background: #c68c8c;  /* sötétebb lila */
  color: #fff;
  /*border: 1px solid #6b428c;*/
}
.services-overview .services-link .btn:last-child{
  background: #CFA39A;  /* kicsit világosabb, azonos tónus */
  color: #fff;
/*  border: 1px solid #7b559c; */
}
/* Nav elrendezés */
.site-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Nyelvváltó szeparátor (külön elem, nem ::before) */
.nav-sep {
  display: inline-block;
  width: 1px;
  height: 1.25em;
  background: currentColor;
  opacity: .25;
  margin-left: .5rem;
  margin-right: .75rem;
}

/* Nyelvváltó gomb – egységes „pill” */
.lang-switch {
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .4rem .9rem;
  border: 1px solid currentColor;
  border-radius: 9999px;
  line-height: 1;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

/* Ikon igazítás */
.lang-switch .fa-solid {
  font-size: 0.95em;
  line-height: 1;
}

/* Hover/Focus */
.lang-switch:hover,
.lang-switch:focus-visible {
  background: rgba(0,0,0,.06);
  outline: none;
}

/* (opcionális) sötét mód finom háttér */
@media (prefers-color-scheme: dark) {
  .lang-switch:hover,
  .lang-switch:focus-visible {
    background: rgba(255,255,255,.08);
  }
}

/* Ha volt korábban pseudo-elem:
   kapcsold ki, hogy ne legyen belső vonal */
.site-nav .lang-switch::before,
.site-nav .lang-switch::after {
  content: none !important;
}
