@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
  --primary-color: #1b3b2b;       /* Mély erdőzöld */
  --primary-light: #2c5943;      /* Világosabb erdőzöld */
  --secondary-color: #a8c3a0;    /* Lágy zsályazöld */
  --accent-color: #dfc394;       /* Meleg homok/arany */
  --accent-hover: #cdaf73;       /* Sötétebb arany */
  --bg-light: #faf8f5;           /* Törtfehér/krém */
  --bg-white: #ffffff;
  --text-dark: #1a241f;          /* Szinte fekete zöldes tónus */
  --text-muted: #5e6f65;         /* Tompított szürkészöld */
  --text-light: #ffffff;
  --font-sans: 'Outfit', sans-serif;
  --font-serif: 'Playfair Display', serif;
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
  --glass-bg: rgba(250, 248, 245, 0.85);
  --glass-border: rgba(27, 59, 43, 0.06);
  --shadow-sm: 0 4px 12px rgba(27, 59, 43, 0.03);
  --shadow-md: 0 12px 32px rgba(27, 59, 43, 0.06);
  --shadow-lg: 0 24px 48px rgba(27, 59, 43, 0.1);
  --container-width: 1200px;
}

/* Reset & Alapok */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Tipográfia */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.25;
  color: var(--primary-color);
}

p {
  font-size: 1.05rem;
  color: var(--text-muted);
  font-weight: 300;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-smooth);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
}

/* Gombok */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2.2rem;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 1rem;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--text-light);
  box-shadow: 0 8px 24px rgba(27, 59, 43, 0.15);
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--primary-light);
  z-index: -1;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-primary:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(27, 59, 43, 0.25);
  color: var(--text-light);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: var(--text-light);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(27, 59, 43, 0.15);
}

.btn-accent {
  background-color: var(--accent-color);
  color: var(--primary-color);
  box-shadow: 0 8px 24px rgba(223, 195, 148, 0.3);
}

.btn-accent:hover {
  background-color: var(--accent-hover);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(223, 195, 148, 0.45);
}

/* Fejléc és Navigáció */
header.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--glass-bg);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid var(--glass-border);
  transition: var(--transition-smooth);
}

header.site-header.scrolled {
  padding: 0.5rem 0;
  background: rgba(250, 248, 245, 0.95);
  box-shadow: var(--shadow-sm);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 85px;
  transition: var(--transition-smooth);
}

header.site-header.scrolled .header-container {
  height: 70px;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.logo-img {
  width: 45px;
  height: 45px;
  object-fit: contain;
  transition: var(--transition-smooth);
}

header.site-header.scrolled .logo-img {
  width: 38px;
  height: 38px;
}

.logo-text {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary-color);
  letter-spacing: -0.5px;
}

.logo-subtext {
  font-size: 0.7rem;
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-top: -3px;
}

/* Fő Navigáció */
.main-nav {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}

.nav-list {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 2rem;
}

.nav-item {
  position: relative;
}

.nav-link {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--primary-color);
  padding: 0.5rem 0;
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--accent-color);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.nav-link:hover::after,
.nav-item.active .nav-link::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-link:hover {
  color: var(--primary-light);
}

/* Dropdown Menü */
.dropdown {
  position: relative;
}

.dropdown-icon {
  width: 10px;
  height: 10px;
  fill: currentColor;
  transition: transform 0.3s ease;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(15px);
  background: var(--bg-white);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
  width: 250px;
  list-style: none;
  padding: 0.8rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s;
  pointer-events: none;
  z-index: 100;
}

.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 0;
  width: 100%;
  height: 20px;
  background: transparent;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(5px);
  pointer-events: auto;
}

.dropdown:hover .dropdown-icon {
  transform: rotate(180deg);
}

.dropdown-item {
  margin-bottom: 2px;
}

.dropdown-item:last-child {
  margin-bottom: 0;
}

.dropdown-link {
  display: block;
  padding: 0.7rem 1rem;
  font-size: 0.9rem;
  font-weight: 400;
  border-radius: var(--border-radius-sm);
  color: var(--text-dark);
  transition: var(--transition-smooth);
}

.dropdown-link:hover {
  background-color: var(--bg-light);
  color: var(--primary-color);
  padding-left: 1.3rem;
}

/* Mobil Hamburger */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1100;
}

.hamburger-line {
  display: block;
  width: 28px;
  height: 2px;
  background-color: var(--primary-color);
  margin: 6px 0;
  transition: var(--transition-smooth);
}

/* Hős szekció (Hero) */
.hero {
  padding-top: 180px;
  padding-bottom: 100px;
  background: radial-gradient(circle at 80% 20%, rgba(168, 195, 160, 0.15) 0%, rgba(250, 248, 245, 0) 60%);
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.hero-tag {
  display: inline-block;
  padding: 0.4rem 1.2rem;
  background-color: rgba(27, 59, 43, 0.05);
  color: var(--primary-color);
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 50px;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.hero-title {
  font-size: 3.8rem;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.hero-title span {
  color: var(--accent-hover);
  display: block;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
}

.hero-desc {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  max-width: 550px;
}

.hero-ctas {
  display: flex;
  gap: 1.2rem;
  align-items: center;
}

.hero-image-wrapper {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 500px;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 10s ease;
}

.hero-image-wrapper:hover .hero-img {
  transform: scale(1.05);
}

.hero-badge {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 1.2rem 2rem;
  border-radius: var(--border-radius-md);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-md);
  max-width: 250px;
}

.hero-badge-title {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--primary-color);
  margin-bottom: 0.2rem;
}

.hero-badge-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Szekció Alapok */
.section {
  padding: 100px 0;
}

.section-bg {
  background-color: var(--bg-white);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem auto;
}

.section-tag {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--accent-hover);
  text-transform: uppercase;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 0.8rem;
}

.section-title {
  font-size: 2.6rem;
  margin-bottom: 1.2rem;
}

.section-desc {
  font-size: 1.1rem;
}

/* Szemléletünk / Borsóház szerű fókuszok */
.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.philosophy-card {
  background-color: var(--bg-white);
  padding: 3rem 2rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--glass-border);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.philosophy-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--primary-color);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.philosophy-card:hover::before {
  transform: scaleX(1);
}

.philosophy-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.philosophy-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(168, 195, 160, 0.15);
  color: var(--primary-color);
  border-radius: var(--border-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.8rem;
  font-size: 1.5rem;
  font-weight: 700;
}

.philosophy-card-title {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.philosophy-card-desc {
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Folyamat szekció (Közös munka menete) */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.process-step {
  text-align: center;
  position: relative;
}

.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(50% + 40px);
  width: calc(100% - 80px);
  height: 1px;
  border-top: 2px dashed rgba(27, 59, 43, 0.15);
  z-index: 1;
}

.process-num {
  width: 80px;
  height: 80px;
  background-color: var(--primary-color);
  color: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0 auto 1.5rem auto;
  box-shadow: 0 8px 24px rgba(27, 59, 43, 0.15);
  z-index: 2;
  position: relative;
  transition: var(--transition-smooth);
}

.process-step:hover .process-num {
  transform: scale(1.1);
  background-color: var(--accent-color);
  color: var(--primary-color);
}

.process-step-title {
  font-size: 1.25rem;
  margin-bottom: 0.8rem;
}

.process-step-desc {
  font-size: 0.9rem;
  max-width: 220px;
  margin: 0 auto;
}

/* Programok / Kártyák */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}

.program-card {
  background-color: var(--bg-white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--glass-border);
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  transition: var(--transition-smooth);
}

.program-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.program-img-wrapper {
  height: 100%;
  min-height: 280px;
  overflow: hidden;
  position: relative;
}

.program-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.program-card:hover .program-card-img {
  transform: scale(1.05);
}

.program-content {
  padding: 2.2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.program-title {
  font-size: 1.45rem;
  margin-bottom: 0.8rem;
}

.program-desc {
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.program-link {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--primary-color);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.program-link svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  transition: transform 0.3s ease;
}

.program-link:hover svg {
  transform: translateX(5px);
}

/* Csapatunk Szekció */
.team-preview {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 5rem;
  align-items: center;
}

.team-image-stack {
  position: relative;
  height: 480px;
}

.team-img-large {
  width: 80%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
}

.team-img-small {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  height: 240px;
  object-fit: cover;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-lg);
  border: 6px solid var(--bg-white);
}

.team-info-box {
  background-color: var(--bg-white);
  padding: 3rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--glass-border);
}

/* Kapcsolati űrlap és szekció */
.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 4rem;
}

.contact-info-list {
  list-style: none;
  margin: 2rem 0;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  margin-bottom: 1.8rem;
}

.contact-icon-wrapper {
  width: 45px;
  height: 45px;
  background-color: rgba(168, 195, 160, 0.15);
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}

.contact-info-title {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--primary-color);
  margin-bottom: 0.2rem;
}

.contact-info-val {
  font-size: 1rem;
  color: var(--text-muted);
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.social-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 1px solid var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  transition: var(--transition-smooth);
}

.social-icon:hover {
  background-color: var(--primary-color);
  color: var(--text-light);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.social-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.contact-form-wrapper {
  background: var(--bg-white);
  padding: 3rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--glass-border);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.form-control {
  width: 100%;
  padding: 0.9rem 1.2rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  background-color: var(--bg-light);
  border: 1px solid transparent;
  border-radius: var(--border-radius-sm);
  color: var(--text-dark);
  transition: var(--transition-smooth);
}

.form-control:focus {
  outline: none;
  background-color: var(--bg-white);
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(223, 195, 148, 0.2);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  cursor: pointer;
}

.form-checkbox input {
  margin-top: 0.3rem;
}

.form-checkbox-text {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.form-feedback {
  margin-top: 1.5rem;
  padding: 1rem;
  border-radius: var(--border-radius-sm);
  font-size: 0.9rem;
  display: none;
}

.form-feedback.success {
  display: block;
  background-color: rgba(168, 195, 160, 0.2);
  color: var(--primary-color);
  border: 1px solid var(--secondary-color);
}

.form-feedback.error {
  display: block;
  background-color: rgba(214, 40, 40, 0.1);
  color: #d62828;
  border: 1px solid rgba(214, 40, 40, 0.2);
}

/* Lábléc (Footer) */
.site-footer {
  background-color: var(--primary-color);
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 30px 0;
  font-size: 0.95rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-logo-text {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 0.5rem;
}

.footer-logo-subtext {
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1.5rem;
}

.footer-title {
  color: var(--bg-white);
  font-family: var(--font-sans);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  position: relative;
}

.footer-links {
  list-style: none;
}

.footer-link-item {
  margin-bottom: 0.8rem;
}

.footer-link-item a:hover {
  color: var(--accent-color);
  padding-left: 5px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

/* Aloldal Specifikus Hero és Tartalmak */
.page-hero {
  padding-top: 160px;
  padding-bottom: 60px;
  background-color: var(--primary-color);
  color: var(--text-light);
  text-align: center;
}

.page-hero .section-title {
  color: var(--accent-color);
  font-size: 3rem;
  margin-bottom: 0.8rem;
}

.page-hero .breadcrumbs {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

.page-hero .breadcrumbs a:hover {
  color: var(--accent-color);
}

.page-content-wrapper {
  padding: 80px 0;
}

.story-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.story-text h3 {
  font-size: 1.8rem;
  margin: 1.5rem 0 0.8rem 0;
}

.story-text h3:first-of-type {
  margin-top: 0;
}

.story-text p {
  margin-bottom: 1.2rem;
}

.story-img-wrapper {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 480px;
}

.story-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Alapító specifikus */
.founder-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 4rem;
  align-items: flex-start;
}

.founder-img-card {
  background: var(--bg-white);
  padding: 1.5rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--glass-border);
  text-align: center;
}

.founder-photo-wrapper {
  border-radius: var(--border-radius-md);
  overflow: hidden;
  margin-bottom: 1.5rem;
  height: 350px;
}

.founder-name {
  font-size: 1.6rem;
  color: var(--primary-color);
  margin-bottom: 0.2rem;
}

.founder-title {
  font-size: 0.95rem;
  color: var(--accent-hover);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.founder-quotes {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--primary-color);
  border-left: 4px solid var(--accent-color);
  padding-left: 1.5rem;
  margin-bottom: 2rem;
  line-height: 1.5;
}

/* Szemlélet részletes pontok */
.features-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
}

.feature-item {
  display: flex;
  gap: 1.2rem;
}

.feature-check {
  width: 28px;
  height: 28px;
  background-color: var(--accent-color);
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.8rem;
  font-weight: 700;
}

.feature-title {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

/* Csapatunk aloldal */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.team-card {
  background-color: var(--bg-white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--glass-border);
  text-align: center;
  transition: var(--transition-smooth);
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.team-card-img-wrapper {
  height: 300px;
  overflow: hidden;
  background-color: #e5ede8;
  position: relative;
}

.team-card-placeholder-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 4rem;
  color: rgba(27, 59, 43, 0.15);
}

.team-card-info {
  padding: 2rem 1.5rem;
}

.team-member-name {
  font-size: 1.4rem;
  margin-bottom: 0.3rem;
}

.team-member-role {
  font-size: 0.9rem;
  color: var(--accent-hover);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  margin-bottom: 1rem;
}

/* Átmeneti üzenet csapatnak/árakhoz */
.placeholder-banner {
  background: radial-gradient(circle at 10% 10%, rgba(223, 195, 148, 0.15) 0%, rgba(27, 59, 43, 0.03) 100%);
  border: 1px solid var(--glass-border);
  padding: 4rem;
  border-radius: var(--border-radius-lg);
  text-align: center;
  max-width: 800px;
  margin: 4rem auto 0 auto;
}

.placeholder-banner h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

/* Reszponzív Media Queries */
@media (max-width: 1024px) {
  html {
    font-size: 15px;
  }
  
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  
  .hero-tag {
    margin: 0 auto 1.5rem auto;
  }
  
  .hero-desc {
    margin: 0 auto 2.5rem auto;
  }
  
  .hero-ctas {
    justify-content: center;
  }
  
  .hero-image-wrapper {
    height: 400px;
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
  }
  
  .philosophy-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
  
  .process-step:not(:last-child)::after {
    display: none;
  }
  
  .programs-grid {
    grid-template-columns: 1fr;
  }
  
  .team-preview {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .team-image-stack {
    height: 380px;
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
  }
  
  .team-img-large {
    height: 300px;
  }
  
  .team-img-small {
    height: 180px;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .story-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .story-img-wrapper {
    height: 350px;
    order: -1;
  }
  
  .founder-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .founder-img-card {
    max-width: 400px;
    margin: 0 auto;
    width: 100%;
  }
  
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .header-container {
    height: 70px;
  }
  
  /* Mobil Menü */
  .hamburger {
    display: block;
  }
  
  .hamburger.active .hamburger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  
  .hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }
  
  .hamburger.active .hamburger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  
  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background-color: var(--bg-white);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.05);
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 100px 2.5rem 3rem 2.5rem;
    gap: 2.5rem;
    transition: var(--transition-smooth);
    z-index: 1050;
    overflow-y: auto;
  }
  
  .main-nav.active {
    right: 0;
  }
  
  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 1.5rem;
  }
  
  .nav-item {
    width: 100%;
  }
  
  .nav-link {
    font-size: 1.1rem;
    width: 100%;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--glass-border);
  }
  
  .nav-link::after {
    display: none;
  }
  
  /* Mobil Dropdown */
  .dropdown-menu {
    position: static;
    transform: none !important;
    width: 100%;
    box-shadow: none;
    border: none;
    border-left: 2px solid var(--accent-color);
    background-color: var(--bg-light);
    border-radius: 0;
    margin-top: 0.5rem;
    padding: 0.5rem 0.5rem 0.5rem 1rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: block;
    opacity: 1;
    visibility: visible;
  }
  
  .dropdown.active .dropdown-menu {
    max-height: 300px;
  }
  
  .dropdown.active .dropdown-icon {
    transform: rotate(180deg);
  }
  
  .hero-title {
    font-size: 2.8rem;
  }
  
  .process-steps {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
  
  .team-grid {
    grid-template-columns: 1fr;
  }
  
  .program-card {
    grid-template-columns: 1fr;
  }
  
  .program-img-wrapper {
    height: 220px;
  }
  
  .features-list {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
