/* ===== Általános stílusok ===== */
body {
  font-family: 'Georgia', serif;
  color: #5a4a42;
  background-color: #f8f5f2;
}

/* ===== Animációk ===== */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ===== Hero Section ===== */
/* Hero Section */
.hero-section .hero-logo {
  width: 100%;
  max-width: 300px;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3)) brightness(1.05) contrast(1.1);
  animation: slideIn 0.8s forwards 0.4s;
}

.hero-section .hero-text-container {
  animation: fadeUp 0.8s forwards 0.2s;
}

@media (max-width: 992px) {
  .hero-section .hero-logo {
    max-width: 250px;
  }
}

@media (max-width: 768px) {
  .hero-section .hero-logo {
    max-width: 200px;
  }
  .hero-section {
    padding: 80px 0;
  }
  .hero-text-container {
    padding: 1.8rem;
    margin: 0 15px;
  }
}

@media (max-width: 576px) {
  .hero-section .hero-logo {
    max-width: 150px;
  }
}

/* ===== Rólam Szekció ===== */
#bemutatkozas {
  background-color: #f8f5f2;
}

#udv{
  font-family: 'Georgia', serif;
  font-size: 3rem;
}

#bemutatkozas-cim {
  font-family: 'Georgia', serif;
  font-weight: 700;
  font-size: 2.5rem;
  letter-spacing: -0.5px;
  color: #5a4a42;
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
  text-align: center;
  width: 100%;
  margin-bottom: 3rem;
  transform: translateY(20px);
  opacity: 0;
  animation: fadeUp 0.8s forwards;
  border-bottom: 3px solid #b38b6d;
}

#bemutatkozas-intro {
  background-color: rgba(179, 139, 109, 0.1);
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 2rem;
}

#bemutatkozas p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #6a5647;
  margin-bottom: 1.5rem;
}

/* Szakmai háttér */
#szakmai-hatter {
  background: linear-gradient(to right, rgba(255,255,255,0.9), rgba(243, 236, 229, 0.9));
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 2rem;
}

#szakmai-cim {
  color: #5a4a42;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}

#tapasztalat, #vegzettseg, #kepesites {
  margin-bottom: 0.8rem;
}

/* Értékek */
#ertekek-cim {
  font-size: 1.8rem;
  color: #5a4a42;
  margin-bottom: 2rem;
}

#ertekek-grid {
  margin-bottom: 2rem;
}

.feature-box {
  padding: 1.5rem;
  border-radius: 8px;
  background: white;
  height: 100%;
  transition: all 0.3s ease;
}

#ertek-1 .feature-box { border-top: 3px solid #b38b6d; }
#ertek-2 .feature-box { border-top: 3px solid #a27858; }
#ertek-3 .feature-box { border-top: 3px solid #8a6d59; }

/* Személyes doboz */
#szemelyes-box {
  background-color: rgba(179, 139, 109, 0.05);
  border: 1px dashed #b38b6d;
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 2rem;
}

#szemelyes-cim {
  font-size: 1.8rem;
  color: #5a4a42;
  margin-bottom: 1rem;
}

/* CTA */
#bemutatkozas-cta .btn {
  font-size: 1.2rem;
  letter-spacing: 0.5px;
  background-color: #b38b6d;
  border-color: #a27858;
  padding: 0.8rem 2rem;
}

#bemutatkozas-cta .btn:hover {
  background-color: #a27858;
}

/* ===== GYIK Szekció ===== */
#gyakorikerdesek {
  background: linear-gradient(to bottom, #f1e9e2, #e8dfd5);
}

#gyakorikerdesek h2 {
  font-family: 'Georgia', serif;
  font-weight: 700;
  font-size: 2.5rem;
  letter-spacing: -0.5px;
  color: #5a4a42;
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
  text-align: center;
  width: 100%;
  margin-bottom: 3rem;
  transform: translateY(20px);
  opacity: 0;
  animation: fadeUp 0.8s forwards;
}

#gyakorikerdesek .card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(90, 74, 66, 0.1), 0 4px 15px rgba(90, 74, 66, 0.07);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
  border: 1px solid rgba(179, 139, 109, 0.15);
  transform: translateY(20px);
  opacity: 0;
  animation: fadeUp 0.8s forwards;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

#gyakorikerdesek .card:nth-child(1) { animation-delay: 0.1s; }
#gyakorikerdesek .card:nth-child(2) { animation-delay: 0.2s; }
#gyakorikerdesek .card:nth-child(3) { animation-delay: 0.3s; }
#gyakorikerdesek .card:nth-child(4) { animation-delay: 0.4s; }
#gyakorikerdesek .card:nth-child(5) { animation-delay: 0.5s; }

#gyakorikerdesek .card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(90, 74, 66, 0.4), 0 5px 20px rgba(90, 74, 66, 0.3);
}

#gyakorikerdesek .card-title {
  color: #5a4a42;
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.8rem;
  border-bottom: 2px solid rgba(179, 139, 109, 0.2);
  position: relative;
}

#gyakorikerdesek .card-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 50px;
  height: 2px;
  background: #b38b6d;
}

#gyakorikerdesek .card-text {
  color: #6a5647;
  font-size: 1rem;
  line-height: 1.6;
}

/* ===== Szolgáltatás gomb ===== */
#szolgaltatas-motto {
  font-size: 1.2rem;
  font-family: 'Georgia', serif;
  color: #4a3a30;
  margin-bottom: 1rem;
}

#szolgaltatas-gomb {
  display: inline-block;
  background-color: #b38b6d;
  color: #fff;
  font-weight: 600;
  padding: 0.75rem 1.8rem;
  border-radius: 30px;
  text-decoration: none;
  font-family: 'Georgia', serif;
  font-size: 1.05rem;
  box-shadow: 0 8px 20px rgba(90, 74, 66, 0.15);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

#szolgaltatas-gomb:hover {
  background-color: #a27858;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(90, 74, 66, 0.2);
}


/* ===== Reszponzív beállítások ===== */
@media (max-width: 992px) {
  #bemutatkozas p {
    font-size: 1rem;
  }

  #gyakorikerdesek .card {
    padding: 1.5rem;
  }
}

@media (max-width: 768px) {
  #bemutatkozas h2, #gyakorikerdesek h2 {
    font-size: 2rem;
  }

  .hero-section {
    padding: 80px 0;
  }

  .hero-text-container {
    padding: 1.8rem;
    margin: 0 15px;
  }

  .hero-logo-mobile {
    max-width: 200px;
  }
}