@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Pacifico&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');

:root {
  --nav-width: 1024px;
  --nav-width-scrolled: 860px;
  --fast: 0.45s cubic-bezier(0.4,0,0.2,1);
  --med: 0.6s cubic-bezier(0.4,0,0.2,1);
  --header-height: 280px;
}

html {
  background-color: #eee6e5;
  scroll-behavior: smooth;
}



body {
  margin: 0;
  padding: 0;
  font-family: "Montserrat";
  background-color: #FAF9F7;
  padding-top: var(--header-height);
  background: #EEE6E5;
  color: #3A0440;
}

/* === GÖRGETÉS ELŐTTI ÁLLAPOT === */
.header-before-scroll {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  /* background:linear-gradient(0deg, rgb(250 249 247) 50%, rgb(222 208 220) 100%); */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  transition: opacity var(--med), transform var(--med);
}

.logoholder-before-scroll {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  margin-bottom: 2rem;
}

.logo-payroll, .tudatos-tb {
  max-height: 120px;
  mix-blend-mode: darken;
  transition: transform 0.3s ease;
}

.logo-payroll:hover, .tudatos-tb:hover {
  transform: scale(1.05);
}

.tudatos-tb {
  max-height: 150px;
}

.navbar.before {
  width: var(--nav-width);
  padding: 28px 32px;
  border-radius: 35px;
  background: linear-gradient(135deg, #B696B5 0%, #A0779F 100%);
  display: flex;
  justify-content: space-evenly;
  box-shadow: 0 8px 32px rgba(160, 119, 159, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
}

.navbar.before a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 8px 16px;
  border-radius: 20px;
  transition: all 0.3s ease;
  position: relative;
}

.navbar.before a:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-2px);
}

.navbar.before a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: white;
  transition: all 0.3s ease;
  transform: translateX(-50%);
  align-self: self-end;
}

.navbar.before a:hover::after {
  width: 60%;
}

/* === GÖRGETÉS UTÁNI ÁLLAPOT === */
.header-after-scroll {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(222, 208, 220, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1001;
  opacity: 0;
  transform: translateY(-20px);
  pointer-events: none;
  transition: all var(--med);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

.navholder {
  width: var(--nav-width-scrolled);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  gap: 2rem;
  justify-content: center;
}

.logo-payroll-navholder {
  height: 45px;
  width: auto;
  mix-blend-mode: darken;
  transition: transform 0.3s ease;
  filter: brightness(1.1);
}

.logo-payroll-navholder:hover {
  transform: scale(1.1);
}

.navbar.after {
  padding: 10px 24px;
  border-radius: 25px;
  background: linear-gradient(135deg, #B696B5 0%, #A0779F 100%);
  display: flex;
  align-items: center;
  gap: 2rem;
  box-shadow: 0 6px 25px rgba(160, 119, 159, 0.25);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  flex: 1;
  max-width: fit-content;
  justify-content: center;
  margin: 0 2rem;
}

.navbar.after a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 6px 12px;
  border-radius: 16px;
  transition: all 0.3s ease;
  position: relative;
  white-space: nowrap;
}

.navbar.after a:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-1px);
}

.navbar.after a::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 50%;
  width: 0;
  height: 1.5px;
  background: white;
  transition: all 0.3s ease;
  transform: translateX(-50%);
  align-self: flex-end;
  margin: 0;
}

.navbar.after a:hover::after {
  width: 70%;
}

.tudatos-tb-btn {
  background: linear-gradient(135deg, #e6c96d 0%, #D4AF37 100%);
  color: #3A0440;
  padding: 0.7rem 1.4rem;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  white-space: nowrap;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(160, 119, 159, 0.3);
  border: 1px solid rgba(255,255,255,0.2);
  letter-spacing: 0.5px;
}

.tudatos-tb-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(160, 119, 159, 0.4);
  background: linear-gradient(135deg, #ecd486 0%, #ebc753 100%);
}

/* === SCROLL ÁLLAPOT === */
body.scrolled .header-before-scroll {
  opacity: 0;
  transform: translateY(-20px);
  pointer-events: none;
}

body.scrolled .header-after-scroll {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}



/* === RESZPONZÍV === */
@media (max-width: 1100px) {
  :root {
    --nav-width: 860px;
    --nav-width-scrolled: 720px;
  }
  
  .logo-payroll, .tudatos-tb {
    max-height: 100px;
  }
  
  .tudatos-tb {
    max-height: 120px;
  }
  
  .navholder {
    width: 95%;
    gap: 1rem;
  }
  
  .navbar.after {
    margin: 0 1rem;
    gap: 1.5rem;
  }
  
  .navbar.after a {
    font-size: 0.9rem;
    padding: 5px 10px;
  }
}

@media (max-width: 410px) {
  .logoholder-before-scroll {
    display: none;
  }

  .logo-payroll, .tudatos-tb {
    max-height: 22.5vw;
  }

}
@media (max-width: 768px) {
  :root {
    --header-height: 240px;
  }
  
  .logoholder-before-scroll {
    display: block;
    gap: 2rem;
    flex-direction: column;
    margin-top: 2rem;
  }
  
  .header-before-scroll {
    justify-content: unset;
  }

  .navbar.before,
  .navbar.after {
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: center;
    padding: 20px;
    max-width: 85vw;
  }
  
  .navholder {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
  }
  
  .navbar.after {
    order: 2;
    margin: 0;
  }
  
  .logo-payroll-navholder {
    order: 1;
  }
  
  .tudatos-tb-btn {
    order: 3;
    padding: 0.6rem 1.2rem;
  }
  
  .header-after-scroll {
    height: auto;
    min-height: 100px;
  }
  .panel-16 a {
    width: 80vw !important;
  }
}




/* === DROPDOWN STÍLUSOK === */



.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-toggle {
  position: relative;
}

.dropdown-toggle::after {
  content: '';
  font-size: 0.7em;
  margin-left: 8px;
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(20px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
  /* overflow: hidden;  <-- EZT SZEDD KI / ÍRD FELÜL */
  min-width: 200px;      /* opcionális, hogy legyen fixebb szélessége */
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(5px);
  width: auto;
}

.navbar.after .dropdown-menu a {
  text-wrap-mode: wrap;
  text-align: center;
}

.dropdown-menu a {
  display: block;
  padding: 12px 20px;
  color: #4B0550 !important;
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid rgba(180, 148, 179, 0.1);
  transition: all 0.2s ease;
  white-space: nowrap;
  font-size: 0.9rem;
  
}

.dropdown-menu a:last-child {
  border-bottom: none;
}

.dropdown-menu a:hover {
  /* background: linear-gradient(135deg, #B494B3 0%, #9D7A9C 100%); */
  color: #B494B3 !important;
  transform: translateX(0px);
}

/* Görgetés előtti navbar dropdown */
.navbar.before .dropdown-menu a {
  color: #4B0550;
  text-align: center;
  text-wrap-mode: wrap;
}

.navbar.before .dropdown {
  bottom: -8px;
}

.navbar.before .dropdown-menu a:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #ac88ab !important;
  
}

/* Reszponzív dropdown */
/* @media (max-width: 768px) {
  .dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    display: none;
    margin-top: 0.5rem;
    box-shadow: none;
    background: rgba(255, 255, 255, 0.1);
  }
  
  .dropdown:hover .dropdown-menu {
    display: block;
    transform: none;
  }
  
  .dropdown-toggle::after {
    display: none;
  }
} */


.dropdown-menu .has-sub {
  position: relative;
}
/* Maga a sub-sub menü */
.sub-sub-menu {
  position: absolute;
  top: 0;
  left: 100%;          /* a fő dropdown jobb szélétől indul */
  margin-left: 8px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: all 0.2s ease;
  z-index: 1100;
  min-width: 200px;
}
@media (max-width: 650px) {
  .sub-sub-menu {
      /* left: 25%;
      top: 100%; */

      left: -10px;
      top: 100%;
  }
}

.dropdown-menu .has-sub:hover > .sub-sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.sub-sub-menu a {
  display: block;
  padding: 12px 20px;
  color: #4B0550 !important;
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid rgba(180,148,179,0.1);
  white-space: nowrap;
}

.sub-sub-menu a:last-child {
  border-bottom: none;
}

/* Kis nyíl jelölésnek */
.dropdown-menu .has-sub > a::after {
  margin-left: 6px;
  font-size: .8em;
}


.sub-sub-menu {
  opacity: 0;
  visibility: hidden;
}

/* CSAK amikor tényleg a saját has-sub felett vagy */
.dropdown-menu .has-sub:hover > .sub-sub-menu {
  opacity: 1;
  visibility: visible;
}






/* PANEL #BREAK1 (KICSI) */

.break-1 {
    height: 50px;
}
/* PANEL #BREAK2 (KÖZEPES)*/

.break-2 {
    height: 110px;
}
/* PANEL #BREAK3 (NAGY)*/

.break-3 {
    height: 300px;
}

/* PANEL #1 - Nagy címszöveg */

.panel-1 { 
  display: flex; 
  background-color: #DED0DC; 
  width: auto; 
  padding: 30px 75px; 
  justify-content: space-between; 
  color: #3A0440; 
  gap: 3rem;
} 
.panel-1-text 
{ 
  max-width: 45rem; 
} 
.panel-1-img 
{ 
  max-width: 650px; 
  position: relative; 
  top: -85px; 
  border-radius: 50px; 
  max-height: 35rem;
} 
.panel-1 h1 { 
  font-family: "Plus Jakarta Sans"; 
  font-weight: 300; 
  font-size: 48px; 
  margin-bottom:0; 
} 
.panel-1 h2 { 
  font-family: "Pacifico"; 
  font-weight: 300; 
  font-size: 32px; 
  margin-top:0;
   font-weight: 100; 
} 
.panel-1 p { 
  font-size: 20px; 
  text-align: justify;
}

@media (max-width: 1360px) {
  .panel-1 {
    flex-direction: column;
    align-items: center;
  }
  .panel-1-img {
    margin-top:1rem;
    top: 0;
  }
}

@media (max-width: 768px) {
  .panel-1-img {
    width: 70vw;
  }
  .panel-1 {
    padding:30px 20px;
  } 
}

@media (max-width: 500px) {

  .panel-1 h1 {
    font-size: 34px;
  }
  .panel-1 h2 {
    font-size: 26px;
  }
  .panel-1 p {
    font-size: 20px;
  }
}

/* PANEL #2 - Nagy címszöveg */

.panel-2 {
    display: flex;
    background-color: #DED0DC;
    width: -webkit-fill-available;
    padding: 30px 75px;
    justify-content: space-between;
    gap: 3rem;
}

.panel-2-text {
    max-width: 45rem;
}

.panel-2-img {
    max-width: 700px;
    position: relative;
    top: 80px;
    border-radius: 50px;
    max-height: 35rem;
}

.panel-2 h1 {
    font-family: "Plus Jakarta Sans";
    font-weight: 300;
    font-size: 48px;
    margin-bottom:0;
}
.panel-2 h2 {
    font-family: "Pacifico";
    font-weight: 300;
    font-size: 32px;
    margin-top:0;
    font-weight: 100;
}
.panel-2 p {
    font-size: 20px;
}

@media (max-width: 1360px) {
  .panel-2 {
    flex-direction: column;
    align-items: center;
  }
  .panel-2-img {
    margin-top:1rem;
    top: 0;
  }
}

@media (max-width: 768px) {
  .panel-2-img {
    width: 70vw;
  }
  .panel-2 {
    padding:30px 20px;
  } 
}

@media (max-width: 500px) {

  .panel-2 h1 {
    font-size: 34px;
  }
  .panel-2 h2 {
    font-size: 26px;
  }
  .panel-2 p {
    font-size: 20px;
  }
}

/* PANEL #3 - Címpanel háttér nélkül */

.panel-3 {
  text-align: center;
}

.panel-3 h1 {
    font-size: 40px;
    font-family: "Plus Jakarta Sans";
    font-weight:500;
    color:#4B0550;
    display: flex;
    justify-content: center;
}

.panel-3 p {
  font-size: 24px;
  font-family: "Plus Jakarta Sans";
  font-weight:500;
  color:#4B0550;
  display: flex;
  justify-content: center;
  text-align: center;
  padding: 1rem;
}

/* @media (max-width: 1360px) {

} */

/* PANEL #4 - Címpanel háttér nélkül, szalaggal */

.panel-4 {
    border-bottom: 10px solid #D4AF37;
    width: inherit;
    display: flex;
    justify-content: center;
}

.panel-4 h1 {
    font-size: 64px;
    font-family: "Plus Jakarta Sans";
    font-weight:500;
    color:#4B0550;
    margin-bottom: 8px;
    text-align: center;
}

@media (max-width: 680px) {
  .panel-4 h1 {
    font-size: 48px; 
}
}
@media (max-width: 420px) {
  .panel-4 h1 {
    font-size: 32px; 
}
}



/* PANEL #5 - Max 3 Kártyás panel */

.panel-5 {
    background: #EEE6E5;
    background: linear-gradient(270deg, rgba(238, 230, 229, 1) -85%, rgba(180, 148, 179, 1) 100%);
    display: grid;
    grid-template-rows: 1fr;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    padding: 1rem;
    justify-items: center;
    justify-content: center;
}

.panel-5.p3 {
    grid-template-columns: repeat(5, 1fr);
}
.panel-5.p2 {
    grid-template-columns: repeat(4, 1fr);
}

.panel-5 .card {
    width: 310px;
    height: 520px;
    background-color: #DED0DC;
    padding: 1rem 2rem;
    margin: 1rem;
    border-radius: 40px;
    font-family: 'Plus Jakarta Sans';
    font-weight: 500;
}

.panel-5 .card h1 {
    font-size: 24px;
    font-weight: 700;
    display: flex;
    justify-content: center;
    text-align: center;
    color: #552e4b;
    font-size: 30px;
}

.panel-5 .card p {
    font-size: 20px;
}

.panel-5 ul li {
    margin-bottom: 16px;
}

.card.i1 { grid-area: 1 / 2 / 2 / 3; }
.card.i2 { grid-area: 1 / 3 / 2 / 4; }
.card.i3 { grid-area: 1 / 4 / 2 / 5; }

@media (max-width: 1240px) {

.panel-5 {
  display: flex;
  justify-items: center;
  flex-direction: column;
  align-items: center;
}

.panel-5 .card {
  max-height: 520px;
  height: auto;
  max-width: 70vw;
}

}


/* PANEL #6 - Fehér félkövér cím */

.panel-6 h1 {
  font-family: "Plus Jakarta Sans";
  font-size: 48px;
  display: flex;
  justify-content: center;
  margin: 0;
  text-align: center;
}

.panel-6 {
  color: #FAF9F7;
  text-shadow: #3A0440 0px 0 20px;
}



/* PANEL #7 - Lila félkövér cím */

.panel-7 {
  place-items: center;
}

.panel-7 h1 {
    color: #4B0051;
    font-family: "Plus Jakarta Sans";
    font-size: 48px;
    display: flex;
    justify-content: center;
    margin: 0;
    text-align: center;
}
@media (max-width: 600px) {
  .panel-7 h1 {
    font-size: 22px;
  }
}
/* PANEL #8 - Max 3 Kártyás panel (fehér háttér) */

.panel-8 {
    display: grid;
    grid-template-rows: 1fr;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    padding: 1rem;
    justify-items: center;
    justify-content: center;

}

.panel-8 ul li {
    margin-bottom: 16px;
}

.panel-8.p3 {
    grid-template-columns: repeat(5, 1fr);
}
.panel-8.p2 {
    grid-template-columns: repeat(4, 1fr);
}

.panel-8 .card {
    width: 310px;
    height: 520px;
    background-color: #B494B3;
    padding: 1rem 2rem;
    margin: 1rem;
    border-radius: 10px;
    font-family: 'Plus Jakarta Sans';
    font-weight: 500;
    color: #FAF9F7;
}

.panel-8 .card h1 {
    font-size: 24px;
    font-weight: 500;
    display: flex;
    justify-content: center;
    text-align: center;
    font-size: 30px;
}

.panel-8 .card p {
    font-size: 20px;
}

.card.i1 { grid-area: 1 / 2 / 2 / 3; }
.card.i2 { grid-area: 1 / 3 / 2 / 4; }
.card.i3 { grid-area: 1 / 4 / 2 / 5; }

@media (max-width: 1240px) {

  .panel-8 {
    display: flex;
    justify-items: center;
    flex-direction: column;
    align-items: center;
  }

  .panel-8 .card {
    max-height: 520px;
    height: auto;
    max-width: 70vw;  
  }

}

/* PANEL #9 - BLOG PANEL */

.panel-9 {
    display: flex;
    justify-content: space-between;
    padding: 0rem 3%;
    background: #B494B3;
    background: linear-gradient(45deg,rgba(180, 148, 179, 1) 0%, rgba(222, 208, 220, 1) 100%);
    height: 200px;
    align-items: center;
    color:#3A0440
}

.panel-9-img {
    height: 150px;
    border-radius: 30px;
}

.panel-9 h1 {
    font-family: "Plus Jakarta Sans";
    font-size: 40px;
    margin: 0;
}
.panel-9 h2 {
    font-family: "Pacifico";
    font-size: 32px;
    margin: 0;
    font-weight: 100;
}
.panel-9 p {
    font-family: "Plus Jakarta Sans";
    font-size: 20px;
    margin: 0.5rem 0;
}

@media (max-width: 1025px) {

  .panel-9 {
    min-height: 300px;
    align-items: normal;
    padding: 2rem;
    
  }

  .panel-9-img {
    height: 200px;
    border-radius: 30px;
    bottom: -100px;
    position: relative;
  }

}
@media (max-width: 670px) {

.panel-9 {
  flex-direction: column;
  min-height: 400px;
}
.panel-9-img {
  bottom: 0; 
  position:unset;
}

.panel-9 picture {
    display: flex;
    justify-content: center;
}

}
@media (max-width: 440px) {

.panel-9 {
  min-height: fit-content;
  margin: 3rem 0px;
}

.panel-9 img {
  width:fit-content;
  width: -webkit-fill-available;  
  height: -webkit-fill-available;  
}

.panel-9 h1 {
    font-size: 34px;
}
.panel-9 h2 {
    font-size: 28px;
}
.panel-9 p {
    font-size: 22px;
}

}

/* PANEL-9-2 ÚJ BLOG */

a {
  text-decoration: none;
}
.panel-9-2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-items: center;
}

.panel-9-2 .blogsheet {
  background: #B494B3;
  background: linear-gradient(45deg, rgba(180, 148, 179, 1) 0%, rgba(222, 208, 220, 1) 100%);
  width: 20rem;
  padding: 2rem;
  margin: 1rem 2rem;
  
  /* Átmenet a sima animációhoz */
  transition: background 0.5s ease, transform 0.3s ease;
  
  /* Alap stílus */
  cursor: pointer;
  border-radius: 8px;
}

.panel-9-2 .blogsheet:hover {
  /* Megváltoztatott színátmenet */
  background: linear-gradient(45deg, rgba(160, 128, 159, 1) 0%, rgba(202, 188, 200, 1) 100%);
  
  /* Opcionális: enyhe nagyítás hatás */
  transform: scale(1.02);
  
  /* Opcionális: árnyék hozzáadása */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.panel-9-2 .blogsheet h1, 
.panel-9-2 .blogsheet h2, 
.panel-9-2 .blogsheet p {
  color:#3A0440;
}
.panel-9-2 .blogsheet picture img {
  width: -webkit-fill-available;
}
@media (max-width: 500px) {
  .panel-9-2 .blogsheet {
    width: 65vw;
  }
}
@media (max-width: 1360px) {
  .panel-9-2 {
    display: flex;
    justify-items: center;
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* PANEL #10 - Szövegdoboz 1 */

.panel-10 {
    background-color: #DED0DC;
    max-width: 46rem;
    /* min-height: 32rem; */
    padding: 3rem;
    margin: 3rem;
    color:#4E0051
}
.panel-10 h1 {
    font-family: "Plus Jakarta Sans";
    font-size: 64px;
    margin: 0;
}
.panel-10 h2 {
    font-family: "Pacifico";
    font-size: 36px;
    margin: 0;
    font-weight: 100;
}
.panel-10 p {
    font-family: "Plus Jakarta Sans";
    font-size: 26px;
    margin: 0.5rem 0;
    text-align: justify;
}
@media (max-width: 600px) {
  .panel-10 {
    width: auto;
    padding: 2rem 1rem;
    margin: 1rem;
  }
}
.panel-10 ul li {
  margin: 8px 0;
}
/* PANEL #10 - Szövegdoboz 1 */

.panel-11 {
    height: 50rem;
    width: 100vw;
}

.panel-11 .p1 {
    background-color: #DED0DC;
    max-width: 46rem;
    min-height: 32rem;
    padding: 3rem;
    margin: 3rem;
    color:#4E0051;
    margin-bottom: 5rem;
}
.panel-11 .p2 {
    background-color: #E0F2D2;
    max-width: 46rem;
    min-height: 32rem;
    padding: 3rem;
    margin: 3rem;
    color:#4E0051;
    position: relative;
    top: -32rem;
    right: -20rem;
}
.panel-11 h1 {
    font-family: "Plus Jakarta Sans";
    font-size: 64px;
    margin: 0;
}
.panel-11 h2 {
    font-family: "Pacifico";
    font-size: 36px;
    margin: 0;
    font-weight: 100;
}
.panel-11 p {
    font-family: "Plus Jakarta Sans";
    font-size: 26px;
    margin: 0.5rem 0;
}

.panel-11 .p1 .textholder {
    max-width: 18rem;
}

.panel-11 .p1 h2 {
  font-weight: 100;
}
.panel-11 .p1 h2,
.panel-11 .p1 p {
    max-width: 15rem;
    
}

@media (max-width: 1230px) {

  .panel-11 .p2 {
    max-width: 40vw;
  }
  .panel-11 .p1 {
    max-width: 40vw;
  }
}
@media (max-width: 800px) {

  .panel-11 .p2 {
    max-width: fit-content;
    justify-self: right;
    top: 0;
    right: 0;  
    margin: 1rem;
    padding: 2rem;
    min-height: auto;
    justify-self: center;
  }
  .panel-11 .p1 {
    max-width: fit-content;
    margin: 1rem;
    padding: 2rem;
    min-height: auto;
    justify-self: center;
  }

  .panel-11 h1 {
    font-size: 36px;
  }
  .panel-11 h2 {
    font-size: 26px;
  }
  .panel-11 p {
    font-size: 24px;
  }
}
@media (max-width: 540px) {
  .panel-11 .p2 {
    bottom: 2rem;
  }
}

/* PANEL-12 */



.panel-12 {
  max-width: 75rem;
  width: -webkit-fill-available;
  background-color:#db52c729;
  padding: 2rem 3rem;
  margin: 3rem 0rem;
  color:#3A0440;
}

.panel-12 p {
    font-size: 20px;
}

div.panel-12 li {
  transition: all 0.3s ease;
  transform: translateX(0);
  padding: 0.2rem;
}

div.panel-12 li:hover {
  transform: translateX(20px);
  background-color: rgba(0, 0, 0, 0.05);
  border-radius: 4px;
  font-weight: 500;
}

@media (max-width: 340px) {
  .panel-12 {
    padding: 2rem 1rem;
  }
}

/* PANEL-13 */

.panel-13 {
  background-color: #8C658B;
  color: #DED0DC;
  padding: 3rem;
  display: flex;
  justify-content: center;
}

.panel-13 .textholder {
  max-width: 60rem;
  width: inherit;
}

/* PANEL 14 */

.panel-14 {
  display: flex;
  justify-content: center;

}

.panel-14 picture img {
    border-radius: 8px;
    max-width: 60vw;
    max-height: 440px;
}

/* PANEL 15 */

.panel-15 {
  background: linear-gradient(45deg,rgba(180, 148, 179, 1) 0%, rgba(222, 208, 220, 1) 100%);
  color:#3A0440;
  padding: 3rem 7vw;
  align-items: center;
}

.panel-15 form {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}

input[type="text"] {
    background-color: #7b517a;
    color: #eee6e5;
    font-family: 'Plus Jakarta Sans';
    padding: 0.5rem 1rem;
    min-width: 20rem;
    border-style: solid;
    border-width: 0px;
    border-radius: 8px;
}
input[type="submit"] {
  padding: 0.5rem 4rem;
  background-color: #e0f2d2;
  color: #4e0051;
  border-radius: 8px;
  border: 1px solid #7b517a;
  margin: 1rem 0;
  font-family: 'Pacifico';
  font-size: 22px;
  cursor: pointer;
  transition: 
    background-color 0.3s ease,
    transform 0.25s ease,
    box-shadow 0.3s ease;
}

input[type="submit"]:hover {
  background-color: #7b517a;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(123, 81, 122, 0.3);
}


.panel-15 form textarea::placeholder {
  color:#bbabbb
}
.panel-15 form textarea {
    border-style: none;
    min-width: 35rem;
    min-height: 12rem;
    font-size: 1rem;
    font-family: 'Plus Jakarta Sans';
    background-color: #7b517a;
    color: #eee6e5;
    padding: 0.5rem 1rem;
    border-radius: 16px;
}

.panel-15 form h2 {
  max-width: 30rem;
}

@media (max-width: 1100px) {
  .panel-15 form {
    flex-wrap: wrap
  }
  .panel-15 form textarea{
    min-width: unset;
  }
}
@media (max-width: 400px) {
  input[type="submit"],
  input[type="text"] {
    min-width: unset;
  }
}

/* PANEL-16 */

.panel-16 a {
  background-color: #cfa9ce;
  display: flex;
  justify-content: space-evenly;
  width: 25rem;
  justify-self: center;
  place-items: center;
  color: #3a0440;
  border-radius: 6px;
  font-family: 'PACIFICO';
  transition: background ease 0.2s;
  transition: color ease 0.2s;
}

/* .panel-16 a:hover > img {
  filter: brightness(0) saturate(100%) invert(19%) sepia(97%) saturate(2443%) hue-rotate(281deg) brightness(93%) contrast(97%);
} */
.panel-16 a:hover {
  background-color: #c995c7;
  color: #a824b7;
}

.panel-16 a img {
  height: 48px;
  filter: brightness(0) saturate(100%) invert(11%) sepia(89%) saturate(3961%) hue-rotate(287deg) brightness(45%) contrast(103%);
}

/* ----------------- */
/* CENTERIZÁLÓ DIVEK */
/* ----------------- */

.center-separate {
    display: flex;
    justify-content: space-around;
}

.align-left {
    display: flex;
    justify-content: flex-start
}
.align-center {
    display: flex;
    justify-content: center
}
.align-right {
    display: flex;
    justify-content: flex-end
}

.flexdown {
  display:flex;
  flex-direction: column
}
.flexright {
  display:flex;
  flex-direction: row
}
/* ------------- */
/* EGYÉB ASSETEK */
/* ------------- */

span {
  -webkit-text-stroke: 1.5px;
}

.button {
    text-decoration: none;
    font-size: 20px;
    border-radius: 30px;
    padding: 16px 42px;
    color: #4B0550;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    display: inline-block;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Alap hover animáció mindkét gombnak */
.button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.button:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* C1 gomb - Lila változat */
.button.c1 {
    background-color: #B494B3;
    color: white;
    border: 2px solid transparent;
    background: linear-gradient(135deg, #B494B3 0%, #9D7A9C 100%);
}

.button.c1:hover {
    background: linear-gradient(135deg, #9D7A9C 0%, #8C658B 100%);
    box-shadow: 0 8px 25px rgba(180, 148, 179, 0.4);
}

.button.c1::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.button.c1:hover::before {
    left: 100%;
}

/* C2 gomb - Világos változat */
.button.c2 {
    background-color: #FAF9F7;
    color: #4B0550;
    border: 2px solid #B494B3;
    background: linear-gradient(135deg, #FAF9F7 0%, #F0EDEA 100%);
}

.button.c2:hover {
    background: linear-gradient(135deg, #FFFFFF 0%, #F5F3F0 100%);
    border-color: #9D7A9C;
    box-shadow: 0 8px 25px rgba(180, 148, 179, 0.3);
    color: #3A0440;
}

.button.c2::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(180, 148, 179, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.button.c2:hover::after {
    width: 100%;
    height: 100%;
    border-radius: 30px;
}

/* Fókusz állapot (akesszibilitás) */
.button:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(180, 148, 179, 0.3);
}

/* Kattintás animáció */
.button {
    animation: buttonEntrance 0.6s ease-out;
}

@keyframes buttonEntrance {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Loading állapot (opcionális) */
.button.loading {
    pointer-events: none;
    opacity: 0.7;
}

.button.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Ha több gomb van egymás mellett */
.button-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.button-group .button {
    animation-delay: calc(var(--i, 0) * 0.1s);
}

/* Staggered animáció */
@keyframes staggeredEntrance {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.button-group .button:nth-child(1) { --i: 1; }
.button-group .button:nth-child(2) { --i: 2; }
.button-group .button:nth-child(3) { --i: 3; }

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Reszponzív */
@media (max-width: 768px) {
    .button {
        font-size: 18px;
        padding: 14px 32px;
    }
}

@media (max-width: 480px) {
    .button {
        font-size: 16px;
        padding: 12px 24px;
        width: 100%;
        max-width: 280px;
    }
}

ul li {
  font-size: 20px;
  
}



hr {
  border-color:#3A0440;
}

p {
  font-weight: 500;
  font-size: 20px;
}
h2 {
  font-weight: 100;
  font-family: "Pacifico";
}
h1 {
  font-weight: 600;
}

.checkbox-wrapper {
  --s-xsmall: 0.625em;
  --s-small: 1.2em;
  --border-width: 1px;
  --c-primary: #3A0440;
  --c-primary-20-percent-opacity: rgb(95 17 232 / 20%);
  --c-primary-10-percent-opacity: rgb(95 17 232 / 10%);
  --t-base: 0.4s;
  --t-fast: 0.2s;
  --e-in: ease-in;
  --e-out: cubic-bezier(.11,.29,.18,.98);
  padding-bottom:0.5rem;
}

.checkbox-wrapper .visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
p.checkbox__textwrapper {
  width: fit-content; 
}
.checkbox-wrapper .checkbox {
  display: flex;
  align-items: center;
  width: fit-content;
}
.checkbox-wrapper .checkbox + .checkbox {
  margin-top: var(--s-small);
}
.checkbox-wrapper .checkbox__symbol {
  display: inline-block;
  display: flex;
  margin-right: calc(var(--s-small) * 0.7);
  border: var(--border-width) solid var(--c-primary);
  position: relative;
  border-radius: 0.1em;
  width: 1.5em;
  height: 1.5em;
  transition: box-shadow var(--t-base) var(--e-out), background-color var(--t-base);
  box-shadow: 0 0 0 0 var(--c-primary-10-percent-opacity);
}
.checkbox-wrapper .checkbox__symbol:after {
  content: "";
  position: absolute;
  top: 0.5em;
  left: 0.5em;
  width: 0.25em;
  height: 0.25em;
  background-color: var(--c-primary-20-percent-opacity);
  opacity: 0;
  border-radius: 3em;
  transform: scale(1);
  transform-origin: 50% 50%;
}
.checkbox-wrapper .checkbox .icon-checkbox {
  width: 1em;
  height: 1em;
  margin: auto;
  fill: none;
  stroke-width: 3;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-miterlimit: 10;
  color: var(--c-primary);
  display: inline-block;
}
.checkbox-wrapper .checkbox .icon-checkbox path {
  transition: stroke-dashoffset var(--t-fast) var(--e-in);
  stroke-dasharray: 30px, 31px;
  stroke-dashoffset: 31px;
}
.checkbox-wrapper .checkbox__textwrapper {
  margin: 0;
}
.checkbox-wrapper .checkbox__trigger:checked + .checkbox__symbol:after {
  -webkit-animation: ripple-33 1.5s var(--e-out);
          animation: ripple-33 1.5s var(--e-out);
}
.checkbox-wrapper .checkbox__trigger:checked + .checkbox__symbol .icon-checkbox path {
  transition: stroke-dashoffset var(--t-base) var(--e-out);
  stroke-dashoffset: 0px;
}
.checkbox-wrapper .checkbox__trigger:focus + .checkbox__symbol {
  box-shadow: 0 0 0 0.25em var(--c-primary-20-percent-opacity);
}

@-webkit-keyframes ripple-33 {
  from {
    transform: scale(0);
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: scale(20);
  }
}

@keyframes ripple-33 {
  from {
    transform: scale(0);
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: scale(20);
  }
}


/* 

BLOG OLDAL

*/

.blogsite {
  padding: 3rem;
  background-color: #c393c285;
}
.blogsite .hero {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 3rem;
}
.blogsite .hero .holder{
    min-width: 40vw;
    height: 26rem;
    background-color: red;
    padding: 1rem 2rem;
    border-radius: 8px;
    background-color: #af77a575;
  }
  .blogsite .hero picture img {
    max-height: 30rem;
    border-radius: 16px;
    max-width: 45rem;
  }
  
.blogsite h1{
  font-size: 48px;
  margin: 0;
}
.blogsite h2{
  font-size: 28px;
  margin: 0;
}
.blogsite p{
  font-size: 20px;
  margin: 0rem 0 1rem 0;
}
.blogsite .content {
  width: -webkit-fill-available;
  background-color: red;
  padding: 2rem;
  margin: 1rem;
  border-radius: 4px;
  background-color: #af77a575;
}

.blogsite .imageshow {
  display: flex;
  justify-content: center;
  padding: 2vh 0;
} 

.blogsite .imageshow picture img{
  width: 50vw;
  
  border-radius: 8px;
}


@media (max-width: 350px) {
  h1 {
    font-size: 22px !important;
  }
}
@media (max-width: 250px) {
  .navbar.before,
  .navbar.after {
    margin-bottom: 15rem;
  }
}
@media (max-width: 800px) {
  .blogsite .hero picture img {
    max-width: 60vw;
  }
  .blogsite {
        padding: 1rem;
      }
  .blogsite .content {     
    padding: 1rem;
    margin: 0;
  }
}
@media (max-width: 1300px) {
  .blogsite .hero {
    flex-direction: column-reverse;
  }
  .blogsite h1{
    font-size: 42px;
    margin: 0;
  }
  .blogsite h2{
    font-size: 22px;
    margin: 0;
  }
  .blogsite p{
    font-size: 16px;
    margin: 0rem 0 1rem 0;
  }
  .blogsite .hero .holder {
    height: min-content;
    padding: 2rem 1rem;
  }
}

@media (max-width: 340px) {
  body {
    overflow-x: hidden;
  }
}
@media (max-width: 460px) {
  .center-separate {
    flex-direction: column;
    align-items: center;
  }
  a.button {
    margin: 1rem 0;
    width: auto;
    min-width: 8rem;
  }
}

@media (max-width: 600px) {
  p {
    font-size: 16px !important;
  }
  h1 {
    font-size: 24px !important;
  }
  h2 {
    font-size: 20px !important;
  }
  
}

.panel-face-map {
    display: flex;
    align-content: center;
    justify-content: center;
    gap: 5vw;
}

.panel-face-map div {
  padding: 2rem;
  background-color: #bbabbb;
  border-radius: 4px;
}

.panel-face-map div iframe {
  width: 35vw;
  max-height: 400px;
  border-radius: 4px;
  background: #ffffff;
  
}

@media (max-width: 500px) {
  .panel-face-map div iframe {
    width: 75vw !important;
  }
}
@media (max-width: 1100px) {
  .panel-face-map div iframe {
    width: 500px;
  }
  .panel-face-map {
    flex-wrap: wrap;
    flex-direction: column;
  }
}

.maintance {
    text-align: center;
}

a {
    color: #be1dc9;
}
a:hover {
    color: #c544ce;
}

a:active {
  color: #d360db;
}

.footer {
  background-color: #180d18;
  margin-top: 5rem;
  padding: 1rem;
  max-width: 100vw;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  color: #3f3f3f;
}

.panel-face-map {

}