/* ============================================================
   Híd Köztünk Egyesület — Stylesheet
   ============================================================ */

/* ── CSS VÁLTOZÓK ── */
:root {
  --sand:       #FFFFFF;
  --warm:       rgb(98, 143, 126);
  --terracotta: #007F6A;
  --rust:       #007F6A;
  --sage:       #7A9E7E;
  --deep:       #002922;
  --cream:      #FBF7EE;
}

/* ── RESET & ALAP ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
.logo {
  width: 100%;
  max-width: 420px;
  display: block;

}

body {
  font-size: larger;
  font-family: "Bodoni Moda", serif;
  background: var(--cream);
  color: var(--deep);
  overflow-x: hidden;
  font-weight: bold;
}

/* ── NAVIGÁCIÓ ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 4rem;
  background: rgba(251, 247, 238, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--warm);
}

.nav-logo {
  font-family: 'Fraunces', serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--terracotta);
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--deep);
  font-size: 0.9rem;
  font-weight: 500;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.nav-links a:hover {
  opacity: 1;
  color: var(--terracotta);
}

/* ── HERO ── */
.hero {
  min-height: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 8rem 4rem 4rem;
  background: var(--sand);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, #D4A97A33 0%, transparent 70%);
  top: -100px;
  right: -100px;
  animation: pulse 6s ease-in-out infinite;
}

.hero-text {
  z-index: 1;
}

.hero-tag {
  display: inline-block;
  background: var(--terracotta);
  color: white;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 2rem;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.8s ease both;
}

.hero h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.8s ease 0.15s both;
}

.hero h1 em {
  font-style: italic;
  color: var(--terracotta);
}

.hero p {
  font-size: 1.1rem;
  line-height: 1.7;
  opacity: 0.75;
  max-width: 460px;
  margin-bottom: 2rem;
  animation: fadeUp 0.8s ease 0.3s both;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeUp 0.8s ease 0.45s both;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
  animation: fadeUp 1s ease 0.2s both;
}

.bridge-illustration {
  width: 100%;
  max-width: 480px;
}

/* ── GOMBOK ── */
.btn-primary {
  background: var(--terracotta);
  color: white;
  border: none;
  padding: 0.85rem 2rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 0.5rem;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}

.btn-primary:hover {
  background: var(--rust);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--deep);
  border: 1.5px solid var(--deep);
  padding: 0.85rem 2rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  border-radius: 0.5rem;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
}

.btn-outline:hover {
  background: var(--warm);
}

.btn-white {
  background: white;
  color: var(--terracotta);
  border: none;
  padding: 0.85rem 1.8rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: transform 0.15s;
}

.btn-white:hover {
  transform: translateY(-2px);
}

/* ── STATISZTIKA SÁV ── */
.stats {
  background: var(--terracotta);
  color: white;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
  padding: 2.5rem 4rem;
}

.stat-item {
  padding: 0.5rem;
  border-right: 1px solid rgba(255, 255, 255, 0.25);
}

.stat-item:last-child {
  border-right: none;
}

.stat-num {
  font-family: 'Fraunces', serif;
  font-size: 2.8rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  display: block;
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-label {
  font-size: 0.82rem;
  opacity: 0.8;
  font-weight: 400;
}

/* ── SZEKCIÓ ALAP STÍLUSOK ── */
section {
  padding: 6rem 4rem;
}

.section-tag {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.section-lead {
  font-size: 1.05rem;
  line-height: 1.7;
  opacity: 0.7;
  max-width: 560px;
}

/* ── RÓLUNK SZEKCIÓ ── */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-quote {
  font-family: 'Fraunces', serif;
  font-size: 1.6rem;
  font-style: italic;
  font-weight: 300;
  line-height: 1.4;
  color: var(--terracotta);
  border-left: 3px solid var(--terracotta);
  padding-left: 1.5rem;
  margin: 2rem 0;
}

.about-image {
  background: var(--warm);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  position: relative;
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center; 
  aspect-ratio: 3 / 4; /* vagy 4/3, 16/9 – igazítsd a képedhez */
  border-radius: 16px;
  align-self: stretch;
  min-height: 300px;
}

.about-image img {
  width: 95%;
  height: 95%;
  object-fit: cover;
  border-radius: 0; /* a div-en van már a border-radius */
  display: block;
}

.emoji-collage {
  font-size: 6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.emoji-row {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

/* ── PROGRAMOK SZEKCIÓ ── */
.programs-bg {
  background: var(--sand);
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.program-card {
  background: var(--cream);
  border-radius: 1.2rem;
  padding: 2rem;
  border: 1px solid var(--warm);
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}

.program-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--terracotta);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

.program-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(44, 36, 22, 0.12);
}

.program-card:hover::before {
  transform: scaleX(1);
}

.card-emoji {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.card-title {
  font-family: 'Fraunces', serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.card-desc {
  font-size: 0.9rem;
  line-height: 1.65;
  opacity: 0.7;
}

/* ── HOGYAN MŰKÖDIK SZEKCIÓ ── */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}

.step {
  text-align: center;
  padding: 1.5rem 1rem;
  position: relative;
}

.step:not(:last-child)::after {
  content: '→';
  position: absolute;
  right: -0.5rem;
  top: 2.5rem;
  font-size: 1.2rem;
  color: var(--terracotta);
  opacity: 0.5;
}

.step-num {
  width: 50px;
  height: 50px;
  background: var(--terracotta);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}

.step h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.step p {
  font-size: 0.85rem;
  opacity: 0.65;
  line-height: 1.6;
}

/* ── VISSZAJELZÉSEK SZEKCIÓ ── */
.testimonials-bg {
  background: var(--deep);
  color: var(--cream);
}

.testimonials-bg .section-title {
  color: var(--cream);
}

.testimonials-bg .section-lead {
  color: var(--cream);
}

.testimonials-bg .section-tag {
  color: var(--terracotta);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.testimonial {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1.2rem;
  padding: 2rem;
}

.testimonial-text {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.6;
  font-weight: 300;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--terracotta);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.author-name {
  font-weight: 500;
  font-size: 0.9rem;
}

.author-role {
  font-size: 0.78rem;
  opacity: 0.5;
}

/* ── ESEMÉNYEK SZEKCIÓ ── */
.events-list {
  display: grid;
  gap: 1rem;
  margin-top: 3rem;
  max-width: 700px;
}

.event-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  align-items: center;
  gap: 1.5rem;
  padding: 1.25rem 1.5rem;
  background: var(--sand);
  border-radius: 0.9rem;
  border: 1px solid var(--warm);
  transition: border-color 0.2s;
}

.event-item:hover {
  border-color: var(--terracotta);
}

.event-date {
  text-align: center;
  background: var(--terracotta);
  color: white;
  border-radius: 0.6rem;
  padding: 0.5rem;
  width: 100px;
}

.event-day {
  font-family: 'Fraunces', serif;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
}

.event-month {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.85;
}

.event-name {
  font-weight: 500;
  font-size: 0.95rem;
}

.event-loc {
  font-size: 0.82rem;
  opacity: 0.6;
  margin-top: 0.2rem;
}

.event-badge {
  background: var(--sage);
  color: white;
  font-size: 0.72rem;
  font-weight: 500;
  padding: 0.25rem 0.75rem;
  border-radius: 2rem;
  white-space: nowrap;
}

.event-badge--soon {
  background: var(--terracotta);
}

/* ── CTA / CSATLAKOZÁS SZEKCIÓ ── */
.cta {
  background: var(--terracotta);
  color: white;
  text-align: center;
  padding: 7rem 4rem;
}

.cta .section-tag {
  color: rgba(255, 255, 255, 0.6);
}

.cta .section-title {
  color: white;
  margin-bottom: 1rem;
}

.cta .section-lead {
  color: rgba(255, 255, 255, 0.75);
  margin: 0 auto 2.5rem;
}

.cta-form {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 500px;
  margin: 0 auto;
}

.cta-input {
  flex: 1;
  min-width: 220px;
  padding: 0.85rem 1.2rem;
  border-radius: 0.5rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  background: rgba(255, 255, 255, 0.15);
  color: white;
  backdrop-filter: blur(4px);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
}

.cta-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.cta-input:focus {
  outline: none;
  border-color: white;
}

.cta-note {
  font-size: 0.82rem;
  opacity: 0.65;
  margin-top: 1rem;
}

/* ── LÁBLÉC ── */
footer {
  background: var(--deep);
  color: var(--cream);
  padding: 3rem 4rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
}

.footer-logo {
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--terracotta);
  margin-bottom: 0.75rem;
}

.footer-desc {
  font-size: 0.85rem;
  opacity: 0.55;
  line-height: 1.65;
}

footer h4 {
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.5;
  margin-bottom: 1rem;
}

footer ul {
  list-style: none;
}

footer ul li {
  margin-bottom: 0.6rem;
}

footer ul a {
  text-decoration: none;
  color: var(--cream);
  opacity: 0.65;
  font-size: 0.88rem;
  transition: opacity 0.2s;
}

footer ul a:hover {
  opacity: 1;
}

.footer-bottom {
  background: var(--deep);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  padding: 1.25rem 4rem;
  font-size: 0.8rem;
  color: rgba(251, 247, 238, 0.35);
}

/* ── ANIMÁCIÓK ── */
@keyframes pulse {
  0%, 100% { transform: scale(1);   opacity: 0.7; }
  50%       { transform: scale(1.1); opacity: 1;   }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0);    }
}

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── HAMBURGER GOMB ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 8px;
  transition: background 0.2s;
  z-index: 101;
}

.nav-hamburger:hover {
  background: rgba(0, 127, 106, 0.1);
}

.nav-hamburger span {
  display: block;
  height: 2px;
  background: var(--deep);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

/* X animáció nyitott állapotban */
.nav-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── RESZPONZÍV (max 900px) ── */
@media (max-width: 900px) {
  nav {
    padding: 1rem 1.5rem;
    /* position: fixed marad az alap stílusból — NEM írjuk felül */
  }

  .nav-hamburger {
    display: flex;
  }

  /* "Csatlakozz" gomb elrejtése mobilon a navban */
  nav > .btn-primary {
    display: none;
  }

  /* Lenyíló menü a nav alá, abszolút — nem tolja el a tartalmat */
  .nav-links {
    display: none;
    flex-direction: column;
    gap: 0;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(251, 247, 238, 0.98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--warm);
    padding: 0.5rem 0;
    box-shadow: 0 8px 24px rgba(0, 41, 34, 0.1);
    z-index: 99;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    padding: 0.85rem 1.5rem;
    font-size: 1rem;
    opacity: 0.85;
    border-bottom: 1px solid rgba(98, 143, 126, 0.15);
  }

  .nav-links li:last-child a {
    border-bottom: none;
  }

  /* Facebook ikon link mobilon */
  .nav-links .fb-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.5rem;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 6rem 1.5rem 3rem;
    text-align: center;
  }

  .hero p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-btns {
    justify-content: center;
  }

  .hero-visual {
    display: none;
  }

  .stats {
    grid-template-columns: repeat(2, 1fr);
    padding: 2rem 1.5rem;
  }

  section {
    padding: 4rem 1.5rem;
  }

  .about {
    grid-template-columns: 1fr;
  }

  .programs-grid {
    grid-template-columns: 1fr;
  }

  .steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .events-list {
    max-width: 100%;
  }

  .event-item {
    grid-template-columns: 60px 1fr;
  }

  .event-badge {
    display: none;
  }

  footer {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2.5rem 1.5rem;
  }

  .cta {
    padding: 5rem 1.5rem;
  }
}

.hogyanmukodik {
  background-color: #b8ddd6;
}
/* ── TÁMOGATÓK SZEKCIÓ ── */
.tamogatok-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-top: 3rem;
}

.tamogato-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 2rem 2.5rem;
  background: var(--sand);
  border: 1px solid var(--warm);
  border-radius: 1.2rem;
  width: 180px;
  transition: transform 0.25s, box-shadow 0.25s;
}

.tamogato-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(44, 36, 22, 0.1);
}

.tamogato-logo {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tamogato-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.tamogato-nev {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  text-align: center;
  opacity: 0.75;
}

/* ── TÁMOGASS MINKET SZEKCIÓ ── */
.tamogass-section {
  background: #007F6A;
  padding: 6rem 4rem;
}
 
.tamogass-inner {
  max-width: 1100px;
  margin: 0 auto;
}
 
.tamogass-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 3rem;
}
 
.tamogass-card {
  flex: 0 1 380px;
  background: var(--sand);
  border: 1px solid var(--warm);
  border-radius: 1.2rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}
 
.tamogass-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--terracotta);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
 
.tamogass-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(44, 36, 22, 0.12);
}
 
.tamogass-card:hover::before {
  transform: scaleX(1);
}
 
.tamogass-card-icon {
  font-size: 2.2rem;
}
 
.tamogass-card-title {
  font-family: 'Fraunces', serif;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}
 
.tamogass-card-desc {
  font-size: 0.88rem;
  line-height: 1.65;
  opacity: 0.7;
}
 
.tamogass-detail-box {
  background: var(--cream);
  border: 1px solid var(--warm);
  border-radius: 0.75rem;
  padding: 1rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 0.5rem;
}
 
.tamogass-detail-row {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
 
.tamogass-detail-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.5;
  font-weight: 500;
}
 
.tamogass-detail-value {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--deep);
  word-break: break-all;
}
 
.tamogass-placeholder {
  color: black;
  font-style: italic;
  opacity: 0.7;
}
 
.tamogass-tip {
  font-size: 0.82rem;
  opacity: 0.6;
  line-height: 1.55;
  margin-top: auto;
}
 
.tamogass-cta-box {
  margin-top: 3rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}
 
.tamogass-cta-box p {
  font-size: 1rem;
  opacity: 0.7;
}
 
@media (max-width: 900px) {
  .tamogass-section {
    padding: 4rem 1.5rem;
  }
 
  .tamogass-grid {
    grid-template-columns: 1fr;
  }
}
 
.hogyanmukodik {
  background-color: #b8ddd6;
}


* ── HAMAROSAN BLOKK ── */
.hamarosan-wrapper {
  
  position: absolute;
  border-radius: 1.2rem;
  overflow: hidden;
}
 
.hamarosan-wrapper > *:not(.hamarosan-overlay) {
  filter: blur(5px);
  user-select: none;
  pointer-events: none;
}
 
.hamarosan-overlay {
  position: relative;
  inset: 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  background: rgba(251, 247, 238, 0.5);
}
 
.hamarosan-overlay .hamarosan-badge {
  
  background: var(--terracotta);
  color: white;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 2rem;
}
 
.hamarosan-overlay .hamarosan-title {
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--deep);
  letter-spacing: -0.02em;
}
 
.hamarosan-overlay .hamarosan-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  color: var(--terracotta);
  opacity: 0.8;
}
 
.hogyanmukodik {
  background-color: #b8ddd6;}


    /* ── IDŐSGONDOZÁS OLDAL SPECIFIKUS STÍLUSOK ── */

    .ig-hero {
      padding: 9rem 4rem 5rem;
      background: var(--sand);
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: center;
    }

    .ig-hero-tag {
      display: inline-block;
      background: var(--terracotta);
      color: white;
      font-size: 0.75rem;
      font-weight: 500;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 0.35rem 0.9rem;
      border-radius: 2rem;
      margin-bottom: 1.5rem;
    }

    .ig-hero h1 {
      font-family: 'Fraunces', serif;
      font-size: clamp(2.2rem, 4vw, 3.6rem);
      font-weight: 900;
      line-height: 1.08;
      letter-spacing: -0.03em;
      margin-bottom: 1.2rem;
      color: var(--deep);
    }

    .ig-hero h1 em {
      font-style: italic;
      color: var(--terracotta);
    }

    .ig-hero-lead {
      font-size: 1.05rem;
      line-height: 1.75;
      opacity: 0.75;
      margin-bottom: 2rem;
      font-family: 'DM Sans', sans-serif;
      font-weight: 400;
    }

    .ig-hero-img {
      border-radius: 1.5rem;
      overflow: hidden;
      aspect-ratio: 4/5;
      background: var(--warm);
    }

    .ig-hero-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    /* ── SZOLGÁLTATÁSOK ── */
    .ig-services {
      padding: 6rem 4rem;
      background: var(--cream);
    }

    .ig-services-header {
      max-width: 620px;
      margin-bottom: 3.5rem;
    }

    .ig-cards-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
    }

    .ig-card {
      background: var(--sand);
      border: 1px solid var(--warm);
      border-radius: 1.2rem;
      padding: 2rem 2.2rem;
      position: relative;
      overflow: hidden;
      transition: transform 0.25s, box-shadow 0.25s;
    }

    .ig-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 4px;
      background: var(--terracotta);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.3s;
    }

    .ig-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 16px 40px rgba(0, 41, 34, 0.1);
    }

    .ig-card:hover::before {
      transform: scaleX(1);
    }

    .ig-card-icon {
      font-size: 2.2rem;
      margin-bottom: 1rem;
      display: block;
    }

    .ig-card-title {
      font-family: 'Fraunces', serif;
      font-size: 1.2rem;
      font-weight: 700;
      margin-bottom: 0.6rem;
      color: var(--deep);
      letter-spacing: -0.01em;
    }

    .ig-card-desc {
      font-family: 'DM Sans', sans-serif;
      font-size: 0.9rem;
      line-height: 1.7;
      opacity: 0.72;
      font-weight: 400;
    }

   
    /* ── FOLYAMAT ── */
    .ig-process {
      padding: 6rem 4rem;
      background: #b8ddd6;
    }

    .ig-process-header {
      max-width: 560px;
      margin-bottom: 3.5rem;
    }

    .ig-steps-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
      position: relative;
    }

    .ig-step {
      background: var(--sand);
      border-radius: 1.2rem;
      padding: 2rem;
      border: 1px solid rgba(98,143,126,0.3);
      position: relative;
    }

    .ig-step-num {
      width: 48px;
      height: 48px;
      background: var(--terracotta);
      color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Fraunces', serif;
      font-size: 1.3rem;
      font-weight: 900;
      margin-bottom: 1.2rem;
    }

    .ig-step-title {
      font-family: 'Fraunces', serif;
      font-size: 1.15rem;
      font-weight: 700;
      margin-bottom: 0.6rem;
      color: var(--deep);
    }

    .ig-step-desc {
      font-family: 'DM Sans', sans-serif;
      font-size: 0.9rem;
      line-height: 1.7;
      opacity: 0.72;
      font-weight: 400;
    }

    /* ── KAPCSOLAT SZEKCIÓ ── */
    .ig-contact {
      padding: 6rem 4rem;
      background: var(--sand);
    }

    .ig-contact-inner {
      max-width: 900px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: start;
    }

    .ig-contact-info {
      display: flex;
      flex-direction: column;
      gap: 1.2rem;
    }

    .ig-contact-item {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      padding: 1.2rem 1.4rem;
      background: var(--cream);
      border: 1px solid var(--warm);
      border-radius: 0.9rem;
    }

    .ig-contact-icon {
      font-size: 1.5rem;
      flex-shrink: 0;
      margin-top: 0.1rem;
    }

    .ig-contact-label {
      font-size: 0.72rem;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      opacity: 0.5;
      font-family: 'DM Sans', sans-serif;
      font-weight: 500;
      margin-bottom: 0.2rem;
    }

    .ig-contact-value {
      font-family: 'DM Sans', sans-serif;
      font-size: 0.95rem;
      font-weight: 500;
      color: var(--deep);
    }

    .ig-contact-cta {
      background: var(--terracotta);
      color: white;
      border-radius: 1.2rem;
      padding: 2.5rem 2rem;
      display: flex;
      flex-direction: column;
      gap: 1.2rem;
    }

    .ig-contact-cta h3 {
      font-family: 'Fraunces', serif;
      font-size: 1.5rem;
      font-weight: 700;
      line-height: 1.2;
    }

    .ig-contact-cta p {
      font-family: 'DM Sans', sans-serif;
      font-size: 0.92rem;
      line-height: 1.7;
      opacity: 0.85;
      font-weight: 400;
    }

    .ig-contact-cta a.btn-white {
      display: inline-block;
      background: white;
      color: var(--terracotta);
      border: none;
      padding: 0.85rem 1.8rem;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.95rem;
      font-weight: 600;
      border-radius: 0.5rem;
      cursor: pointer;
      text-decoration: none;
      transition: transform 0.15s;
      text-align: center;
    }

    .ig-contact-cta a.btn-white:hover {
      transform: translateY(-2px);
    }

    
    /* ── RESZPONZÍV ── */
    @media (max-width: 900px) {
      .ig-hero {
        grid-template-columns: 1fr;
        padding: 7rem 1.5rem 3rem;
        gap: 2.5rem;
      }

      .ig-hero-img {
        aspect-ratio: 16/9;
      }

      .ig-services,
      .ig-process,
      .ig-contact {
        padding: 4rem 1.5rem;
      }

      .ig-cards-grid {
        grid-template-columns: 1fr;
      }

      .ig-steps-grid {
        grid-template-columns: 1fr;
      }

      .ig-contact-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
      }
    }


/* ── IDŐSGONDOZÁS BANNER ── */
a.ig-banner {
  display: block !important;
  background: #1c1a17 !important;
  color: #f5f0e8 !important;
  text-decoration: none !important;
  border-bottom: 1px solid rgba(255,255,255,0.08) !important;
  transition: background 0.2s ease;
}

a.ig-banner:hover {
  background: #2c2820 !important;
}

.ig-banner-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.85rem 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.ig-banner-badge {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: #c8975a;
  color: #fff !important;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  white-space: nowrap;
  flex-shrink: 0;
}

.ig-banner-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  color: #c9c4bc !important;
  flex: 1;
  min-width: 0;
  line-height: 1.4;
}

.ig-banner-text strong {
  color: #f0ebe2 !important;
  font-weight: 500;
}

.ig-banner-cta {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.84rem;
  font-weight: 500;
  color: #c8975a !important;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-shrink: 0;
  transition: gap 0.2s ease;
}

a.ig-banner:hover .ig-banner-cta {
  gap: 0.6rem;
}

@media (max-width: 640px) {
  .ig-banner-inner { padding: 0.7rem 1.2rem; gap: 0.5rem; }
  .ig-banner-text { font-size: 0.8rem; }
  .ig-banner-cta { font-size: 0.78rem; }
}