/* Alap stílusok */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Fejléc */
.site-header {
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  text-decoration: none;
  color: #333;
}

.paw {
  margin-right: 0.5rem;
}

#mainNav {
  display: flex;
  list-style: none;
}

#mainNav li {
  margin-left: 1.5rem;
}

#mainNav a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s;
}

#mainNav a:hover {
  color: #f39c12;
}

.highlight {
  background-color: #f39c12;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 4px;
}

#menuToggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: #f39c12;
  color: white;
  padding: 8px;
  text-decoration: none;
  z-index: 1001;
}

.skip-link:focus {
  top: 0;
}

/* Hero szekció */
.hero {
  background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
  color: white;
  padding: 4rem 0;
  text-align: center;
}

.hero h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.lead {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  background-color: #f39c12;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.3s;
  border: 2px solid #f39c12;
}

.btn:hover {
  background-color: #e67e22;
}

.btn.ghost {
  background-color: transparent;
  border: 2px solid white;
}

.btn.ghost:hover {
  background-color: white;
  color: #f39c12;
}

.btn.lg {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

/* Oldal hero */
.page-hero {
  background-color: #f8f9fa;
  padding: 3rem 0;
  text-align: center;
}

.page-hero h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

/* Tartalom szekciók */
.page-content {
  padding: 3rem 0;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.content-main h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #333;
}

.content-main h3 {
  font-size: 1.5rem;
  margin: 1.5rem 0 1rem;
  color: #555;
}

.content-main p {
  margin-bottom: 1rem;
}

.highlight-text {
  font-weight: 600;
  color: #f39c12;
  font-size: 1.1rem;
}

/* Profilkép */
.profile-image {
  float: right;
  margin: 0 0 1rem 2rem;
  max-width: 300px;
  border-radius: 20%;
}

/* Listák */
.list-with-bullets {
  list-style: none;
  margin: 1.5rem 0;
}

.list-with-bullets li {
  padding: 0.5rem 0 0.5rem 1.5rem;
  position: relative;
}

.list-with-bullets li:before {
  content: "•";
  color: #f39c12;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0.5rem;
}

/* Lista linkekkel - nincs pont */
.list-links {
  list-style: none;
  margin: 1.5rem 0;
}

.list-links li {
  padding: 0.5rem 0;
}

.list-links a {
  color: #f39c12;
  text-decoration: none;
  font-weight: 500;
}

.list-links a:hover {
  text-decoration: underline;
}

/* Ártábla */
.pricing-table {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.pricing-item {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
  border: 2px solid #e9ecef;
}

.pricing-item.featured {
  border-color: #f39c12;
  position: relative;
}

.pricing-item.featured:before {
  content: "Ajánlott";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: #f39c12;
  color: white;
  padding: 0.25rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.pricing-item h3 {
  margin-bottom: 1rem;
}

.price {
  font-size: 2rem;
  font-weight: 700;
  color: #f39c12;
  margin: 1rem 0;
}

/* GYIK */
.faq-list {
  margin: 2rem 0;
}

.faq-item {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #e9ecef;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item h3 {
  margin-bottom: 1rem;
  color: #333;
}

/* Kapcsolat információk */
.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.contact-item {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 8px;
}

.contact-item h3 {
  margin-bottom: 0.5rem;
  color: #333;
}

.contact-item a {
  color: #f39c12;
  text-decoration: none;
}

.contact-item a:hover {
  text-decoration: underline;
}

/* Facebook promó */
.facebook-promo {
  margin-top: 3rem;
  padding: 2rem;
  background: #f8f9fa;
  border-radius: 8px;
  text-align: center;
}

.facebook-link {
  margin-top: 1rem;
}

/* CTA gombok */
.page-cta {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.section-cta {
  margin-top: 2rem;
}

/* Lábléc */
.site-footer {
  background-color: #333;
  color: white;
  padding: 2rem 0;
  text-align: center;
}

.site-footer a {
  color: #f39c12;
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

/* Reszponzív design */
@media (max-width: 768px) {
  #menuToggle {
    display: block;
  }
  
  #mainNav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 1rem;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
  }
  
  #mainNav.active {
    display: flex;
  }
  
  #mainNav li {
    margin: 0.5rem 0;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: center;
  }
  
  .profile-image {
    float: none;
    margin: 1rem auto;
    display: block;
  }
  
  .pricing-table {
    grid-template-columns: 1fr;
  }
  
  .contact-info {
    grid-template-columns: 1fr;
  }
  
  .page-cta {
    flex-direction: column;
  }
}

/* Animációk */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s, transform 0.5s;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}