/* Base Styles */
:root {
  --primary: #f4a460;
  --primary-dark: #e38d4a;
  --primary-light: #fef3c7;
  --secondary: #f0f9ff;
  --text: #0f172a;
  --text-light: #64748b;
  --background: #ffffff;
  --background-light: #f8fafc;
  --border: #e2e8f0;
  --border-dark: #cbd5e1;
  --success: #10b981;
  --warning: #f59e0b;
  --error: #ef4444;
  --yellow: #fbbf24;
  --yellow-light: #fef3c7;
  --blue: #3b82f6;
  --blue-light: #dbeafe;
  --green: #f4a460;
  --green-light: #fef3c7;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--text);
  line-height: 1.6;
  background-color: var(--background);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--primary-dark);
}

ul {
  list-style-position: inside;
}

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

/* Button Styles */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 4px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-size: 16px;
}

.btn-primary {
  background-color: var(--primary);
  color: white;
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  color: white;
}

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

.btn-secondary:hover {
  background-color: var(--primary-dark);
  color: white;
}

.btn-full {
  width: 100%;
}
.hero-section {
  background-color: var(--background-dark);
  color: white;
  padding: 30px 0;
  position: relative;
  overflow: hidden;
}

/* Add this new hero background styling */
.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background-image: url("/public/csaladkep1.png");
  background-size: cover;
  background-position: center;
  opacity: 0.7;
}

/* Add this overlay for the color filter */
.hero-background::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgb(0 0 0 / 60%), rgb(0 0 0 / 60%));
  z-index: 1;
}

.hero-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  z-index: 2; /* Ensure content is above the background */
}

.hero-left {
  max-width: 60%;
}
/*
.logo-container {
  margin-bottom: 20px;
}
*/
.logo {
  height: 90px;
}

.logo-container a {
  display: inline-block;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.logo-container a:hover {
  opacity: 0.9;
}

.hero-badge {
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.20);
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 14px;
  margin-bottom: 15px;
  
}

.hero-text h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-text p {
  font-size: 16px;
  margin-bottom: 10px;
  max-width: 600px;
}

.hero-highlight {
  color: var(--primary);
  font-weight: 600;
}

.hero-buttons {
  margin-top: 25px;
  margin-bottom: 15px;
}

.hero-info {
  font-size: 16px;
  font-weight: 500;
  margin-top: 15px;
}

/* Contact Form */
.contact-form-container {
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 4px;
  padding: 25px;
  width: 350px;
}

.form-header {
  margin-bottom: 20px;
}

.form-header h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.form-header p {
  font-size: 14px;
  margin-bottom: 5px;
}

.contact-form .form-group {
  margin-bottom: 15px;
}

.form-label {
  display: block;
  margin-bottom: 5px;
  font-size: 14px;
}

.form-row {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}

.form-row .form-group {
  flex: 1;
  margin-bottom: 0;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid var(--border-dark);
  border-radius: 4px;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.contact-form textarea {
  height: 80px;
  resize: vertical;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
}

.checkbox-group input {
  width: auto !important;
  margin-right: 10px;
  margin-top: 5px;
}

.checkbox-group label {
  font-size: 14px;
}

.contact-phone {
  margin-top: 20px;
  text-align: center;
}

.contact-phone p {
  font-size: 14px;
  margin-bottom: 5px;
}

.phone-number {
  font-size: 20px;
  font-weight: 700;
  color: black;
  display: block;
}
.phone-number-top {
  font-size: 20px;
  font-weight: 700;
  color: #f0f9ff;
  display: block;
}
/* Highlight Section */
.highlight-section {
  padding: 60px 0 30px;
  text-align: center;
}

.highlight-badge {
  display: inline-block;
  background-color: var(--primary);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.highlight-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.highlight-description {
  font-size: 18px;
  color: var(--text-light);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Info Banner */
.info-banner {
  margin: 30px 0;
}

.info-banner-content {
  background-color: var(--secondary);
  color: black;
  padding: 20px;
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.info-banner-content p {
  font-size: 16px;
}

/* Program Section
.program-section {
  padding: 60px 0;
}
*/
.section-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #f77d15;
/*  text-align: center; */
}

.section-subtitle {
  font-size: 20px;
  color: var(--text-light);
  margin-bottom: 40px;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}

.package-card {
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  background-color: var(--background);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.package-image {
  height: 340px;
  overflow: hidden;
  background-color: #f8f8f8;
  border-radius: 8px;
  margin: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.package-image img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
}


.package-header {
  padding: 15px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.package-title {
  font-size: 24px;
  font-weight: 700;
}

.package-subtitle {
  font-size: 16px;
  color: var(--text-light);
}

.package-details {
  padding: 15px;
  border-bottom: 1px solid var(--border);
}

.package-description {
  font-size: 16px;
  margin-bottom: 10px;
}

.package-info {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 5px;
}
.package-price {
  padding: 15px;
}

.price-original {
  font-size: 18px;
  text-decoration: line-through;
  color: var(--text-light);
  margin-bottom: 10px;
}

.price-details {
  margin-bottom: 15px;
}

.price-info {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 5px;
}

.price-components {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 3px;
}

.price-final {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
}

/* Add this new button class for centered buttons */
.btn-center {
  width: auto;
  margin: 0 auto;
  display: block;
}

/* Update the package card button styling */
.package-card .btn {
  border-radius: 4px;
  margin: 15px auto;
  display: block;
  width: 50%;
}


.program-disclaimer {
  font-size: 14px;
  color: var(--text-light);
  font-style: italic;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.tamogatasmenet{
  background-color: #f8f8f8;
  padding-bottom: 10px;
}
.megjegyzes{
  background-color: #f8f8f8;
  padding-bottom: 10px;

}

.tamogatasfeltel {
  background-color: #f8f8f8;
  padding-bottom: 10px;
}
.eligibility-text {
  margin-bottom: 30px;
}
.eligibility-list-process li{
  margin-left: 30px;
  margin-bottom: 15px;
  font-size: 16px;
}
/* Eligibility Section */
.eligibility-section {
  padding-top: 60px;
  padding-bottom: 10px;
  background-color: #f8f8f8;
}
.eligibility-content {
 /* max-width: 800px;*/
  margin: 30px 0;
}

.eligibility-list li {
  margin-bottom: 15px;
  font-size: 16px;
}

/* FAQ Section */
.faq-section {
  padding: 60px 0;
  background-color: #f8f8f8;

}

.faq-container {
  max-width: 800px;
  margin: 30px 0;
}

.faq-item {
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 20px;
}

.faq-question h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--primary);
}

.faq-answer {
  font-size: 16px;
  color: var(--text-light);
}

.faq-answer ul {
  margin-top: 10px;
  margin-left: 20px;
}

.faq-answer li {
  margin-bottom: 5px;
}

/* Why Us Section */
.why-us-section {
  padding: 60px 0;
  background-color: #f8f8f8;
}

.why-us-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.why-us-text {
  padding: 20px;
}

.why-us-text .section-title {
  text-align: left;
  margin-bottom: 20px;
}

.why-us-list {
  margin-bottom: 30px;
}

.why-us-list li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.why-us-list li::before {
  content: "✓";
  color: var(--primary);
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* Video Section */
.video-section {
  padding: 60px 0;
}

.video-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-top: 30px;
}

.video-text {
  font-size: 16px;
}

.video-text p {
  margin-bottom: 20px;
}

.video-player {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}

.video-thumbnail {
  width: 100%;
  display: block;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background-color: rgba(227, 6, 19, 0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* Contact Section */
.contact-section {
  padding: 60px 0;
  background-color: #f8f8f8;
  text-align: center;
}

.contact-content {
  margin-top: 30px;
}

.contact-text {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 30px;
}

.contact-text p {
  margin-bottom: 15px;
  font-size: 16px;
}

.contact-form-wrapper {
  /*display: grid; */
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}

.contact-form-inline {
  width: 100%;
}

.form-row {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

.form-row .form-group {
  flex: 1;
}

.form-row .full-width {
  width: 100%;
}

.contact-form-inline input,
.contact-form-inline textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background-color: white;
}

.contact-form-inline textarea {
  height: 120px;
  resize: vertical;
}

.contact-image img {
  border-radius: 8px;
  width: 100%;
}

/* Footer */
.site-footer {
  background-color: var(--background-dark);
  color: black;
  padding: 40px 0 20px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.footer-contact {
  text-align: center;
}

.footer-contact p {
  font-size: 14px;
  margin-bottom: 5px;
}

.footer-info {
  text-align: right;
}

.footer-info p {
  font-size: 14px;
  margin-bottom: 5px;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid var(--border-dark);
  font-size: 14px;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .hero-content {
    flex-direction: column;
  }

  .hero-left {
    max-width: 100%;
    margin-bottom: 30px;
  }

  .contact-form-container {
    width: 100%;
    max-width: 500px;
  }

  .why-us-content,
  .video-content,
  .contact-form-wrapper {
    grid-template-columns: 1fr;
  }

  .contact-image {
    order: -1;
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 40px 0;
  }

  .hero-text h1 {
    font-size: 28px;
  }

  .hero-text p {
    font-size: 16px;
  }

  .highlight-title,
  .section-title {
    font-size: 24px;
  }

  .highlight-description,
  .section-subtitle {
    font-size: 16px;
  }

  .info-banner-content {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .footer-content {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer-info {
    text-align: center;
  }

  .form-row {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 576px) {
  .packages-grid {
    grid-template-columns: 1fr;
  }

  .package-card {
    max-width: 350px;
    margin: 0 auto;
  }
}

