/* ============================================================
   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);
  border-radius: 1.5rem;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.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;
}

.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);
}

/* ── RESZPONZÍV (max 900px) ── */
@media (max-width: 900px) {
  nav {
    padding: 1rem 1.5rem;
  }

  .nav-links {
    display: none;
  }

  .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;
}


