:root {
  --bg: #fafafa;
  --white: #ffffff;
  --panel: #f3f2f2;
  --black: #202636;
  --muted: #737b8f;
  --blue: #85bffb;
  --green: #84e8cf;
  --dark-blue: #0b005c;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Montserrat", sans-serif;
  background: var(--bg);
  color: var(--black);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

.container {
  width: 100%;
  max-width: 1840px;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(20px, 4vw, 140px);
  padding-right: clamp(20px, 4vw, 140px);
}

/* Header */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: var(--white);
  border-radius: 40px 40px 0 0;
  overflow: hidden;
  /* Ne látszódjon át a hero a lekerekített sarkok alatt */
  box-shadow: 0 1px 0 0 var(--white), 0 6px 0 0 var(--white);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 64px;
  padding: 12px 0;
}

.brand img,
.footer-logo {
  width: 65px;
  height: 64px;
  object-fit: cover;
}

.menu-toggle {
  display: none;
  margin-left: auto;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
  color: var(--dark-blue);
  align-items: center;
  justify-content: center;
  z-index: 51;
  position: relative;
}

.menu-toggle-bars {
  display: block;
  position: relative;
  width: 26px;
  height: 20px;
}

.menu-bar {
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  border-radius: 2px;
  background: currentColor;
  transition:
    transform 0.38s cubic-bezier(0.65, 0, 0.35, 1),
    top 0.38s cubic-bezier(0.65, 0, 0.35, 1),
    opacity 0.22s ease;
}

.menu-bar:nth-child(1) {
  top: 0;
}

.menu-bar:nth-child(2) {
  top: 8.5px;
}

.menu-bar:nth-child(3) {
  top: 17px;
}

.menu-toggle.is-open .menu-bar:nth-child(1) {
  top: 8.5px;
  transform: rotate(45deg);
}

.menu-toggle.is-open .menu-bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0.2);
}

.menu-toggle.is-open .menu-bar:nth-child(3) {
  top: 8.5px;
  transform: rotate(-45deg);
}

.main-nav {
  display: flex;
  flex: 1;
  justify-content: center;
  gap: clamp(16px, 3vw, 48px);
  font-size: 18px;
  line-height: 1.2;
  font-weight: 400;
}

@media (min-width: 1181px) {
  .main-nav a {
    position: relative;
    padding-bottom: 6px;
  }

  .main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--green), var(--blue));
    border-radius: 1px;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 1s ease;
  }

  .main-nav a:hover::after {
    transform: scaleX(1);
  }
}

.contact-chip {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 400;
}

.contact-icon {
  width: 32px;
  height: 32px;
  border-radius: 40px;
  background: var(--green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
}

.contact-icon img {
  width: 24px;
  height: 24px;
  display: block;
}

/* Hero */
.hero {
  position: relative;
  min-height: clamp(520px, 85vh, 843px);
  border-radius: 0 0 40px 40px;
  overflow: hidden;
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background: rgba(0, 0, 0, 0.59);
}

.hero-stage {
  position: relative;
  z-index: 1;
}

.hero-content {
  position: relative;
  width: 100%;
  max-width: 1920px;
  min-height: clamp(520px, 85vh, 843px);
  margin: 0 auto;
  padding: clamp(120px, 18vh, 180px) clamp(20px, 4vw, 156px) clamp(48px, 8vh, 80px);
}

.hero-copy {
  max-width: 941px;
}

.kicker {
  color: var(--blue);
  font-size: clamp(24px, 2.5vw, 32px);
  font-weight: 400;
  line-height: 1.2;
  margin: 0 0 8px;
}

.kicker.green {
  color: var(--green);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 600;
  margin-bottom: 24px;
}

h1 {
  margin: 0;
  font-size: clamp(36px, 5vw, 80px);
  line-height: 1.1;
  color: var(--white);
}

h2 {
  margin: 0 0 20px;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 500;
  line-height: 1.2;
}

h3 {
  margin: 10px 0;
  font-size: clamp(24px, 2.5vw, 32px);
  color: #202636;
}

/* Hero grid + center ring */
.hero-grid-wrap {
  position: relative;
  width: min(573px, 100%);
  aspect-ratio: 1;
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 1200px) {
  .hero-content {
    display: grid;
    grid-template-columns: 1fr min(573px, 38vw);
    align-items: center;
    gap: 32px;
    padding-top: 140px;
  }

}

.hero-grid {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: clamp(10px, 1.5vw, 20px);
}

.hero-tile {
  background: var(--panel);
  border: 10px solid var(--blue);
  border-radius: 40px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: clamp(16px, 2vw, 28px) clamp(16px, 2vw, 30px);
  font-size: clamp(18px, 2.2vw, 28px);
  line-height: 1.15;
  font-weight: 600;
  color: var(--dark-blue);
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-tile:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(11, 0, 92, 0.12);
}

.hero-tile:focus-visible {
  outline: 3px solid rgba(132, 232, 207, 0.95);
  outline-offset: 4px;
}

.hero-tile:nth-child(1),
.hero-tile:nth-child(4) {
  border-color: var(--green);
}

/* Alsó sor: címke a doboz alján (design) */
.hero-tile:nth-child(3),
.hero-tile:nth-child(4) {
  align-items: flex-end;
}

.hero-center-ring {
  position: absolute;
  left: 48%;
  top: 50%;
  width: min(306px, 55%);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  z-index: 3;
  pointer-events: none;
}

.hero-center-ring .ring,
.hero-center-ring .disc,
.hero-center-ring .logo,
.hero-center-ring .chip {
  position: absolute;
}

.hero-center-ring .ring {
  width: 100%;
  height: 100%;
  left: 0%;
  top: 0;
  object-fit: contain;
}

.hero-center-ring .disc {
  width: 74%;
  height: 74%;
  left: 13%;
  top: 13%;
  object-fit: contain;
}

.hero-center-ring .logo {
  width: 57%;
  height: auto;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  object-fit: contain;
}

.hero-center-ring .chip {
  width: 22%;
  height: auto;
  transform: translate(-50%, -50%);
}

/* Ikonok a körívek mentén (gyűrű finomítása után beljebb, a vonalakra esnek) */
.hero-center-ring .chip-tl {
  left: 12%;
  top: 10%;
}

.hero-center-ring .chip-tr {
  left: 90%;
  top: 12%;
}

.hero-center-ring .chip-bl {
  left: 12%;
  top: 90%;
}

.hero-center-ring .chip-br {
  left: 90%;
  top: 90%;
}

/* Sections */
.section {
  padding: clamp(56px, 8vw, 96px) 0;
}

.section.alt {
  background: linear-gradient(180deg, rgba(133, 191, 251, 0.06), transparent);
}

.section-line {
  width: 56px;
  height: 3px;
  background-image: url("./images/section-line.svg");
  background-size: cover;
  background-repeat: no-repeat;
  margin-bottom: 24px;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 4vw, 52px);
  align-items: start;
}

.split.reverse {
  grid-template-columns: 1fr 1fr;
}

.split.reverse > :first-child {
  order: 0;
}

@media (min-width: 901px) {
  .split.reverse .image-block,
  .split.reverse .service-media {
    order: -1;
  }

  /* Szöveg szélesebb, képoszlop keskenyebb (nem 50–50) */
  .service-section .split {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  }

  .service-section .split.reverse {
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  }

  .about-section .split {
    grid-template-columns: minmax(0, 1.14fr) minmax(0, 0.86fr);
    align-items: stretch;
  }

  /* Képoszlop ugyanolyan magas, mint a szöveg → kép alja + lebegő kártya illeszkedik a sávhoz */
  .about-section__visual {
    display: flex;
    flex-direction: column;
    min-height: 0;
  }

  .about-section__visual .about-media.about-media--bridge {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    min-height: 0;
    border-radius: clamp(16px, 2vw, 24px);
  }

  .about-section__visual .about-main-image {
    flex: 1 1 auto;
    width: 80%;
    min-height: clamp(220px, 32vh, 420px);
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    object-fit: cover;
    object-position: center;
  }
}

.lead {
  font-size: 20px;
  line-height: 1.45;
  color: var(--muted);
}

.about-section .lead {
  color: #202636;
  max-width: 770px;
}

.service-intro {
  margin: 0 0 20px;
}

.service-after-list {
  margin: 28px 0 0;
}

.bullet-list {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.service-intro + .bullet-list {
  margin-top: 16px;
}

.bullet-list li {
  margin: 0 0 12px;
  padding-left: 44px;
  position: relative;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.3;
}

.bullet-list li::before {
  content: "➜";
  position: absolute;
  left: 0;
  top: -1px;
  width: 28px;
  height: 28px;
  border: 1px solid var(--dark-blue);
  color: var(--dark-blue);
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 14px;
}

.image-stack,
.image-block {
  position: relative;
}

.image-stack img:not(.about-main-image),
.image-block img:not(.service-image) {
  border-radius: 24px;
  box-shadow: 0 35px 133px rgba(113, 144, 190, 0.18);
}

/* About — layout a design szerint: 2 oszlop, alatta teljes szélességű sáv, HGSZI kártya a kép/sáv határán */
.about-section__inner {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.about-section__copy {
  min-width: 0;
}

.about-contact-link {
  margin-top: clamp(24px, 4vw, 36px);
  margin-bottom: clamp(24px, 4vw, 36px);
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 18px;
  font-weight: 600;
  color: var(--dark-blue);
  
}

.about-contact-link:hover {
  color: #1a1f33;
}

.about-contact-link__icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.95);
  flex-shrink: 0;
}

.about-contact-link__icon img {
  width: 22px;
  height: 22px;
  display: block;
}

.about-section__visual {
  width: 100%;
  max-width: min(628px, 100%);
  margin-left: auto;
    bottom: -1vw;
    position: relative;    
}

.about-media.about-media--bridge {
  min-height: 0;
  position: relative;
  width: 100%;
  z-index: 2;
}

.about-main-image {
  width: 100%;
  max-width: 628px;
  height: auto;
  margin-left: auto;
  margin-right: 0;
  display: block;
  border-radius: clamp(16px, 2vw, 24px);
  box-shadow: 0 35px 133px rgba(113, 144, 190, 0.18);
  position: relative;
}

.glass-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.8);
  border: 2px solid #fff;
  border-radius: 24px;
  backdrop-filter: blur(40px);
  box-shadow: 0 80px 232px rgba(0, 48, 121, 0.24);
}

/* Kártya: a kép alján vízszintesen középen, fele a képen, fele a türkiz sávon */
.about-logo-card {
  left: 0%;
  right: auto;
  top: auto;
  bottom: 0;
  transform: translate(-50%, 50%);
  z-index: 4;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: clamp(6px, 1.2vw, 12px);
  width: min(132px, 38vw);
  max-width: calc(100% - 16px);
  padding: clamp(14px, 2.2vw, 22px) clamp(12px, 2vw, 18px);
}

.about-logo-card img {
  width: clamp(48px, 11vw, 76px);
  height: auto;
  border-radius: 50%;
  box-shadow: 0 19px 56px rgba(0, 82, 180, 0.16);
  object-fit: cover;
  flex-shrink: 0;
}

.about-logo-card span {
  font-family: "Rajdhani", "Montserrat", sans-serif;
  font-size: clamp(18px, 2.2vw, 26px);
  line-height: 1.05;
  color: #202636;
  font-weight: 600;
}

.about-section__bar {
  width: 100%;
  position: relative;
  z-index: 1;
  margin-top: 0;
}

/* Intézményi adatok kártya — főoldal (about-info-bar--index) és részletes kártya változat */
.about-info-bar {
  border-radius: clamp(16px, 2vw, 24px);
  overflow: hidden;
  box-sizing: border-box;
}

.about-info-bar--index {
  width: 100%;
  max-width: 100%;
  margin: 0;
  align-self: stretch;
  background-color: rgba(132, 232, 207, 0.45);
  background-image:
    linear-gradient(92deg, rgba(132, 232, 207, 0.55) 0%, rgba(133, 191, 251, 0.45) 55%, rgba(122, 184, 251, 0.35) 100%),
    url("./images/divbg.png");
  background-size: cover, cover;
  background-repeat: no-repeat, no-repeat;
  background-position: center, right bottom;
  padding: clamp(14px, 3vw, 40px) clamp(14px, 3vw, 40px) clamp(16px, 3.5vw, 36px);
  line-height: 40px;
  font-size: clamp(14px, 1.5vw, 18px);
  border-bottom-right-radius: clamp(28px, 6vw, 80px);
  border-top-left-radius: clamp(12px, 1.5vw, 20px);
  border-top-right-radius: clamp(12px, 1.5vw, 20px);
}

.about-info-bar--index .about-info-bar__intro {
  margin: 0;
  border-left: 2px solid #202636;
  padding-left: clamp(12px, 2vw, 24px);
}

.about-info-bar--index .about-info-bar__intro p {
  margin: 0;
}

.about-info-bar--index .about-info-bar__intro u {
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(32, 38, 54, 0.35);
}

.about-info-bar:not(.about-info-bar--index) {
  box-shadow: 0 28px 70px rgba(11, 0, 92, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.65);
}

.about-info-bar__header {
  padding: 14px clamp(20px, 3vw, 28px);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(92deg, #5ed4c0 0%, #6ec5f0 42%, #7ab8fb 100%);
}

.list_roman {
    list-style-type: upper-roman;
    padding-left: 20px; /* ez kell egy kicsi helynek */
}

.list_roman li {
    margin-bottom: 20px;
}

.list_roman li::marker {
    font-weight: bold;
}


.roman li::before {
    content: counter(item, upper-roman) ". ";
    font-weight: bold;
    display: inline-block;
    width: 40px; /* fix szélesség → szépen egyvonalba kerül */
}

/* Részletes adatkártya (rolunk / kapcsolat): fehér törzs */
.about-info-bar__body {
  border-left: 0;
  padding: clamp(18px, 2.5vw, 26px) clamp(20px, 3vw, 32px) clamp(20px, 3vw, 28px);
  background: linear-gradient(180deg, #ffffff 0%, #f4f8fc 100%);
  color: var(--black);
}

.about-info-bar__name {
  margin: 0 0 16px;
  font-size: clamp(16px, 1.5vw, 18px);
  font-weight: 600;
  line-height: 1.35;
  color: var(--dark-blue);
}

.about-info-bar__abbr {
  font-weight: 700;
  color: var(--black);
}

.about-info-dl {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.about-info-dl > div {
  display: grid;
  grid-template-columns: minmax(0, 38%) 1fr;
  gap: 10px 16px;
  align-items: baseline;
  font-size: clamp(14px, 1.25vw, 16px);
  line-height: 1.4;
}

.about-info-dl dt {
  margin: 0;
  font-weight: 600;
  color: var(--muted);
}

.about-info-dl dd {
  margin: 0;
  color: var(--black);
}

.about-info-dl a {
  color: var(--dark-blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.about-info-dl a:hover {
  color: #1a1f33;
}

.about-info-bar__subhead {
  margin: 20px 0 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
}

.about-info-dl--phones {
  gap: 8px;
}

.about-info-bar__email {
  margin: 18px 0 0;
  font-size: clamp(14px, 1.25vw, 16px);
  color: var(--black);
}

.about-info-bar__email a {
  color: var(--dark-blue);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (min-width: 640px) {
  .about-info-dl > div {
    grid-template-columns: minmax(140px, 34%) 1fr;
  }
 
}

/* Service sections */
.service-section {
  overflow-x: visible;
}

.service-section .split {
  gap: clamp(32px, 5vw, 80px);
}

.service-section .kicker {
  font-size: clamp(26px, 2.5vw, 32px);
}

.service-media {
  position: relative;
}

/* A kép + ikon együtt: ikon a fotó sarkához kötve, ne a teljes rácsoszlophoz */
.service-photo-frame {
  position: relative;
  width: 100%;
  max-width: 484px;
  overflow: visible;
}

.split.reverse .service-photo-frame {
  margin-right: auto;
  margin-left: 0;
}

.accommodation-section .service-photo-frame {
  margin-left: auto;
  margin-right: 0;
}

.service-image {
  width: 100%;
  max-width: 484px;
  height: auto;
  aspect-ratio: 484 / 675;
  object-fit: cover;
  border-radius: 24px;
  display: block;
}

/*
 * Lebegő ikon: a kép és a háttér határán, a szöveg felé eső oldal közepén
 * (baloszlopos kép → jobb szél közepe; jobboszlopos kép → bal szél közepe)
 */
.service-icon-card {
  position: absolute;
  right: 0;
  top: 50%;
  bottom: auto;
  left: auto;
  width: auto;
  min-width: 112px;
  min-height: 128px;
  border-radius: 24px;
  background: #f3f2f2;
  backdrop-filter: blur(27px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(18px, 3vw, 44px) clamp(16px, 2.2vw, 36px);
  transform: translate(46%, -50%);
  z-index: 2;
}

.service-icon-card.left {
  left: 0;
  right: auto;
  transform: translate(-46%, -50%);
}

.service-icon-card img {
  width: 99px;
  height: 99px;
  object-fit: cover;
}

.tagline {
  margin: 0 0 22px;
  padding: 10px 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 20px;
  border: 5px solid var(--green);
  background: rgba(132, 232, 207, 0.4);
  color: var(--dark-blue);
  font-size: clamp(18px, 2vw, 28px);
  font-weight: 500;
  line-height: 1.2;
  flex-wrap: wrap;
}

.tagline img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  flex-shrink: 0;
}

/* Catering overlap */
.catering-media {
  width: 100%;
  max-width: 595px;
  min-height: clamp(420px, 55vw, 783px);
  margin-left: auto;
  margin-right: auto;
  overflow: visible;
}

.catering-image-a {
  position: absolute;
  width: 60%;
  max-width: 356px;
  height: 61%;
  max-height: 478px;
  right: 0;
  top: 0;
  object-fit: cover;
  object-position: center top;
  border-radius: 24px;
  z-index: 2;
}

.catering-image-b {
  position: absolute;
  width: 81%;
  max-width: 484px;
  height: 47%;
  max-height: 370px;
  left: 0;
  bottom: 0;
  object-fit: cover;
  object-position: center top;
  border-radius: 24px;
  z-index: 1;
}

/* Felső kép bal széle (jobbra igazított, szélesség min(60%, 356px)), ikon a kép függőleges közepén */
.catering-icon-card {
  left: calc(100% - min(356px, 60%));
  right: auto;
  top: calc(0.9 * min(478px, 61%));
  bottom: auto;
  transform: translate(-50%, -50%);
  z-index: 3;
}

/* News */
.news-list {
  display: grid;
  gap: clamp(20px, 3vw, 32px);
  margin-top: clamp(32px, 5vw, 80px);
}

.news-card {
  display: grid;
  grid-template-columns: minmax(0, 509px) 1fr;
  min-height: auto;
  background: rgba(255, 255, 255, 0.75);
  border: 4px solid #fff;
  border-radius: 24px;
  backdrop-filter: blur(20px);
  box-shadow: 0 35px 133px rgba(113, 144, 190, 0.12);
  overflow: hidden;
}

.news-card img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
}

.news-card > div {
  padding: clamp(24px, 4vw, 48px);
}

.news-type {
  color: var(--green);
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

.news-card p {
  color: var(--muted);
  font-size: 20px;
  line-height: 1.4;
}

.news-more {
  margin-top: clamp(20px, 3vw, 32px);
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 18px;
  font-weight: 600;
  color: var(--dark-blue);
}

.news-more:hover {
  color: #1a1f33;
}

.news-more-icon {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: var(--green);
  color: var(--dark-blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.news-more-icon svg {
  display: block;
  margin-left: 1px;
}

/* Footer */
.footer {
  margin-top: 80px;
  background: var(--white);
  box-shadow: 0 -49px 134px rgba(133, 191, 251, 0.06);
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(200px, 1.6fr) repeat(6, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 40px);
  padding: 72px 0 36px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 24px);
  min-width: 0;
}

.footer-brand-name {
  margin: 0;
  font-size: clamp(16px, 1.5vw, 20px);
  font-weight: 700;
  line-height: 1.35;
  color: var(--black);
}

.footer-col .footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.4;
}

.footer-links a:hover {
  color: var(--dark-blue);
}

.footer h4 {
  font-size: 18px;
  margin: 0 0 14px;
  color: var(--black);
}

.footer-brand > a {
  display: inline-flex;
  flex-shrink: 0;
  text-decoration: none;
  color: inherit;
}

.footer-brand .footer-logo {
  flex-shrink: 0;
}

.footer p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
  font-size: 15px;
}

.footer-bottom {
  border-top: 1px solid #d4d6dd;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding: 26px 0 40px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 450ms ease, transform 450ms ease;
}

@media (max-width: 1320px) and (min-width: 901px) {
  .footer-top {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 1180px) {
    .service-icon-card{
        right: 0px;
        bottom: 140px;
        left: 12px;
        height: 130px;
        width: 130px;
        transform: none;
        position: relative;        
    }    
    
    
    
  .site-header {
    position: sticky;
    border-radius: 0;
    box-shadow: none;
  }
    .about-logo-card{
        left: auto;
        right: 0%;
    }  
  .main-nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid #e8e8e8;
    padding: 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    display: none;
    z-index: 49;
  }

  .main-nav.open {
    display: flex;
  }

  .menu-toggle {
    display: flex;
  }

  .contact-chip {
    display: none;
  }

  .split,
  .split.reverse {
    grid-template-columns: 1fr;
  }

  .split.reverse .image-block,
  .split.reverse .service-media {
    order: 0;
  }

  .about-section__visual {
    max-width: min(560px, 100%);
    margin-left: auto;
    margin-right: auto;
  }

  .service-photo-frame {
    max-width: none;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .service-icon-card.left {
    left: 12px;
    right: auto;
    transform: none;
  }

  .catering-icon-card {
    display: none;
  }

  .catering-image-a {
    position: relative;
    width: 100%;
    max-width: none;
    height: auto;
    aspect-ratio: 4 / 3;
    right: auto;
    top: auto;
    margin-bottom: 12px;
  }

  .catering-image-b {
    position: relative;
    width: 100%;
    max-width: none;
    height: auto;
    aspect-ratio: 16 / 10;
    left: auto;
    bottom: auto;
  }

  .catering-media {
    min-height: auto;
    padding-bottom: 100px;
  }

  .news-card {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    flex-wrap: wrap;
  }
}

@media (max-width: 680px) {
  .section {
    padding: 48px 0;
  }

  .hero-tile {
    border-width: 6px;
    border-radius: 22px;
    font-size: 16px;
  }

  .tagline {
    border-width: 3px;
    font-size: 16px;
  }

  .tagline img {
    width: 32px;
    height: 32px;
  }
    
    .about-logo-card{
        left: auto;
        right: 0%;
        bottom: 20%;
    }
}

/* --- Belső oldalak (külön HTML) --- */
body.inner-page {
  padding-top: 0;
}

@media (min-width: 1181px) {
  body.inner-page .site-header {
    position: relative;
    border-radius: 0;
    box-shadow: 0 1px 0 #e6e8ee;
  }
  
}

.page-hero {
  padding: clamp(40px, 6vw, 72px) 0 clamp(28px, 4vw, 48px);
  background: linear-gradient(180deg, rgba(133, 191, 251, 0.1) 0%, transparent 100%);
  border-bottom: 1px solid rgba(32, 38, 54, 0.06);
}

.page-hero h1 {
  margin: 0;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 500;
  line-height: 1.2;
  color: var(--black);
}

.page-hero .kicker {
  margin-bottom: 8px;
}

.page-breadcrumb {
  font-size: 14px;
  margin: 0 0 18px;
  color: var(--muted);
}

.page-breadcrumb a {
  color: var(--muted);
}

.page-breadcrumb a:hover {
  color: var(--dark-blue);
}

.content-narrow {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.content-wide {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.doc-link-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
}

.doc-link-list li {
  margin: 0 0 12px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid #e4e7ef;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  box-shadow: 0 8px 28px rgba(113, 144, 190, 0.08);
}

.doc-link-list a {
  font-weight: 600;
  color: var(--dark-blue);
}

.doc-link-list a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.doc-meta {
  font-size: 14px;
  color: var(--muted);
}

.info-callout {
  margin-top: 28px;
  padding: 20px 24px;
  border-radius: 20px;
  background: rgba(132, 232, 207, 0.22);
  border: 1px solid rgba(132, 232, 207, 0.55);
  font-size: 17px;
  line-height: 1.45;
  color: var(--dark-blue);
}

.inner-split {
  display: grid;
  gap: clamp(28px, 4vw, 48px);
  align-items: start;
}

.h-legal {
  font-size: 22px;
  margin: 32px 0 12px;
  font-weight: 600;
  color: var(--black);
}

@media (min-width: 901px) {
  .inner-split {
    grid-template-columns: 1fr 1fr;
  }
     
}

/* --- Közzétételi lista (Figma frame „Közzétételi lista”, 1920 / 1565 belső sík) --- */
body.page-kozzeteteli-lista {
  background: #fafafa;
}

.page-kozzeteteli-lista .kzl {
  overflow-x: clip;
}

/* Fő tartomány: max 1565px — Közzétételi + belső aloldalak */
body.page-kozzeteteli-lista .kzl-rail,
body.page-kapcsolat .kzl-rail,
body.page-allas .kzl-rail,
body.page-szallashely .kzl-rail,
body.page-letoltes .kzl-rail,
body.page-etlapok .kzl-rail {
  width: 100%;
  max-width: 1565px;
  margin-left: auto;
  margin-right: auto;
}

body.page-kozzeteteli-lista .kzl-hero,
body.page-kapcsolat .kzl-hero,
body.page-allas .kzl-hero,
body.page-szallashely .kzl-hero,
body.page-letoltes .kzl-hero,
body.page-etlapok .kzl-hero {
  position: relative;
  display: flex;
  flex-direction: column;
  margin: clamp(12px, 2vw, 24px) clamp(12px, 3vw, 24px) 0;
  border-radius: 40px;
  background: var(--dark-blue);
  color: #fff;
  overflow: hidden;
  min-height: clamp(420px, min(779px, 78vh), 779px);
}

body.page-kozzeteteli-lista .kzl-hero__bg,
body.page-kapcsolat .kzl-hero__bg,
body.page-allas .kzl-hero__bg,
body.page-szallashely .kzl-hero__bg,
body.page-letoltes .kzl-hero__bg,
body.page-etlapok .kzl-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 50% 70% at 100% 50%, rgba(11, 0, 92, 0.35) 0%, transparent 55%),
    radial-gradient(circle at 78% 50%, rgba(133, 191, 251, 0.12) 0%, transparent 45%);
}

body.page-kozzeteteli-lista .kzl-hero__inner,
body.page-kapcsolat .kzl-hero__inner,
body.page-allas .kzl-hero__inner,
body.page-szallashely .kzl-hero__inner,
body.page-letoltes .kzl-hero__inner,
body.page-etlapok .kzl-hero__inner {
  position: relative;
  z-index: 1;
  flex: 1 1 auto;
  display: grid;
  grid-template-rows: auto 1fr;
  align-items: stretch;
  min-height: 0;
  padding-top: clamp(72px, 11vw, 104px);
  padding-bottom: clamp(40px, 6vw, 72px);
  box-sizing: border-box;
  background-image: url(./images/hero-ring.svg);
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: min(609px, min(52vw, 100%));
    margin-left: 20px;    
}

@media (min-width: 1181px) {
  body.page-kozzeteteli-lista .kzl-hero__inner,
  body.page-kapcsolat .kzl-hero__inner,
  body.page-allas .kzl-hero__inner,
  body.page-szallashely .kzl-hero__inner,
  body.page-letoltes .kzl-hero__inner,
  body.page-etlapok .kzl-hero__inner {
    padding-top: clamp(32px, 4vw, 48px);
  }
}

@media (max-width: 900px) {
  body.page-kozzeteteli-lista .kzl-hero__inner,
  body.page-kapcsolat .kzl-hero__inner,
  body.page-allas .kzl-hero__inner,
  body.page-szallashely .kzl-hero__inner,
  body.page-letoltes .kzl-hero__inner,
  body.page-etlapok .kzl-hero__inner {
    background-size: min(300px, 78vw);
    background-position: right -8% bottom -4%;
  }
}

body.page-kozzeteteli-lista .kzl-hero__breadcrumb,
body.page-kapcsolat .kzl-hero__breadcrumb,
body.page-allas .kzl-hero__breadcrumb,
body.page-szallashely .kzl-hero__breadcrumb,
body.page-letoltes .kzl-hero__breadcrumb,
body.page-etlapok .kzl-hero__breadcrumb {
  font-size: 14px;
  line-height: 1.2;
  margin: 30px 20px 8px;
  color: rgba(255, 255, 255, 0.72);
}

body.page-kozzeteteli-lista .kzl-hero__breadcrumb a,
body.page-kapcsolat .kzl-hero__breadcrumb a,
body.page-allas .kzl-hero__breadcrumb a,
body.page-szallashely .kzl-hero__breadcrumb a,
body.page-letoltes .kzl-hero__breadcrumb a,
body.page-etlapok .kzl-hero__breadcrumb a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

body.page-kozzeteteli-lista .kzl-hero__breadcrumb a:hover,
body.page-kapcsolat .kzl-hero__breadcrumb a:hover,
body.page-allas .kzl-hero__breadcrumb a:hover,
body.page-szallashely .kzl-hero__breadcrumb a:hover,
body.page-letoltes .kzl-hero__breadcrumb a:hover,
body.page-etlapok .kzl-hero__breadcrumb a:hover {
  color: #fff;
}

/* Fő blokk: szöveg a sínon; a gyűrű a kzl-hero__inner háttérképe (nincs külön dekor oszlop) */
body.page-kozzeteteli-lista .kzl-hero__main,
body.page-kapcsolat .kzl-hero__main,
body.page-allas .kzl-hero__main,
body.page-szallashely .kzl-hero__main,
body.page-letoltes .kzl-hero__main,
body.page-etlapok .kzl-hero__main {
  display: flex;
  align-items: center;
  min-height: 0;
}

body.page-kozzeteteli-lista .kzl-hero__row,
body.page-kapcsolat .kzl-hero__row,
body.page-allas .kzl-hero__row,
body.page-szallashely .kzl-hero__row,
body.page-letoltes .kzl-hero__row,
body.page-etlapok .kzl-hero__row {
  display: block;
  width: 100%;
  position: relative;
}

body.page-allas .kzl-hero__row--float,
body.page-szallashely .kzl-hero__row--float {
  min-height: 300px;
}

body.page-allas .kzl-hero__glass,
body.page-szallashely .kzl-hero__glass {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 32px;
  box-sizing: border-box;
  z-index: 2;
  pointer-events: none;
}

body.page-allas .kzl-hero__glass-icon {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(145deg, #84e8cf, #85bffb);
  display: flex;
  align-items: center;
  justify-content: center;
}

body.page-allas .kzl-hero__glass-icon svg {
  width: 56px;
  height: 56px;
  color: #0b005c;
}


body.page-szallashely .kzl-hero__glass img {
  width: 100%;
  height: auto;
  color: #0b005c;
}

@media (max-width: 900px) {
  body.page-kozzeteteli-lista .kzl-hero__main,
  body.page-kapcsolat .kzl-hero__main,
  body.page-allas .kzl-hero__main,
  body.page-szallashely .kzl-hero__main,
  body.page-letoltes .kzl-hero__main,
  body.page-etlapok .kzl-hero__main {
    align-items: flex-start;
  }

  body.page-allas .kzl-hero__row--float,
  body.page-szallashely .kzl-hero__row--float {
    min-height: 0;
  }

  body.page-allas .kzl-hero__glass,
  body.page-szallashely .kzl-hero__glass {
    position: relative;
    transform: none;
    top: auto;
    right: auto;
    margin-top: 24px;
    width: 100%;
    max-width: 360px;
  }
}

body.page-kozzeteteli-lista .kzl-hero__text,
body.page-kapcsolat .kzl-hero__text,
body.page-allas .kzl-hero__text,
body.page-szallashely .kzl-hero__text,
body.page-letoltes .kzl-hero__text,
body.page-etlapok .kzl-hero__text {
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-width: 0;
  position: relative;
  z-index: 1;
  max-width: min(100%, 52rem);
}

body.page-kozzeteteli-lista .kzl-hero__title,
body.page-kapcsolat .kzl-hero__title,
body.page-allas .kzl-hero__title,
body.page-szallashely .kzl-hero__title,
body.page-letoltes .kzl-hero__title,
body.page-etlapok .kzl-hero__title {
  margin: 0;
  font-size: clamp(28px, 2.1vw, 40px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0;
  color: #84e8cf;
}

body.page-kapcsolat .kzl-hero__subtitle,
body.page-allas .kzl-hero__subtitle,
body.page-szallashely .kzl-hero__subtitle {
  margin: 0;
  font-size: clamp(36px, 5vw, 80px);
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
  max-width: 18ch;
}

body.page-kozzeteteli-lista .kzl-hero__list,
body.page-letoltes .kzl-hero__list,
body.page-etlapok .kzl-hero__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

body.page-etlapok .kzl-hero__list {
  gap: 20px;
}

body.page-kozzeteteli-lista .kzl-hero__list > li,
body.page-letoltes .kzl-hero__list > li,
body.page-etlapok .kzl-hero__list > li {
  display: flex;
  align-items: center;
  gap: 24px;
}

body.page-kozzeteteli-lista .kzl-hero__check,
body.page-letoltes .kzl-hero__check,
body.page-etlapok .kzl-hero__check {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
}

body.page-kozzeteteli-lista .kzl-hero__line,
body.page-letoltes .kzl-hero__line,
body.page-etlapok .kzl-hero__line {
  font-size: clamp(22px, 2.5vw, 48px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0;
  color: #fff;
}

/* Tab sor: Figma gap 20px, oszlop ~288 / 288 / ~213+padding */
.page-kozzeteteli-lista .kzl-tabs-wrap {
  background: #fafafa;
  padding: clamp(48px, 7vw, 80px) 0 16px;
}

.page-kozzeteteli-lista .kzl-tabs {
  display: grid;
  grid-template-columns: minmax(0, 288px) minmax(0, 288px) minmax(0, 218px);
  gap: 20px;
  align-items: end;
  max-width: 1176px;
}

@media (max-width: 900px) {
  .page-kozzeteteli-lista .kzl-tabs {
    grid-template-columns: 1fr;
    max-width: none;
  }
}

.page-kozzeteteli-lista .kzl-tab {
  appearance: none;
  border: 0;
  background: transparent;
  font: inherit;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--black);
  min-height: 44px;
  padding: 12px 24px 12px 0;
  margin: 0;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  border-radius: 0;
  text-align: left;
  box-sizing: border-box;
}

.page-kozzeteteli-lista .kzl-tab--narrow {
  padding-left: 5px;
  padding-right: 10px;
}

.page-kozzeteteli-lista .kzl-tab:hover {
  color: var(--dark-blue);
}

.page-kozzeteteli-lista .kzl-tab.is-active {
  color: var(--dark-blue);
  border-bottom-color: var(--dark-blue);
}

.page-kozzeteteli-lista .kzl-body {
  padding: 0 0 clamp(56px, 8vw, 96px);
  background: #fafafa;
}

.page-kozzeteteli-lista .kzl-section-head {
  margin-bottom: 32px;
}

.page-kozzeteteli-lista .kzl-section-head__title {
  margin: 0 0 24px;
  font-size: clamp(28px, 2.1vw, 40px);
  font-weight: 500;
  line-height: 1.2;
  color: #202636;
}

.page-kozzeteteli-lista .kzl-section-head .section-line {
  margin-bottom: 0;
}

.page-kozzeteteli-lista .kzl-panels {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.page-kozzeteteli-lista .kzl-panel[hidden] {
  display: none !important;
}

.page-kozzeteteli-lista .kzl-acc {
  margin: 0 0 18px;
  border-radius: 24px;
  border: 2px solid #eaeaea;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(33px);
  -webkit-backdrop-filter: blur(33px);
  box-shadow: 0 8px 28px rgba(113, 144, 190, 0.08);
  overflow: hidden;
}

.page-kozzeteteli-lista .kzl-acc__summary {
  list-style: none;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 32px;
  cursor: pointer;
  box-sizing: border-box;
}

.page-kozzeteteli-lista .kzl-acc__summary::-webkit-details-marker {
  display: none;
}

.page-kozzeteteli-lista .kzl-acc__title {
  flex: 1;
  min-width: 0;
  font-size: clamp(18px, 1.25vw, 24px);
  font-weight: 600;
  line-height: 1.2;
  color: var(--dark-blue);
}

.page-kozzeteteli-lista .kzl-acc__chev {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  margin-top: 2px;
  border-right: 2px solid var(--dark-blue);
  border-bottom: 2px solid var(--dark-blue);
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}

.page-kozzeteteli-lista .kzl-acc[open] .kzl-acc__chev {
  transform: rotate(225deg);
  margin-top: 8px;
}

.page-kozzeteteli-lista .kzl-acc__body {
  padding: 50px 32px 24px;
  border-top: 1px solid rgba(234, 234, 234, 0.95);
  box-sizing: border-box;
}

.page-kozzeteteli-lista .kzl-acc__body--empty {
  padding-top: 20px;
  padding-bottom: 20px;
}

.page-kozzeteteli-lista .kzl-kv {
  margin: 0;
  padding: 0;
}

.page-kozzeteteli-lista .kzl-kv__row {
  display: grid;
  grid-template-columns: 253px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  margin: 0 0 18px;
}

.page-kozzeteteli-lista .kzl-kv__row:last-child {
  margin-bottom: 0;
}

@media (max-width: 720px) {
  .page-kozzeteteli-lista .kzl-kv__row {
    grid-template-columns: 1fr;
    align-items: start;
  }
}

.page-kozzeteteli-lista .kzl-kv dt {
  margin: 0;
}

.page-kozzeteteli-lista .kzl-kv dd {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
  color: #202636;
}

.page-kozzeteteli-lista .kzl-kv--body dd {
  font-weight: 400;
}

.page-kozzeteteli-lista .kzl-kv__abbr {
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 40px;
  color: #202636;
}

.page-kozzeteteli-lista .kzl-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  width: 253px;
  max-width: 100%;
  padding: 4px 12px;
  box-sizing: border-box;
  border-radius: 24px;
  background: #84e8cf;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
}

.page-kozzeteteli-lista .kzl-kv a {
  color: var(--dark-blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.page-kozzeteteli-lista .kzl-meta {
  margin-top: 24px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.2;
  color: #202636;
}

.page-kozzeteteli-lista .kzl-meta__label {
  font-weight: 700;
}

.page-kozzeteteli-lista .kzl-meta p {
  margin: 0 0 4px;
}

.page-kozzeteteli-lista .kzl-linkout {
  margin: 18px 0 0;
}

.page-kozzeteteli-lista .kzl-linkout a {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--dark-blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.page-kozzeteteli-lista .kzl-table-scroll {
  overflow-x: auto;
  margin: 0 0 8px;
  border-radius: 0;
  border: 1px solid #e9eaeb;
}

.page-kozzeteteli-lista .kzl-table {
  width: 100%;
  min-width: 1120px;
  border-collapse: collapse;
  font-size: 16px;
  line-height: 1.2;
}

.page-kozzeteteli-lista .kzl-table--5 {
  min-width: 1400px;
}

.page-kozzeteteli-lista .kzl-table th {
  background: #85bffb;
  color: var(--black);
  font-weight: 600;
  font-size: 18px;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  padding: 12px 24px;
  height: 44px;
  box-sizing: border-box;
  border-bottom: 1px solid #e9eaeb;
  white-space: nowrap;
}

.page-kozzeteteli-lista .kzl-table td {
  padding: 16px 24px;
  min-height: 72px;
  box-sizing: border-box;
  border-bottom: 1px solid #e9eaeb;
  color: #181d27;
  vertical-align: middle;
}

.page-kozzeteteli-lista .kzl-table tbody tr:nth-child(even) {
  background: rgba(133, 191, 251, 0.08);
}

.page-kozzeteteli-lista .kzl-table a {
  color: #181d27;
  text-decoration: underline;
}

.page-kozzeteteli-lista .kzl-placeholder,
.page-kozzeteteli-lista .kzl-lead {
  margin: 0 0 16px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.45;
  color: #202636;
}

.page-kozzeteteli-lista .kzl-lead {
  max-width: 1064px;
}

/* --- Figma belső aloldalak (Kapcsolat, Állás, Szálláshely, Letöltés, Étlapok) --- */
body.page-kapcsolat,
body.page-allas,
body.page-szallashely,
body.page-letoltes,
body.page-etlapok {
  background: #fafafa;
}

/* Kapcsolat: Figma kv-sorok + térkép */
body.page-kapcsolat .fig-contact {
  padding: clamp(48px, 7vw, 80px) 0 clamp(40px, 6vw, 64px);
}

body.page-kapcsolat .fig-contact__grid {
  display: grid;
  gap: clamp(32px, 5vw, 60px);
  align-items: start;
}

@media (min-width: 1024px) {
  body.page-kapcsolat .fig-contact__grid {
    grid-template-columns: minmax(0, 952px) minmax(280px, 613px);
    align-items: center;
  }
}

body.page-kapcsolat .fig-head {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

body.page-kapcsolat .fig-head__kicker {
  margin: 0;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.2;
  color: #85bffb;
}

body.page-kapcsolat .fig-head__line {
  width: 56px;
  height: 3px;
  background: #85bffb;
  border-radius: 1px;
}

body.page-kapcsolat .fig-head__title {
  margin: 16px 0 0;
  font-size: clamp(28px, 2.1vw, 40px);
  font-weight: 500;
  line-height: 1.2;
  color: #202636;
}

body.page-kapcsolat .fig-kv {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

body.page-kapcsolat .fig-kv__row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  width: 100%;
  max-width: 1014px;
}

body.page-kapcsolat .fig-kv__pill {
  position: relative;
  flex: 0 0 335px;
  max-width: 100%;
  min-height: 32px;
  border-radius: 24px;
  background: #84e8cf;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px 12px;
  box-sizing: border-box;
}

body.page-kapcsolat .fig-kv__pill span {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
  color: #fff;
  text-align: center;
}

body.page-kapcsolat .fig-kv__val {
  flex: 1 1 240px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
  color: #202636;
  min-width: 0;
}

body.page-kapcsolat .fig-kv__val a {
  color: inherit;
  text-decoration: none;
}

body.page-kapcsolat .fig-kv__val a:hover {
  text-decoration: underline;
}

body.page-kapcsolat .fig-kv__sub {
  margin: 32px 0 16px;
  font-size: 24px;
  font-weight: 500;
  color: #202636;
}

body.page-kapcsolat .fig-map {
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 613 / 367;
  background: #e4e8f0;
  box-shadow: 0 35px 133px rgba(113, 144, 190, 0.12);
}

body.page-kapcsolat .fig-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  min-height: 280px;
}

/* Álláspályázatok: szekciófej + kártyák */
body.page-allas .fig-career {
  padding: clamp(48px, 7vw, 80px) 0 clamp(56px, 8vw, 96px);
}

body.page-allas .fig-career__head {
  margin-bottom: clamp(40px, 6vw, 80px);
}

body.page-allas .fig-career__kicker {
  margin: 0;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.2;
  color: #85bffb;
}

body.page-allas .fig-career__line {
  width: 56px;
  height: 3px;
  background: #85bffb;
  margin-top: 8px;
}

body.page-allas .fig-career__title {
  margin: 24px 0 0;
  font-size: clamp(28px, 2.1vw, 40px);
  font-weight: 500;
  color: #202636;
}

body.page-allas .fig-job-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 1584px;
  margin: 0 auto;
}

body.page-allas .fig-job-card {
  display: flex;
  flex-wrap: wrap;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 35px 133px rgba(113, 144, 190, 0.08);
  background: #fff;
}

body.page-allas .fig-job-card__media {
  flex: 0 0 509px;
  max-width: 100%;
  min-height: 280px;
}

body.page-allas .fig-job-card__media img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  display: block;
}

body.page-allas .fig-job-card__body {
  flex: 1 1 360px;
  min-width: 0;
  padding: clamp(28px, 4vw, 48px);
  background: rgba(255, 255, 255, 0.65);
  border: 4px solid #fff;
  border-radius: 24px;
  margin: -1px;
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 32px;
}

body.page-allas .fig-job-card__tag {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #84e8cf;
  letter-spacing: 0.04em;
}

body.page-allas .fig-job-card__name {
  margin: 0;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.2;
  color: #202636;
}

body.page-allas .fig-job-card__desc {
  margin: 0;
  font-size: 20px;
  line-height: 1.2;
  color: #737b8f;
}

body.page-allas .fig-job-card__more {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  text-decoration: none;
  color: #0b005c;
  font-size: 20px;
  font-weight: 500;
}

body.page-allas .fig-job-card__more:hover .fig-job-card__more-ic {
  background: #0b005c;
  color: #fff;
}

body.page-allas .fig-job-card__more-ic {
  width: 40px;
  height: 40px;
  border-radius: 40px;
  border: 1px solid #0b005c;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

body.page-allas .fig-job-card__more-ic svg {
  width: 22px;
  height: 22px;
}

/* Szálláshely */
body.page-szallashely .fig-host {
  padding: clamp(48px, 7vw, 80px) 0;
}

body.page-szallashely .fig-host__grid {
  display: grid;
  gap: clamp(40px, 8vw, 131px);
  align-items: center;
}

@media (min-width: 1100px) {
  body.page-szallashely .fig-host__grid {
    grid-template-columns: minmax(0, 783px) minmax(0, 738px);
  }
}

body.page-szallashely .fig-host__visual {
  position: relative;
  min-height: 420px;
  z-index: 0;
}

body.page-szallashely .fig-host__mint {
  position: absolute;
  left: 0;
  top: 60px;
  width: min(589px, 100%);
  height: min(511px, 70vw);
  background: #84e8cf;
  border-radius: 0 40px 40px 0;
  z-index: 1;
}

body.page-szallashely .fig-host__card {
  position: absolute;
  border-radius: 24px;
  border: 2px solid rgba(255, 255, 255, 0.95);
  padding: 32px;
  backdrop-filter: blur(14px);
  box-shadow: 0 24px 80px rgba(0, 48, 121, 0.12);
  max-width: 240px;
  z-index: 2;
}

body.page-szallashely .fig-host__card--phone {
  left: 12%;
  top: -20px;
  background: rgba(255, 255, 255, 0.85);
}

body.page-szallashely .fig-host__card--mail {
  right: 0;
  top: 38%;
  background: #85bffb;
  color: #fff;
}

body.page-szallashely .fig-host__card--loc {
  left: 8%;
  bottom: 0;
  background: #0b005c;
  color: #fff;
}

body.page-szallashely .fig-host__card-ic {
  width: 48px;
  height: 48px;
  border-radius: 56px;
  background: #84e8cf;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

body.page-szallashely .fig-host__card--mail .fig-host__card-ic {
  background: #84e8cf;
}

body.page-szallashely .fig-host__card--loc .fig-host__card-ic {
  background: #84e8cf;
}

body.page-szallashely .fig-host__card p {
  margin: 0;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.2;
}

body.page-szallashely .fig-host__card--phone p {
  color: #202636;
}

body.page-szallashely .fig-host__card--mail p,
body.page-szallashely .fig-host__card--loc p {
  color: #fff;
}

body.page-szallashely .fig-host__text .fig-head__kicker {
  margin: 0;
  font-size: 32px;
  font-weight: 400;
  color: #85bffb;
}

body.page-szallashely .fig-host__text .fig-head__line {
  width: 56px;
  height: 3px;
  background: #85bffb;
  margin-top: 8px;
}

body.page-szallashely .fig-host__text h2 {
  margin: 24px 0 0;
  font-size: clamp(28px, 2.1vw, 40px);
  font-weight: 500;
  color: #202636;
}

body.page-szallashely .fig-host__prose {
  margin-top: 32px;
  font-size: 20px;
  line-height: 1.2;
  color: #000;
  max-width: 732px;
}

body.page-szallashely .fig-host__price {
  margin-top: 28px;
  font-size: 20px;
  font-weight: 500;
  color: #0b005c;
}

body.page-szallashely .fig-gallery {
  padding: clamp(48px, 6vw, 108px) 0 clamp(56px, 8vw, 96px);
}

body.page-szallashely .fig-gallery h2 {
  margin: 0 0 12px;
  font-size: clamp(28px, 2.1vw, 40px);
  font-weight: 500;
  color: #202636;
}

body.page-szallashely .fig-gallery__line {
  width: 56px;
  height: 3px;
  background: #85bffb;
  margin-bottom: 40px;
}

body.page-szallashely .fig-gallery__grid {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

body.page-szallashely .fig-gallery__grid img {
  width: 100%;
  height: auto;
  aspect-ratio: 515 / 409;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

/* Letöltés + Étlap: szűrősáv + dokumentum szekciók */
body.page-letoltes .fig-dl,
body.page-etlapok .fig-dl {
  padding: clamp(32px, 5vw, 60px) 0 clamp(56px, 8vw, 96px);
}

body.page-letoltes .fig-pills,
body.page-etlapok .fig-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  margin-bottom: clamp(40px, 6vw, 72px);
}

body.page-letoltes .fig-pill,
body.page-etlapok .fig-pill {
  appearance: none;
  border: 0;
  font: inherit;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  min-height: 44px;
  border-radius: 10px;
  background: rgba(132, 232, 207, 0.5);
  font-size: 18px;
  font-weight: 600;
  color: #000;
}

body.page-letoltes .fig-pill:hover,
body.page-etlapok .fig-pill:hover {
  background: rgba(132, 232, 207, 0.75);
}

body.page-letoltes .fig-doc-block,
body.page-etlapok .fig-doc-block {
  margin-bottom: 60px;
  scroll-margin-top: 96px;
}

body.page-letoltes .fig-doc-block h2,
body.page-etlapok .fig-doc-block h2 {
  margin: 0 0 24px;
  font-size: clamp(28px, 2.1vw, 40px);
  font-weight: 500;
  color: #202636;
}

body.page-letoltes .fig-accent-line,
body.page-etlapok .fig-accent-line {
  width: 56px;
  height: 3px;
  background: #85bffb;
  margin-bottom: 24px;
}

@media (max-width: 900px) {
  body.page-allas .fig-job-card {
    flex-direction: column;
  }

  body.page-allas .fig-job-card__media {
    flex: none;
    width: 100%;
  }
}

body.page-letoltes .fig-dl-row,
body.page-etlapok .fig-dl-row {
  display: flex;
  align-items: center;
  gap: 21px;
  padding: 10px 0;
  flex-wrap: wrap;
}

body.page-letoltes .fig-dl-row a,
body.page-etlapok .fig-dl-row a {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.2;
  color: #000;
  text-decoration: none;
}

body.page-letoltes .fig-dl-row a:hover,
body.page-etlapok .fig-dl-row a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

body.page-letoltes .fig-dl-ic,
body.page-etlapok .fig-dl-ic {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: #0b005c;
}
.news-detail-section { padding-top: clamp(40px, 6vw, 90px); }
.news-detail-card { background: rgba(255,255,255,.78); border: 4px solid #fff; border-radius: 28px; box-shadow: 0 35px 133px rgba(113,144,190,.12); overflow: hidden; }
.news-detail-card picture, .news-detail-card img { display: block; width: 100%; }
.news-detail-card img { max-height: 520px; object-fit: cover; }
.news-detail-body { padding: clamp(26px, 5vw, 64px); }
.news-detail-text { color: #202636; font-size: clamp(18px, 2vw, 21px); line-height: 1.7; margin-top: 22px; }
.etlap-accordion { display: flex; flex-direction: column; gap: 18px; }
.etlap-konyha { background: rgba(255,255,255,.78); border: 4px solid #fff; border-radius: 24px; box-shadow: 0 18px 70px rgba(113,144,190,.12); overflow: hidden; }
.etlap-konyha__head { width: 100%; border: 0; background: transparent; padding: 22px 26px; display: flex; align-items: center; justify-content: space-between; gap: 16px; font-size: clamp(22px, 2vw, 30px); color: #202636; cursor: pointer; text-align: left; }
.etlap-konyha__head span:first-child { font-weight: 600; }
.etlap-konyha__head::after { content: '+'; font-size: 34px; line-height: 1; color: #0b005c; }
.etlap-konyha__head[aria-expanded="true"]::after { content: '−'; }
.etlap-konyha__count { font-size: 16px; color: #64748b; font-weight: 400; margin-left: auto; }
.etlap-konyha__body { padding: 0 26px 22px; }
.etlap-empty { margin: 0; color: #64748b; font-size: 18px; }
.etlap-row { border-top: 1px solid rgba(32,38,54,.12); }
.etlap-open { border: 0; background: transparent; padding: 0; font: inherit; font-size: 22px; line-height: 1.35; color: #000; cursor: pointer; text-align: left; }
.etlap-open:hover { text-decoration: underline; text-underline-offset: 4px; }
.etlap-modal[hidden] { display: none; }
.etlap-modal { position: fixed; inset: 0; z-index: 9999; display: flex; align-items: center; justify-content: center; padding: 24px; }
.etlap-modal__backdrop { position: absolute; inset: 0; background: rgba(11,0,92,.68); }
.etlap-modal__box { position: relative; width: min(1100px, 96vw); height: min(820px, 90vh); background: #fff; border-radius: 22px; box-shadow: 0 35px 133px rgba(0,0,0,.28); overflow: hidden; }
.etlap-modal__box iframe { width: 100%; height: 100%; border: 0; }
.etlap-modal__close { position: absolute; right: 14px; top: 10px; z-index: 2; width: 42px; height: 42px; border: 0; border-radius: 50%; background: #0b005c; color: #fff; font-size: 30px; line-height: 1; cursor: pointer; }
body.modal-open { overflow: hidden; }
@media (max-width: 700px) { .etlap-konyha__head { flex-direction: column; align-items: flex-start; } .etlap-konyha__count { margin-left: 0; } .etlap-modal { padding: 10px; } .etlap-modal__box { height: 86vh; } }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
body.page-letoltes .fig-pills a { text-decoration: none; }
body.page-letoltes .letoltes-block { background: rgba(255,255,255,.58); border: 4px solid #fff; border-radius: 28px; box-shadow: 0 18px 70px rgba(113,144,190,.10); padding: clamp(22px, 4vw, 42px); }
body.page-letoltes .letoltes-row { border-top: 1px solid rgba(32,38,54,.12); padding: 18px 0; align-items: flex-start; }
body.page-letoltes .letoltes-row:first-of-type { border-top: 0; }
body.page-letoltes .letoltes-row__text { display: flex; flex-direction: column; gap: 6px; }
body.page-letoltes .letoltes-row__text p { margin: 0; color: #64748b; font-size: 17px; line-height: 1.45; }
