.elementor-widget-container .eael-protected-content-message{font-family:var( --e-global-typography-secondary-font-family ), Sans-serif;font-weight:var( --e-global-typography-secondary-font-weight );}.elementor-widget-container .protected-content-error-msg{font-family:var( --e-global-typography-secondary-font-family ), Sans-serif;font-weight:var( --e-global-typography-secondary-font-weight );}.elementor-12323 .elementor-element.elementor-element-e532f84{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-12323 .elementor-element.elementor-element-21a669e{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-widget-html .eael-protected-content-message{font-family:var( --e-global-typography-secondary-font-family ), Sans-serif;font-weight:var( --e-global-typography-secondary-font-weight );}.elementor-widget-html .protected-content-error-msg{font-family:var( --e-global-typography-secondary-font-family ), Sans-serif;font-weight:var( --e-global-typography-secondary-font-weight );}/* Start custom CSS for html, class: .elementor-element-c26f934 */@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;700&display=swap');

.hero-section {
  position: relative;
  width: 100%;
  min-height: 60vh;
  /* Alapkép (1.) */
  background: url('https://jgk.hu/wp-content/uploads/2025/06/img-20250529-135228-1066x800-1-1.jpg') center center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  color: white;
  overflow: hidden;
  padding: 80px 20px;
}

/* 2. kép – finom crossfade a base háttér felett */
.hero-section::after {
  content: "";
  position: absolute; inset: 0;
  background: url('https://jgk.hu/wp-content/uploads/2025/06/utcakep-teleki-laszlo-ter-5-1.jpg') center center / cover no-repeat;
  opacity: 0;
  animation: heroFade 12s ease-in-out infinite;
  z-index: 0; /* overlay alá kerül */
}

@keyframes heroFade {
  0%, 35%   { opacity: 0; }
  50%, 85%  { opacity: 1; }
  100%      { opacity: 0; }
}

.hero-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  /* kicsit erősebb, hogy világos képen is olvasható legyen */
  background: rgba(0, 0, 0, 0.35);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-content h1 {
  font-size: 48px;
  font-weight: 700;
  background: linear-gradient(to right, #54C98D 0%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  animation: fade-in-up 1.2s ease-out forwards;
  opacity: 0;
  margin-bottom: 10px;
}

.hero-content p {
  font-size: 20px;
  font-weight: 500;
  color: #ffffff;
  animation: fade-in-up 1.6s ease-out forwards;
  opacity: 0;
}

@keyframes fade-in-up {
  from { transform: translateY(20px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

.hero-badge {
  position: absolute;
  bottom: 60px;
  right: 0;
  background-color: #54C98D;
  padding: 22px 45px;
  border-radius: 100px 0 0 100px;
  font-size: 45px;
  font-weight: 700;
  color: #fff;
  z-index: 2;
  line-height: 1.1;
  font-family: 'Montserrat', sans-serif;
}

@media (max-width: 768px) {
  .hero-section {
    min-height: 50vh;
    padding: 60px 15px;
  }
  .hero-content h1 {
    font-size: 32px;
  }
  .hero-content p {
    font-size: 16px;
  }
  .hero-badge {
    font-size: 24px;
    padding: 14px 28px;
    right: 50%;
    transform: translateX(50%);
    bottom: 30px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-15c3180 */@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500;600;700&display=swap');

:root{
  --jgk-text:#707070;
  --jgk-green:#54C98D;
  --jgk-border:#e5e7eb;
}

body{ font-family:'Poppins',sans-serif; color:var(--jgk-text); }

/* ===== Tartalom konténer ===== */
.jgk-wrap{
  max-width:1080px;
  margin:0 auto;
  padding:28px 16px;
}

/* ===== JGK – box stílus ===== */
.jgk-box{
  background:#fff;
  border:1px solid var(--jgk-border);
  border-radius:12px;
  box-shadow:0 8px 24px rgba(0,0,0,.06);
  padding:24px;
  margin-bottom:30px;
  line-height:1.7;
}

.jgk-head{
  display:flex;
  align-items:center;
  gap:10px;
  margin:-8px 0 10px;
}
.jgk-head .ico{ font-size:22px }
.jgk-head .title{ font-weight:700; color:var(--jgk-green); font-size:20px }

.jgk-sep{
  height:2px;
  background:#eaf7f1;
  margin:6px 0 14px;
  border-radius:2px;
}

/* Zöld bullet lista */
.jgk-list{ list-style:none; margin:10px 0; padding:0 }
.jgk-list li{
  position:relative;
  padding-left:22px;
  margin:8px 0;
}
.jgk-list li::before{
  content:"";
  position:absolute; left:0; top:.55em;
  width:10px; height:10px; border-radius:50%;
  background:var(--jgk-green);
}

/* Linkek a dobozokban */
.jgk-box a{
  color:var(--jgk-green);
  text-decoration:none;
  border-bottom:1px dashed transparent;
  word-break:break-word;
}
.jgk-box a:hover{ border-bottom-color:var(--jgk-green) }

/* ===== Képrács ===== */
.jgk-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}
@media (max-width:900px){
  .jgk-grid{ grid-template-columns:1fr; }
}
.jgk-cover{
  width:100%;
  aspect-ratio:16/10;
  border-radius:12px;
  object-fit:cover;
  border:1px solid var(--jgk-border);
  box-shadow:0 8px 24px rgba(0,0,0,.06);
}

/* ===== Ajánlatkérő űrlap ===== */
.jgk-form{ display:grid; gap:14px }

.jgk-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}
@media (max-width:800px){
  .jgk-row{ grid-template-columns:1fr; }
}

.jgk-field{ display:flex; flex-direction:column; gap:6px }
.jgk-field label{ font-size:14px; font-weight:600; color:#444 }

.jgk-field input,
.jgk-field textarea{
  width:100%;
  padding:12px 12px;
  border:1px solid var(--jgk-border);
  border-radius:10px;
  background:#fff;
  color:#333;
  font:inherit;
  outline:none;
}
.jgk-field textarea{ min-height:120px; resize:vertical }

.jgk-field input:focus,
.jgk-field textarea:focus{
  border-color:var(--jgk-green);
  box-shadow:0 0 0 3px rgba(84,201,141,.15);
}

.jgk-actions{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
  margin-top:4px;
}
.jgk-note{ font-size:13px; opacity:.85 }

.jgk-btn{
  background:var(--jgk-green);
  color:#fff;
  border:0;
  cursor:pointer;
  padding:12px 18px;
  border-radius:10px;
  font-weight:700;
  box-shadow:0 6px 16px rgba(0,0,0,.12);
  transition:filter .15s ease, transform .02s ease;
}
.jgk-btn:hover{ filter:brightness(.95) }
.jgk-btn:active{ transform:translateY(1px) }
.jgk-btn:focus-visible{ outline:3px solid #2d9f73; outline-offset:2px }/* End custom CSS */