body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(270deg, #40117e, #2a085f, #3e0d84);
  background-size: 600% 600%;
  animation: gradientAnimation 20s ease infinite;
  color: white;
  min-height: 100vh;
}

@keyframes gradientAnimation {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.navbar {
  background-color: #5c2dad;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.navbar a {
  color: white;
  text-decoration: none;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  font-weight: bold;
  color: white;
}

.logo-img {
  height: 90px;
  width: auto;
}

.header {
  text-align: center;
  padding: 5rem 2rem;
  background-color: #40117e;
}
.header-logo {
  height: 240px;
  width: auto;
}
@media (max-width: 600px) {
  .header-logo {
    height: 25px;
  }
}

.section {
  padding: 4rem 2rem;
  text-align: center;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
  width: 250px;
  box-shadow: 0 0 15px #00000044;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.doc-link {
  margin-top: 1rem;
  color: #fff;
  background-color: #5c2dad;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s;
}

.doc-link:hover {
  background-color: #7643ce;
}

.video-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.video-container iframe {
  width: 360px;
  height: 202px;
  border: none;
  border-radius: 12px;
}

.faq .faq-item {
  margin: 1rem 0;
  text-align: left;
  max-width: 600px;
  margin-inline: auto;
}

.faq-question {
  background-color: #5c2dad;
  color: white;
  padding: 1rem;
  border: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  border-radius: 8px;
  font-weight: bold;
}

.faq-answer {
  padding: 1rem;
  background-color: rgba(255, 255, 255, 0.1);
  display: none;
  border-radius: 0 0 8px 8px;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.gallery img {
  width: 200px;
  border-radius: 8px;
  box-shadow: 0 0 10px #00000066;
}

a {
  text-decoration: none;
  color: red;
}

.icon {
  width: 40px;
  height: 40px;
  margin-bottom: 1rem;
}

.staff-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.staff-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid #5f2ab0;
  border-radius: 1rem;
  padding: 1.5rem;
  width: 200px;
  text-align: center;
  box-shadow: 0 0 20px rgba(64, 17, 126, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.staff-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 30px rgba(110, 38, 255, 0.6);
}

.staff-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #762ee8;
  margin-bottom: 1rem;
}

.staff-name {
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
}

.staff-role {
  color: #ccc;
  font-size: 0.95rem;
}

.header2 {
  text-align: center;
  margin-bottom: 40px;
}

.header2 h1 {
  font-size: 36px;
  font-weight: bold;
  color: #fff;
  text-shadow: 0 0 10px rgba(255, 64, 129, 0.8);
}

.header2 p {
  font-size: 18px;
  color: #ccc;
  margin-top: 10px;
}

.pp-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.pp-card {
  background-color: #2a1a5e;
  border-radius: 15px;
  padding: 25px;
  width: 280px;
  text-align: center;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  position: relative;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
  background: linear-gradient(to right, #3a1e67, #722f91);
  color: white;
}

.pp-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.pp-card h3 {
  font-size: 26px;
  margin: 20px 0;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #ff4081;
  text-shadow: 0 0 10px rgba(255, 64, 129, 0.8);
}

.pp-card p {
  font-size: 20px;
  margin-bottom: 20px;
  color: #ccc;
}

.pp-card form {
  display: flex;
  justify-content: center;
}

.pp-card button {
  background-color: #ff4081;
  color: #fff;
  border: none;
  padding: 12px 24px;
  font-size: 18px;
  font-weight: bold;
  border-radius: 50px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.pp-card button:hover {
  background-color: #e01e63;
  transform: scale(1.05);
}

.pp-card button:active {
  transform: scale(0.95);
}

/* Mobil optimalizálás */
@media (max-width: 768px) {
  .pp-container {
      flex-direction: column;
      align-items: center;
  }

  .pp-card {
      width: 100%;
      max-width: 350px;
  }

  .navbar ul {
      flex-direction: column;
      align-items: center;
  }

  .card-container,
  .staff-container,
  .video-container,
  .gallery {
      flex-direction: column;
      align-items: center;
  }

  .staff-card {
      width: 100%;
      max-width: 350px;
  }
}
.hamburger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 4px;
}

.hamburger .bar {
  width: 30px;
  height: 4px;
  background-color: white;
  border-radius: 2px;
}
.navbar ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.navbar ul ul {
  display: none;
}

@media (max-width: 768px) {
  .navbar ul {
    display: none;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    background-color: #5c2dad;
    position: absolute;
    top: 60px;
    left: 0;
    padding: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  }

  .hamburger {
    display: flex;
  }

  .navbar ul.active {
    display: flex;
  }
}
.button-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

.custom-button {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #2a1a5e;
  color: white;
  padding: 0.75rem 1.5rem;
  border: 2px solid #6a0dad;
  border-radius: 9999px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.custom-button i {
  font-size: 1.2rem;
}

.custom-button:hover {
  background-color: #6a0dad;
  color: white;
  transform: scale(1.05);
}
