/* Alapértelmezett globális betűtípus: Poppins */
html { font-family: 'Poppins', sans-serif; }
body, input, button, select, textarea { font-family: inherit; }

/* Spinner méret */
.spinner-custom {
    width: 3rem !important;
    height: 3rem !important;
}

/* Kereső ikon */
.search-icon-custom {
    color: var(--zold1);
    font-size: 1.4rem;
    display: flex;
    align-items: center;
}

/* Nyelvválasztó gap */
.lang-switcher-gap {
    gap: 0.5rem;
}
.lang-link-custom {
    color: var(--zold1);
}
.lang-sep-custom {
    color: var(--zold1);
}

/* Social ikonok */
.social-icon-custom {
    background: var(--zold1);
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Admin többnyelvű táblázat stílusok */
.btn-group-vertical .btn {
    border-radius: 0.25rem !important;
    margin-bottom: 2px;
}

.btn-group-vertical .btn:last-child {
    margin-bottom: 0;
}

/* Nyelvi változatok megjelenítése */
.language-variant {
    display: flex;
    align-items: center;
    margin-bottom: 0.25rem;
}

.language-flag {
    font-size: 1.2em;
    margin-right: 0.5rem;
}

.language-content {
    flex-grow: 1;
}

/* Logó méret */
.logo-minwidth {
    min-width: 90px;
}
.logo-img-custom {
    height: 60px;
}

/* Hero szekció */
.hero-z1 { z-index: 1; }
.hero-z2 { z-index: 2; }
.hero-z4 { z-index: 4; }
.hero-video-iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: none;
    pointer-events: none;
}
.hero-overlay-block {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 3;
    background: transparent;
}
.hero-overlay-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(255,255,255,0.25);
    z-index: 2;
}
.hero-content-box {
    max-width: 600px;
    background: transparent;
}
.hero-btn-custom {
    background: rgba(107, 114, 102, 0.5);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.8);
    font-weight: 500;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
}
.hero-img-bg {
    background: url('/uploads/banner/jo-alkalom-van-arra-hogy-a-kereszteny-alapokon-allo-erok-meghatarozova-valjanak-az-europai-unioban.webp') center/cover no-repeat;
    z-index: 1;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

/* Díjak/Gyakornoki szekció */
/* Gyakornoki és Díjaink címek egységesen */
.gyak-title, .dijak-title {
  color: #6b7266;
  font-weight: 200;
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.2rem, 3.8vw, 3.2rem);
}
.dijak-desc, .gyak-desc, .dijak-list, .gyak-list {
    font-family: 'Poppins', sans-serif;
}
.dijak-img, .gyak-img {
    width: 340px;
    height: 340px;
    object-fit: cover;
}

/* Idézet szekció – hullámos háttér rétegezve */
/* Alap: celkituzes_bg.png + fallback szín; fölötte hullám (celk_hullam.png) ::before, majd finom fény-árnyék gradient ::after */
.idezet-bg {
  position: relative;
  overflow: hidden;
  background: url('/img/celkituzes_bg.png') center top / cover no-repeat; /* szín eltávolítva */
  padding: 380px 0 110px; /* alsó padding csökkentve (130 -> 110) */
  margin-bottom: 40px; /* korábbi 100px túl nagy volt */
}
/* Hullám réteg */
.idezet-bg::before {
  content: '';
  position: absolute; left: 0; top: 0; width: 100%;
  height: 300px; /* a hullám PNG magasságához igazítható */
  background: url('/img/celk_hullam.png') center top / 100% 100% no-repeat;
  z-index: 1;
  pointer-events: none;
}
/* Finom overlay a szöveg olvashatóságához */
.idezet-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg,rgba(255,255,255,0.08) 0%,rgba(255,255,255,0.04) 50%,rgba(0,0,0,0.05) 100%);
  mix-blend-mode: normal;
  z-index: 2;
  pointer-events: none;
}

.idezet-content {
  position: relative;
  z-index: 3; /* wave + overlay fölött */
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding-top: 280px; /* tovább lejjebb helyezve (+200px) */
}

/* Idézet szöveg színe sötétebb zöld, hogy jól látszódjon zold2-n */
.idezet-title, .idezet-desc {
  color: #fff !important;
  text-shadow: 0 2px 4px rgba(0,0,0,0.18);
}

.idezet-title {
  font-size: 2.2rem;
  line-height: 1.35;
  margin-bottom: 1.6rem;
}

.idezet-desc {
  font-size: 2.2rem; /* egyezzen a cím méretével */
  line-height: 1.35;
  max-width: 100%;
  margin: 0 auto 0; 
  font-weight: 400;
}
/* Egységes félkövér kiemelés az idézetben */
.idezet-kiemelt { font-weight:600; }

/* Reszponzív finomhangolás */
@media (min-width: 1400px) { .idezet-bg { padding-top: 420px; padding-bottom: 150px; } }
@media (max-width: 1199px) { .idezet-bg { padding-top: 330px; padding-bottom: 120px; } }
@media (max-width: 991px)  { .idezet-bg { padding-top: 280px; padding-bottom: 110px; } }
@media (max-width: 768px)  { .idezet-bg { padding-top: 220px; padding-bottom: 100px; } .idezet-title, .idezet-desc { font-size: 1.9rem; } }
@media (max-width: 576px)  { .idezet-bg { padding-top: 180px; padding-bottom: 90px; } .idezet-title, .idezet-desc { font-size: 1.7rem; } .idezet-content { padding-top: 255px; } }
@media (max-width: 768px)  { .idezet-content { padding-top: 265px; } }

/* Reszponzív idézet szekció */
@media (max-width: 991px) {
  .idezet-title, .idezet-desc { font-size: 1.9rem; }
}

@media (max-width: 768px) {
  .idezet-title, .idezet-desc { font-size: 1.6rem; }
  .idezet-title { margin-bottom: 1.2rem; }
}

@media (max-width: 576px) {
  .idezet-title, .idezet-desc { font-size: 1.4rem; }
  .idezet-title { margin-bottom: 1rem; }
}

/* Hírek szekció */
.hirek-title {
    color: #6b7266;
    font-weight: 200;
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.2rem, 3.8vw, 3.2rem);
}
.hirek-search-form {
    max-width: 300px;
}
:root {
    --zold1: #798171;
    --zold2: #b3bba2;
    --zold3: #e5e5dd;
    --piros: #e3716d;
    --feher: #ffffff;
    --sarga1: #e5be79;
    --sarga2: #e4d2ac;
    --sarga3: #f7f0dc;
    --sarga4: #fff9f2;
    --szurke: #504f4f;

 }

.zold1 {
    color: var(--zold1);
}   
.zold2 {
    color: var(--zold2);
}
.zold3 {
    color: var(--zold3);
}
.piros {
    color: var(--piros);
}
.sarga1 {
    color: var(--sarga1);
}
.sarga2 {
    color: var(--sarga2);
}
.sarga3 {
    color: var(--sarga3);
}
.sarga4 {
    color: var(--sarga4);
}
.szurke {
    color: var(--szurke);
}




body {
  font-family: 'Poppins', sans-serif !important;
  font-weight: 400;
  font-style: normal;
  /* Alapértelmezett szövegszín a kérés szerint */
  color: var(--zold1);
  background-color: var(--bs-light);
}

/* Általános alapértelmezett font minden elemre */
html, body, input, button, select, textarea, h1, h2, h3, h4, h5, h6, p, ul, ol, li, a, span, div, label, table, th, td, tr, form, nav, section, article, aside, footer, header {
    font-family: 'Poppins', sans-serif !important;
}

/* Cormorant Garamond csak a .cormorant osztályhoz */
.cormorant, .cormorant h1, .cormorant h2, .cormorant h3, .cormorant h4, .cormorant h5, .cormorant h6 {
    font-family: 'Cormorant Garamond', serif !important;
}
.poppins-thin {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.poppins-extralight {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: normal;
}

.poppins-light {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.poppins-regular {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.poppins-medium {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.poppins-semibold {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.poppins-bold {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.poppins-extrabold {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: normal;
}

.poppins-black {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.poppins-thin-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: italic;
}

.poppins-extralight-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: italic;
}

.poppins-light-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.poppins-regular-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.poppins-medium-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: italic;
}

.poppins-semibold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: italic;
}

.poppins-bold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.poppins-extrabold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: italic;
}

.poppins-black-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: italic;
}


.cormorant-garamond-300 {
  font-family: "Cormorant Garamond", serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
}

.cormorant-garamond-400 {
  font-family: "Cormorant Garamond", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.cormorant-garamond-500 {
  font-family: "Cormorant Garamond", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

.cormorant-garamond-600 {
  font-family: "Cormorant Garamond", serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}

.cormorant-garamond-700 {
  font-family: "Cormorant Garamond", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}

/* Egyszerű Cormorant Garamond osztály címekhez */
.cormorant {
  font-family: "Cormorant Garamond", serif;
  font-optical-sizing: auto;
}

/* Heading stílusok - egységes Poppins font */
h1, h2, h3, h4 {
  font-family: 'Poppins', sans-serif;
  font-weight: 200;
  line-height: 1.2;
}

h1 {
  font-size: 4rem;
}

h2 {
  font-size: 3rem;
}

h3 {
  font-size: 2.5rem;
}

h4 {
  font-size: 2rem;
}

/* Responzív heading méretek */
@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  h3 {
    font-size: 1.75rem;
  }
  
  h4 {
    font-size: 1.5rem;
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  h3 {
    font-size: 1.5rem;
  }
  
  h4 {
    font-size: 1.25rem;
  }
}

/* Hero carousel responzív magasságok */
.hero-carousel, #heroCarousel, .carousel-item {
  height: 936px !important;
}

@media (max-width: 1200px) {
  .hero-carousel, #heroCarousel, .carousel-item {
    height: 700px !important;
  }
}

@media (max-width: 992px) {
  .hero-carousel, #heroCarousel, .carousel-item {
    height: 600px !important;
  }
}

@media (max-width: 768px) {
  .hero-carousel, #heroCarousel, .carousel-item {
    height: 500px !important;
  }
}

@media (max-width: 576px) {
  .hero-carousel, #heroCarousel, .carousel-item {
    height: 400px !important;
  }
}

/* Hero content dobozok responzív méretezése */
.hero .container .px-4 {
  max-width: 600px;
}

@media (max-width: 992px) {
  .hero .container .px-4 {
    max-width: 500px;
  }
}

@media (max-width: 768px) {
  .hero .container .px-4 {
    max-width: 90%;
    padding: 1rem !important;
  }
}

@media (max-width: 576px) {
  .hero .container .px-4 {
    max-width: 95%;
    padding: 0.75rem !important;
  }
}

/* YouTube iframe responzív beállítások */
#heroVideo {
  width: 100vw !important;
  height: 56.25vw !important;
  min-height: 936px !important;
}

@media (max-width: 1200px) {
  #heroVideo {
    min-height: 700px !important;
  }
}

@media (max-width: 992px) {
  #heroVideo {
    min-height: 600px !important;
  }
}

@media (max-width: 768px) {
  #heroVideo {
    min-height: 500px !important;
  }
}

@media (max-width: 576px) {
  #heroVideo {
    min-height: 400px !important;
  }
}

/* Navigációs elemek színezése --zold1 színnel */
.navbar-light .navbar-nav .nav-link {
    color: var(--zold1) !important;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link:focus {
    color: var(--zold1) !important;
    opacity: 0.8;
}

.dropdown-item {
    color: var(--zold1) !important;
}

.dropdown-item:hover,
.dropdown-item:focus {
    background-color: var(--zold1) !important;
    color: white !important;
}

.navbar-toggler {
    border-color: var(--zold1) !important;
}

.navbar-toggler .fa-bars {
    color: var(--zold1) !important;
}

/* Search gomb stílusok */
.btn-outline-secondary {
    color: var(--zold1) !important;
    border-color: var(--zold1) !important;
}

.btn-outline-secondary:hover {
    background-color: var(--zold1) !important;
    border-color: var(--zold1) !important;
    color: white !important;
}

/* Responzív navigáció és felső sáv */
@media (max-width: 768px) {
  .container-fluid .container .d-flex {
    justify-content: center !important;
    flex-direction: column;
    gap: 1rem !important;
  }
  
  .lang-switcher, .social-icons {
    order: 2;
  }
  
  form.d-flex {
    order: 1;
    max-width: 100% !important;
  }
  
  .navbar-brand img {
    height: 50px !important;
  }
  
  .navbar-nav .nav-link {
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .container-fluid .container .d-flex {
    gap: 0.5rem !important;
  }
  
  form.d-flex {
    max-width: 100% !important;
  }
  
  .form-control.rounded-pill {
    font-size: 0.9rem;
  }
  
  .btn.rounded-pill {
    padding: 0.5rem 1rem !important;
  }
  
  .navbar-brand img {
    height: 45px !important;
  }
}

/* Hero gombok responzív stílusok */
.hero .btn {
  font-size: 0.9rem;
  padding: 0.5rem 1rem;
}

@media (max-width: 768px) {
  .hero .btn {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }
}

@media (max-width: 576px) {
  .hero .btn {
    font-size: 0.75rem;
    padding: 0.3rem 0.6rem;
    display: block;
    text-align: center;
    max-width: 280px;
  }
}

/* User login/profile ikonok színezése */
.btn-pmo-magenta {
    background-color: var(--zold1) !important;
    border-color: var(--zold1) !important;
    color: white !important;
}

.btn-pmo-magenta:hover {
    background-color: var(--zold1) !important;
    border-color: var(--zold1) !important;
    color: #aaaaaa !important;
}

/* Főtartalom szekciók responzív stílusai */
@media (max-width: 768px) {
  .container.py-5 {
    padding: 3rem 1rem !important;
  }
  
  .row.g-5 {
    gap: 2rem !important;
  }
  
  .col-lg-6 img {
    width: 250px !important;
    height: 250px !important;
  }
}

@media (max-width: 576px) {
  .container.py-5 {
    padding: 2rem 0.5rem !important;
  }
  
  .row.g-5 {
    gap: 1.5rem !important;
  }
  
  .col-lg-6 img {
    width: 200px !important;
    height: 200px !important;
  }
  
  .btn.rounded-pill {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    display: block;
  }
}

/* Galéria responzív stílusok */
@media (max-width: 768px) {
  .row.g-3 {
    gap: 0.5rem !important;
  }
  
  .col-6.col-md-4.col-lg-3 {
    flex: 0 0 calc(50% - 0.25rem);
  }
}

@media (max-width: 576px) {
  .col-6.col-md-4.col-lg-3 {
    flex: 0 0 calc(50% - 0.25rem);
  }
}

/* Carousel vezérlők responzív stílusok */
@media (max-width: 768px) {
  .carousel-control-prev,
  .carousel-control-next {
    width: 40px !important;
    height: 40px !important;
    opacity: 0.8;
  }
  
  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    width: 20px !important;
    height: 20px !important;
  }
}

@media (max-width: 576px) {
  .carousel-control-prev,
  .carousel-control-next {
    width: 35px !important;
    height: 35px !important;
  }
  
  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    width: 16px !important;
    height: 16px !important;
  }
}

/*** Spinner Start ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}
/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    transition: 0.5s;
    z-index: 99;
    
}


/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}


/* Szögletes, teljes szélességű, balra igazított gomb a díjak/gyakornoki szekcióhoz */
.btn-pmo-yellow {
    background: var(--sarga1) !important;
    color: #fff !important;
    border: none !important;
    border-radius: 0 !important;
    width: 100%;
    text-align: left;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 1.08rem;
    padding: 0.85em 1.5em 0.85em 1.2em;
    margin-bottom: 0.5em;
    box-shadow: none;
    transition: background 0.2s, color 0.2s;
    display: block;
}

.btn-pmo-yellow .arrow {
    float: right;
    font-size: 1.1em;
    vertical-align: middle;
    transition: transform 0.2s;
}

.btn-pmo-yellow:hover, .btn-pmo-yellow:focus {
    background: var(--sarga2) !important;
    color: #fff !important;
    text-decoration: none;
}

.btn-pmo-yellow:active {
    background: var(--sarga3) !important;
    color: var(--szurke) !important;
}

.btn-pmo-yellow:hover .arrow, .btn-pmo-yellow:focus .arrow {
    transform: translateX(4px);
}





.btn.btn-primary:hover {
    background: var(--bs-dark);
    color: var(--bs-white);
}

.btn.btn-light {
    color: var(--bs-primary);
    border: none;
}

.btn.btn-light:hover {
    color: var(--bs-white);
    background: var(--bs-dark);
}

.btn.btn-dark {
    color: var(--bs-white);
    border: none;
}

.btn.btn-dark:hover {
    color: var(--bs-primary);
    background: var(--bs-light);
}

.btn-pmo-magenta{
    background-color: var(--pmo-magenta) !important;
    color: white!important;
}

.btn-pmo-magenta:hover{ 
    background-color: var(--pmo-magenta) !important;
    color: #aaaaaa!important;
}

.btn-pmo-magenta:active{
    background-color: var(--pmo-magenta) !important;
    color: white!important;
}

/* Kiemelt blog-bejegyzés stílusa */
.blog-item.featured {
    border: 3px solid #ff0051;
    box-shadow: 0 0 24px 0 rgba(246,79,132,0.15);
    background: #fff0f6;
    transform: scale(1.04);
    z-index: 2;
    position: relative;
}
.blog-item.featured .blog-categiry {
    background: #ff0051 !important;
    color: #fff !important;
    font-weight: bold;
}
.blog-item.featured .h4,
.blog-item.featured .card-title {
    color: #ff0051 !important;
}

.blog-img img {
        height: 220px;
        object-fit: cover;
        width: 100%;
        display: block;
    }

.kiemelt-badge {
    letter-spacing: 1px;
    box-shadow: 0 2px 8px 0 rgba(246,79,132,0.10);
}

/*** Topbar Start ***/ 
.topbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
    color: var(--bs-primary);
}

.topbar .dropdown .dropdown-menu a:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

.topbar .dropdown .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light);
    padding-top: 10px;
    border: 0;
    transition: .5s;
    opacity: 1;
}
/*** Topbar End ***/


/*** Navbar Start ***/
.nav-bar {
    background: var(--bs-white);
    transition: 1s;
}

.navbar-light .navbar-brand img {
    max-height: 60px;
    transition: .5s;
}

.nav-bar .navbar-light .navbar-brand img {
    max-height: 50px;
}

.navbar .navbar-nav .nav-item .nav-link {
    padding: 0;
}

.navbar .navbar-nav .nav-item {
    display: flex;
    align-items: center;
    padding: 15px;
}

.navbar-light .navbar-nav .nav-link {
    color: var(--zold1) !important;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link:focus {
    color: var(--zold1) !important;
    opacity: 0.8;
}

.dropdown-item {
    color: var(--zold1) !important;
}

.dropdown-item:hover,
.dropdown-item:focus {
    background-color: var(--zold1) !important;
    color: white !important;
}

.navbar-toggler {
    border-color: var(--zold1) !important;
}

.navbar-toggler .fa-bars {
    color: var(--zold1) !important;
}

/* Menü alsó csík és díszítő ikon stílusok */
.navbar-nav {
  border-bottom: 1.5px solid var(--zold1);
  padding-bottom: 0.5rem;
  position: relative;
}


.mainmenu {
  border-bottom: 1.5px solid var(--zold1);
  padding-bottom: 0.5rem;
  position: relative;
  display: flex;
  width: auto;
  min-width: 0;
  max-width: 100%;
}


.mainmenu-link {
  color: var(--zold1) !important;
  font-weight: 400;
  letter-spacing: 0.01em;
  font-size: 1.01rem;
  padding-left: 1.2rem !important;
  padding-right: 1.2rem !important;
  padding-top: 0.1rem !important;
  padding-bottom: 0.1rem !important;
  font-family: 'Poppins', sans-serif;
  border-radius: 0;
  background: none;
  box-shadow: none;
  border: none;
  font-weight: 400 !important;
  transition: color 0.2s;
}

.mainmenu-link.mainmenu-link-active {
  font-weight: 700 !important;
  letter-spacing: 0.01em;
}

.mainmenu-link:hover,
.mainmenu-link:focus {
  color: var(--zold1) !important;
  opacity: 0.8;
}

.mainmenu-link.fw-bold,
.mainmenu-link.active {
  font-weight: 600 !important;
}

.mainmenu-link:hover,
.mainmenu-link:focus {
  color: var(--zold1) !important;
  opacity: 0.8;
}

.navbar-nav .nav-link.fw-bold,
.navbar-nav .nav-link.active {
  font-weight: 700 !important;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
  color: var(--zold1) !important;
  opacity: 0.8;
}

/* Díszítő levél ikon csak desktopon */
.nav-item.position-relative span svg {
  display: block;
}

@media (max-width: 991px) {
  .navbar-nav {
    border-bottom: none;
    padding-bottom: 0;
  }
  .nav-item.position-relative span svg {
    display: none;
  }
}

/* Menü jobbra igazítása */
.navbar-collapse.justify-content-end .navbar-nav {
  justify-content: flex-end !important;
}

/* Statikus hullámos elválasztó - teljes szélességű, magasabb */

.hullamok-wrapper {
  overflow: hidden;
  position: relative;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  display: block;
  padding: 0;
  box-sizing: border-box;
  background: none;
}

.hullamok-wrapper .waves-svg { width: 100%; height: 220px; display:block; }

.hullamok-svg {
    width: 100%;
    height: 100%;
    display: block;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Reszponzív hullám méretek - arányosan kisebb */
@media (max-width: 991px) { .hullamok-wrapper .waves-svg { height: 180px; } }
@media (max-width: 768px) { .hullamok-wrapper .waves-svg { height: 140px; } }
@media (max-width: 576px) { .hullamok-wrapper .waves-svg { height: 110px; } }

/* Galéria cím */
.galeria-title {
    color: #6b7266;
    font-weight: 200;
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.2rem, 3.8vw, 3.2rem);
}

/* Footer */
.footer-bg {
    background: #6b7266 !important;
}
.footer-logo {
    height: 60px;
}
.footer-logo-white {
    height: 60px;
    filter: brightness(0) invert(1);
    /* Az SVG-t fehér színűre változtatja háttér nélkül */
    /* Alternatív megoldás régebbi böngészőkhöz: */
    /* filter: grayscale(100%) brightness(200%); */
}
.footer-brand-text {
    font-size: 1.1rem;
}
.footer-contact-text {
    font-size: 0.95rem;
}

/* --- Footer force white text --- */
.footer,
.footer *:not(img) {
  color:#fff !important;
}
.footer a,
.footer a:visited,
.footer a:hover,
.footer a:focus {
  color:#fff !important;
  text-decoration:none;
}
.footer .nav-link,
.footer .nav-link:hover,
.footer .nav-link:focus {
  color:#fff !important;
}

/* Reszponzivitás fejlesztése */
@media (max-width: 991px) {
    .search-icon-custom {
        font-size: 1.2rem;
    }
    .social-icon-custom {
        width: 27px;
        height: 27px;
    }
    .logo-img-custom {
        height: 50px;
    }
    .dijak-img, .gyak-img {
        width: 280px;
        height: 280px;
    }
    .hero-content-box {
        max-width: 100%;
        padding: 1rem;
    }
}

@media (max-width: 768px) {
    .dijak-img, .gyak-img {
        width: 240px;
        height: 240px;
    }
    .hero-content-box {
        padding: 0.5rem;
    }
    .lang-switcher-gap {
        gap: 0.3rem;
    }
}

@media (max-width: 576px) {
    .social-icon-custom {
        width: 24px;
        height: 24px;
        font-size: 0.8rem;
    }
    .dijak-img, .gyak-img {
        width: 200px;
        height: 200px;
    }
    .btn-pmo-yellow {
        font-size: 0.95rem;
        padding: 0.75em 1em;
    }
}

/* Admin Sidebar */
.admin-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 250px;
    height: 100vh;
    background: #343a40;
    z-index: 1050;
    padding: 0;
    transition: width 0.3s ease;
    overflow-y: auto;
    overflow-x: visible;
    box-shadow: 2px 0 5px rgba(0,0,0,0.1);
}

.admin-sidebar.collapsed {
    width: 60px;
}

.sidebar-header {
    border-bottom: 1px solid #495057;
    background: #2c3034;
}

.admin-sidebar.collapsed .sidebar-header h6 {
    opacity: 0;
}

.admin-sidebar .nav-link {
    color: #adb5bd;
    padding: 12px 20px;
    border-radius: 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    white-space: nowrap;
    text-decoration: none;
}

.admin-sidebar .nav-link:hover {
    background: #495057;
    color: #fff;
    text-decoration: none;
}

.admin-sidebar .nav-link.active {
    background: #007bff;
    color: #fff;
}

.admin-sidebar .nav-link i {
    width: 20px;
    margin-right: 10px;
    text-align: center;
    flex-shrink: 0;
}

.sidebar-toggle {
    position: fixed;
    top: 20px;
    left: 250px;
    width: 40px;
    height: 40px;
    background: #343a40;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 0 8px 8px 0;
    transition: all 0.3s ease;
    z-index: 1051;
    border: 1px solid #495057;
    font-size: 16px;
    box-shadow: 2px 0 5px rgba(0,0,0,0.2);
}

.sidebar-toggle:hover {
    background: #495057;
    color: #fff;
    transform: translateX(2px);
    box-shadow: 3px 0 8px rgba(0,0,0,0.3);
}

.sidebar-toggle i {
    transition: transform 0.3s ease;
    font-size: 14px;
}

.admin-sidebar.collapsed .sidebar-toggle {
    left: 60px;
}

.admin-sidebar.collapsed .sidebar-toggle i {
    transform: rotate(180deg);
}

.sidebar-toggle:hover {
    background: #495057;
    color: #fff;
}

.sidebar-footer {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    padding: 0 20px;
}

.sidebar-footer .nav-link {
    background: #dc3545;
    color: #fff !important;
    text-align: center;
    border-radius: 5px;
}

.sidebar-footer .nav-link:hover {
    background: #c82333;
}

.sidebar-text {
    opacity: 1;
    transition: opacity 0.3s ease;
    margin-left: 5px;
}

.admin-sidebar.collapsed .sidebar-text {
    opacity: 0;
    display: none;
}

.admin-sidebar.collapsed .nav-link {
    padding: 12px 20px;
    justify-content: center;
}

.admin-sidebar.collapsed .nav-link i {
    margin-right: 0;
}

.admin-sidebar.collapsed .sidebar-toggle i {
    transform: rotate(180deg);
}

.admin-sidebar.collapsed .sidebar-footer {
    padding: 0 10px;
}

.admin-sidebar.collapsed .sidebar-header {
    text-align: center;
}

.admin-sidebar.collapsed .sidebar-header .sidebar-text {
    display: none;
}

/* Body eltolása admin sidebar esetén */
body.admin-has-sidebar {
    margin-left: 250px;
    transition: margin-left 0.3s ease;
}

body.admin-has-sidebar.sidebar-collapsed {
    margin-left: 60px;
}

/* Tooltip stílus az összecsukott állapotban */
.admin-sidebar.collapsed .nav-link {
    position: relative;
}

.admin-sidebar.collapsed .nav-link:hover::after {
    content: attr(title);
    position: absolute;
    left: 55px;
    top: 50%;
    transform: translateY(-50%);
    background: #000;
    color: #fff;
    padding: 5px 10px;
    border-radius: 4px;
    white-space: nowrap;
    z-index: 1060;
    font-size: 12px;
}

/* Reszponzív kezelés */
@media (max-width: 991px) {
    .admin-sidebar {
        transform: translateX(-100%);
        width: 250px;
    }
    
    .admin-sidebar.mobile-open {
        transform: translateX(0);
    }
    
    .admin-sidebar.collapsed {
        transform: translateX(-100%);
    }
    
    body.admin-has-sidebar {
        margin-left: 0;
    }
    
    body.admin-has-sidebar.sidebar-collapsed {
        margin-left: 0;
    }
}

/* ÚJ HEADER DIZÁJN - Logo overlay és aktív menü dekoráció */
.header-with-overlay-logo {
    position: relative;
    z-index: 10;
}

.logo-overlay {
    top: -30px;
    left: 20px;
    z-index: 15;
}

.logo-img-overlay {
    height: 80px;
    width: auto;
}

/* A menü linkek pozícionálásához és dekorációjához */
.navbar-nav .nav-link.mainmenu-link-active {
    position: relative;
}

/* Aktív menüpont dekoráció pseudo-elementtel */
.navbar-nav .nav-link.mainmenu-link-active::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background-image: url('/img/300dpi_grafikai-elemek_PMAarculat2025_71.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 20;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .logo-overlay {
        position: static;
        transform: none;
        margin-bottom: 1rem;
    }
    
    .logo-img-overlay {
        height: 60px;
    }
    
    .navbar-nav .nav-link.mainmenu-link-active::after {
        display: none;
    }
}
