/*
Theme Name: Rinzler
*/

/* =========================
   RESET + ALAPOK
   ========================= */

html { box-sizing: border-box; }

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}


body {
  font-family: 'Space Grotesk';
  line-height: 1.6;
  color: #111;
}

h1, h2, h3 {
  font-family: 'Space Grotesk';
}

a {
  text-decoration: none;
  color: inherit;
}

html, body {
  margin: 0;
  padding: 0;
  background-color: #082452;
  overflow-x: hidden;
  max-width: 100%;
}



/* =========================
   GOMB (BTN)
   ========================= */
.btn {
  border-radius: 4px;
  position: relative;
  display: inline-block;
  padding: 1rem 2rem;
  background: linear-gradient(180deg, rgba(20, 30, 60, 0.7) 0%, rgba(20, 30, 60, 0.4) 100%);
  color: #ffffff;
  text-transform: uppercase;
  font-size: 1rem;
  letter-spacing: 0.1em;
  border: 1px solid white;
  cursor: pointer;
  overflow: hidden;
  text-decoration: none;
  transition: color 0.4s ease, border-color 0.4s ease, background-color 0.4s ease;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #3B3B4F 0%, #4B4E66 100%);
  z-index: 0;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.4s ease;
}

.btn:hover::before {
  clip-path: inset(0 0 0 0);
}

.btn span {
  position: relative;
  z-index: 1;
  color: #ffffff;
  transition: color 0.4s ease;
}

.btn:hover span {
  color: white;
}


/* =========================
   HERO
   ========================= */
.hero {
  padding: 120px 20px 80px;
  background: linear-gradient(180deg, #0b1840 0%, #0754a7 100%);
  color: #f9fafb;
  text-align: center;
}

.hero-inner {
  max-width: 900px;
  margin: 0 auto;
}

.hero h1 {
  font-size: clamp(2.2rem, 4vw, 3rem);
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.hero-subtitle {
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto 2rem auto;
  color: #e5e7eb;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
  
}

.hero .btn-primary,
.hero .btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 26px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.18s ease;
}

.hero .btn-primary {
  background: #f59e0b;
  border: 1px solid #f59e0b;
  color: #111827;
  
}

.hero .btn-primary:hover {
  background: #fbbf24;
  border-color: #fbbf24;
  transform: translateY(-1px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.hero .btn-outline {
  background: transparent;
  border: 1px solid #f9fafb;
  color: #f9fafb;
}

.hero .btn-outline:hover {
  background: #f9fafb;
  color: #111827;
  transform: translateY(-1px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  font-size: 0.9rem;
}

.hero-highlights span {
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(148, 163, 184, 0.45);
  backdrop-filter: blur(6px);
}

@media (max-width: 600px) {
  .hero { padding-top: 100px; }
  .hero-subtitle { font-size: 0.95rem; }
  .hero-highlights span { font-size: 0.85rem; }
}

/* Typewriter */
.text-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 90px;
}

#typewriter {
  font-size: clamp(1.6rem, 6vw, 3rem);
  font-weight: 700;
  color: #f9fafb;
  white-space: normal;
  display: inline-block;
  overflow: hidden;

  border-right: .12em solid #f59e0b;
  line-height: 1.2;
  max-width: 90vw;
  text-align: center;
}

#typewriter.done {
  border-right-color: transparent;
}

@media (max-width: 480px) {
  .text-wrapper { min-height: 70px; }
  #typewriter { font-size: 1.8rem; max-width: 100%; }
}

.scroll-down {
  margin-top: 40px;
  font-size: 20px;
  color: #ffffff99;
  animation: scroll-bounce 2s infinite;
  cursor: default;
  pointer-events: none;
  user-select: none;
  display: flex;
  justify-content: center;
}

@keyframes scroll-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}


/* =========================
   CTA SECTION
   ========================= */
.cta-section {
  position: relative;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  background: linear-gradient(180deg, #fb9d09 0%, #f18f01 100%);
  color: #1F1F1F;
  text-align: center;
  padding: 40px 20px;
}

.cta-sub {
  color: #1F1F1F;
  font-size: 1.55rem;
  font-weight: 600;
  margin-bottom: 0px;
}

.cta-headline {
  margin-top: 20px;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 30px;
  line-height: 1.4;
}

.cta-btn {
  position: relative;
  display: inline-block;
  padding: 1rem 2rem;
  background-color: #1D1E27;
  color: #ffffff;
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  border: 1px solid white;
  cursor: pointer;
  overflow: hidden;
  text-decoration: none;
  transition: color 0.38s ease, border-color 0.4s ease, background-color 0.4s ease;
  border-radius: 2px;
  z-index: 0;
}

.cta-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #2a263a;
  z-index: -1;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.4s ease;
}

.cta-btn:hover::before {
  clip-path: inset(0 0 0 0);
  background-color: #3c3755;
}

.cta-btn span {
  position: relative;
  z-index: 1;
  color: #ffffff;
  transition: color 0.4s ease;
}

.cta-btn:hover span {
  color: #ffffff;
}


/* =========================
   NAVBAR (DESKTOP ALAP)
   ========================= */

/* alap navbar */
.site-navbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: transparent;
  color: #f4f3ee;
  z-index: 999;
  transition: all 0.3s ease;
  padding: 1rem 0;
  min-height: 80px;
  max-height: 80px;
  display: flex;
  align-items: center;
}

/* scroll után (főoldalon tipikusan) */
.site-navbar.scrolled {
  position: fixed;
  background: #FBFBFF;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  color: #0C1031;
}

body:not(.home) .site-navbar {
  position: relative;
  background: #F0F6F6;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  color: #0C1031;
}

/* belső layout */
.site-navbar .container {
  flex-grow: 1;
  width: 100%;
  max-width: 100%;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-navbar .nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: auto;
  padding: 0 1.5rem;
  min-height: 80px;
}

/* logo */
.site-logo {
  padding-top: 10px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  padding-left: 0;
}

.site-logo img {
  height: 70px;
  width: auto;
  display: block;
  padding-top: 10px;
  object-fit: contain;
}

/* checkbox (hamburger) */
.nav-toggle { display: none; }

/* main nav */
.main-nav {
  display: flex;
  justify-content: flex-end;
}

.main-menu {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

/* linkek */
.site-navbar .main-nav a {
  color: #f4f3ee;
  text-decoration: none;
  font-weight: 500;
}

.site-navbar .main-nav a:hover {
  text-decoration: underline;
}

/* CTA gomb a navban */
nav .cta-button a {
  background-color: #f59e0b;
  color: #0f172a !important;
  padding: 10px 16px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);

  /* transition csak itt! */
  transition: background 0.45s ease, transform 0.25s ease, box-shadow 0.25s ease!important;
}

nav .cta-button a:hover {
  background-color:  #fbbf24;
  transform: translateY(-2px);
  box-shadow: 0 5px 14px rgba(0, 0, 0, 0.35);
}


/* dropdown */
.menu-item-has-children {
  position: relative;
}

.menu-item-has-children > a.dropdown-toggle {
  color: #f4f3ee;
  font-weight: 500;
  text-decoration: none;
  pointer-events: none;
  cursor: default;
}

/* ha nálad button a toggle: */
.menu-item-has-children > .dropdown-toggle {
  background: none;
  border: none;
  color: #f4f3ee;
  font-weight: 500;
  font-size: 1rem;
  padding: 0;
  cursor: pointer;
  display: inline;
  line-height: inherit;
  font-family: inherit;
  text-align: left;
}

.menu-item-has-children > .dropdown-toggle i {
  margin-left: 0.4em;
  font-size: 0.8em;
}

.menu-item-has-children > .dropdown-toggle:hover {
  text-decoration: underline;
}

.menu-item-has-children .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 9999;
  background-color: #0C1031;
  border-radius: 6px;
  padding: 0;
  margin: 0;
  min-width: 165px;
  list-style: none;
  color: #F0F6F6;
  display: block;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.2s ease-in-out;
}

.menu-item-has-children:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.sub-menu li {
  display: block;
  padding: 0;
  margin: 0;
  float: none;
}

.sub-menu li a {
  display: block;
  padding: 6px 16px;
  font-size: 14px;
  font-weight: 500;
  color: #F0F6F6;
  text-align: left;
  text-decoration: none;
  line-height: 1.3;
  border-radius: 6px;
  transition: background 0.2s ease;
}

.sub-menu li a:hover {
  background-color: #ed970e;
  color: #020617!important;
  border-radius: 6px;
}


/* =========================
   NAVBAR SZÍNSZABÁLYOK (DESKTOP)
   ========================= */
@media (min-width: 769px) {

  /* FŐOLDAL alap */
  body.home .site-navbar .main-menu a,
  body.home .site-navbar .dropdown-toggle {
    color: #fff;
  }

  /* FŐOLDAL scroll után */
  body.home .site-navbar.scrolled .main-menu a,
  body.home .site-navbar.scrolled .dropdown-toggle {
    color: #0C1031;
  }

  body.home .site-navbar .sub-menu li a { color: #ffffff; }
  body.home .site-navbar.scrolled .sub-menu li a { color: #ffffff; }

  /* ALALOLDALAK */
  body:not(.home) .site-navbar .sub-menu { background-color: #0C1031; }
  body:not(.home) .site-navbar .sub-menu li a { color: #fff; }

  body:not(.home) .site-navbar .main-menu a,
  body:not(.home) .site-navbar .dropdown-toggle {
    color: #0C1031;
  }

  /* CTA szín */
  body.home .site-navbar.scrolled .cta-button a { color: #ffffff; }
  body:not(.home) .site-navbar .cta-button a { color: #ffffff; }
}


/* =========================
   HAMBURGER IKON (alap)
   ========================= */
.nav-toggle-label {
  display: none;
  position: relative;
  z-index: 999;
  cursor: pointer;
}

.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after {
  display: block;
  background: white;
  height: 3px;
  width: 25px;
  position: absolute;
  transition: 0.3s ease;
  content: '';
}

.nav-toggle-label span {
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.nav-toggle-label span::before { top: -8px; }
.nav-toggle-label span::after { top: 8px; }

.nav-toggle:checked + .nav-toggle-label span { background: transparent; }

.nav-toggle:checked + .nav-toggle-label span::before {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle:checked + .nav-toggle-label span::after {
  transform: rotate(-45deg) translate(5px, -5px);
}


/* =========================
   MOBIL NAVBAR (EGYETLEN BLOKK!)
   ========================= */
@media (max-width: 768px) {

  .nav-toggle-label { display: block; }

  .main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #0a0d2a;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    z-index: 998;
    padding-top: 80px;
    width: 100vw;
    max-width: 100vw;
  }

  .nav-toggle:checked ~ .main-nav { transform: translateY(0); }

  .main-menu {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    margin: 0;
    padding: 0;
    gap: 0;
  }

  .main-menu li {
    width: 100%;
    padding: 1rem 0;
    text-align: left;
  }

  .main-menu a,
  .dropdown-toggle {
    display: block;
    width: 100%;
    color: white;
    font-size: 1.2rem;
    text-align: left;
  }

  .dropdown-toggle {
    background: none;
    border: none;
    cursor: pointer;
  }

  /* dropdown mobilon */
  .menu-item-has-children .sub-menu {
    display: none;
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background-color: #0a0d2a;
    width: 100%;
    padding: 0;
    margin: 0;
  }

  .menu-item-has-children.active .sub-menu { display: block; }

  .sub-menu li { padding: 12px; }

  .sub-menu li a {
    display: block;
    color: white;
    font-size: 14px;
    padding: 0;
    text-align: left;
    white-space: normal;
  }

  /* mobilon fix fehér minden oldalon */
  .site-navbar .main-menu a,
  .site-navbar .dropdown-toggle,
  .site-navbar .sub-menu li a,
  body:not(.home) .site-navbar .main-menu a,
  body:not(.home) .site-navbar .dropdown-toggle,
  body:not(.home) .site-navbar .sub-menu li a {
    color: #fff;
  }

  /* mobilon: minden oldalon sötét navbar sáv */
.site-navbar{
  background: #1E1B44;
  box-shadow: none;
}

/* ha aloldalakon van külön szabályod, ezt is üsd ki mobilon */
body:not(.home) .site-navbar{
  background: #1E1B44;
}


  /* CTA mobilon */
  .main-menu li.cta-button {
    text-align: center;
    padding: 1.5rem 0 1rem;
  }

  .main-menu li.cta-button a {
    display: inline-block;
    width: auto;
    min-width: 160px;
    max-width: 200px;
    padding: 0.9rem 1.4rem;
    background-color: #2A80AD;
    color: white;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: 2px solid #ffffff33;
    border-radius: 4px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
    margin: 1.5rem auto 1rem;
    transition: all 0.25s ease;
    text-align: center;
  }

  .main-menu li.cta-button a:hover {
    background-color: #1D5E7C;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.4);
  }

  .site-navbar .sub-menu li a:active,
  .site-navbar .sub-menu li a:focus {
    color: #020617 !important;

}


}


/* =========================
   HERO/CTA RESZPONZÍV (a tied)
   ========================= */
@media (max-width: 768px) {
  .hero-cards {
    flex-direction: column;
    align-items: center;
  }

  .step-card {
    width: 100%;
    max-width: 320px;
  }

  .hero h1 { font-size: 1.6rem; }
  .hero p { font-size: 1rem; }

  .button-wrapper {
    position: static;
    transform: none;
    margin-top: 1.5rem;
  }
}

@media (max-width: 768px) {
  .cta-section { padding: 2rem 1rem; }
  .cta-headline { font-size: 1.5rem; }
  .cta-sub { font-size: 1rem; }

  .cta-btn {
    width: 100%;
    max-width: 300px;
    margin: 1rem auto 0;
    text-align: center;
  }

  .cta-button a {
    display: block;
    width: 90%;
    margin: 0 auto;
    text-align: center;
    padding: 0.75rem 1rem;
  }

  .button-wrapper {
    position: absolute;
    transform: translate(-50%, 40px);
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .hero-cards {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
  }

  .step-card {
    width: calc(50% - 2rem);
    min-width: 240px;
  }

  .hero h1 { font-size: 2rem; }
  .hero p { font-size: 1.1rem; }

  .button-wrapper { transform: translate(-50%, 40px); }

  .cta-section { padding: 3rem 2rem; }
  .cta-headline { font-size: 1.6rem; }
  .cta-sub { font-size: 1rem; }

  .cta-btn {
    font-size: 0.95rem;
    padding: 1rem 1.8rem;
    max-width: 260px;
    margin: 1rem auto;
  }

  .site-navbar .nav-inner { padding: 0 1rem; }
  .site-navbar .main-nav ul { gap: 1.2rem; }
  .site-navbar .main-nav a { font-size: 0.9rem; }
  .site-logo img { height: 60px; }

  .btn,
  .cta-btn {
    padding: 0.85rem 1.5rem;
    font-size: 0.95rem;
  }
}

@media (min-width: 901px) and (max-width: 1024px) {
  .hero-cards {
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
  }

  .step-card {
    width: calc(33.333% - 2rem);
    min-width: 260px;
  }

  .hero h1 { font-size: 2.2rem; }
  .hero p { font-size: 1.2rem; }

  .button-wrapper { transform: translate(-50%, 60px); }

  .cta-section { padding: 3.5rem 2.5rem; }
  .cta-headline { font-size: 1.9rem; }
  .cta-sub { font-size: 1.1rem; }

  .cta-btn {
    font-size: 1rem;
    padding: 1rem 2rem;
    max-width: 280px;
    margin: 1.2rem auto;
  }

  .site-navbar .nav-inner { padding: 0 1.2rem; }
  .site-navbar .main-nav ul { gap: 1.5rem; }
  .site-navbar .main-nav a { font-size: 1rem; }
  .site-logo img { height: 70px; }

  .btn,
  .cta-btn {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
}


/* =========================
   SCROLLBAR
   ========================= */

/* WebKit (Chrome, Edge, Safari) */
::-webkit-scrollbar {
  width: 9px;
}

::-webkit-scrollbar-track {
  background: #0f172a;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #ff8c00, #ffbb33);
  border-radius: 1px;
  transition: background 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #ffaa00, #ffcc66);
}

/* Firefox */
html {
  scrollbar-width: 8px;              /* ✅ valid */
  scrollbar-color: #ff8c00 #0f172a;   /* ✅ valid */
}



/* =========================
   SCROLL MARGIN
   ========================= */
#tipusok,
#csomagok {
  scroll-margin-top: 100px;
}
/* =========================================
   MOBIL / TABLET HAMBURGER MENÜ – DIZÁJN UPGRADE
   (funkcióhoz nem nyúl, csak kinézet)
   ========================================= */
@media (max-width: 768px){

  /* felső sáv kicsit “glass” + szebb elválasztó */
  .site-navbar{
    background: linear-gradient(180deg, rgba(30,27,68,0.96), rgba(30,27,68,0.86));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  /* hamburger gomb: kör alakú tap-target + finom háttér */
  .nav-toggle-label{
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.10);
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  }

  .nav-toggle-label span,
  .nav-toggle-label span::before,
  .nav-toggle-label span::after{
    width: 22px;
    height: 2px;
    border-radius: 999px;
    background: rgba(255,255,255,0.95);
  }

  /* lenyíló panel: kártyás, széleknél padding, árnyék */
  .main-nav{
    background: radial-gradient(120% 90% at 10% 0%, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0) 55%),
                #0a0d2a;
    border-bottom-left-radius: 18px;
    border-bottom-right-radius: 18px;
    box-shadow: 0 22px 60px rgba(0,0,0,0.55);
    padding: 84px 14px 18px; /* felül marad a navbar */
  }

  /* menü lista: kényelmesebb margók + max szélesség (szebb középen) */
  .main-menu{
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
    gap: 10px;
  }

  /* menüpont: “pill”/kártya érzet, jó tap target */
  .main-menu > li{
    padding: 0; /* a belső link kap paddingot */
  }

  .main-menu > li > a,
  .main-menu > li > .dropdown-toggle{
    padding: 14px 14px;
    border-radius: 14px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 10px 24px rgba(0,0,0,0.22);
    letter-spacing: 0.2px;
    font-weight: 600;
  }

  /* tap feedback (mobilon ez sokat dob) */
  .main-menu > li > a:active,
  .main-menu > li > .dropdown-toggle:active{
    transform: scale(0.99);
    background: rgba(255,255,255,0.09);
  }

  /* dropdown toggle ikon (ha van benne <i>) kicsit finomabb */
  .main-menu > li > .dropdown-toggle i{
    opacity: 0.85;
  }

  /* sub-menu panel: beljebb, külön “doboz”, lágy háttér */
  .menu-item-has-children .sub-menu{
    margin-top: 10px;
    margin-left: 10px;
    margin-right: 10px;

    border-radius: 14px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
    padding: 8px;
  }

  .sub-menu li{
    padding: 0; /* a link kap paddingot */
  }

  .sub-menu li a{
    padding: 12px 12px;
    border-radius: 12px;
    background: transparent;
    border: 1px solid transparent;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 600;
  }

  /* submenü hover/active: narancs háttér + sötét szöveg (mint PC-n) */
  .sub-menu li a:hover,
  .sub-menu li a:active,
  .sub-menu li a:focus{
    background: linear-gradient(135deg, #ff8c00, #ffbb33);
    color: #0b1020;
    border-color: rgba(255,255,255,0.18);
  }

  /* CTA gomb menüpont: csinosabb, passzol a rendszerhez */
  .main-menu li.cta-button{
    padding: 6px 0 0;
  }

  .main-menu li.cta-button a{
    border-radius: 14px;
    background: linear-gradient(135deg, #ff8c00, #ffbb33);
    color: #0b1020;
    border: 1px solid rgba(255,255,255,0.18);
    box-shadow: 0 14px 30px rgba(0,0,0,0.35);
  }

  .main-menu li.cta-button a:hover{
    background: linear-gradient(135deg, #ffaa00, #ffd166);
  }

  /* extra: kicsit jobb olvashatóság */
  .main-menu a,
  .dropdown-toggle{
    text-shadow: 0 1px 0 rgba(0,0,0,0.25);
  }
}

/* Tablet / nagy mobil – kicsit több tér */
@media (min-width: 600px) and (max-width: 1024px){
  .main-nav{
    padding-left: 18px;
    padding-right: 18px;
  }
  .main-menu{
    max-width: 640px;
  }
}
@media (max-width: 768px){

  /* a gomb legyen tényleg center */
  .nav-toggle-label{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* a vonal ne absolute legyen, különben csúszkál */
  .nav-toggle-label span{
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 999px;
  }

  .nav-toggle-label span::before,
  .nav-toggle-label span::after{
    position: absolute;
    left: 0;
    width: 22px;
    height: 2px;
    border-radius: 999px;
    content: "";
  }

  .nav-toggle-label span::before{ top: -8px; }
  .nav-toggle-label span::after { top:  8px; }
}
@media (max-width: 768px){
  .site-navbar.scrolled{
    background: linear-gradient(180deg, rgba(30,27,68,0.96), rgba(30,27,68,0.86));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    box-shadow: none;
  }
}


@media (max-width: 600px) {
  .grecaptcha-badge {
    transform: scale(0.2);
    transform-origin: bottom left;
    right: auto !important;
    left: 10px !important;
    bottom: 10px !important;
  }
}


html, body {
  overflow-x: hidden;
  max-width: 100%;
}

