@import url('https://fonts.googleapis.com/css2?family=Lexend+Deca:wght@300;400;500;600;700&display=swap');

:root {
    --hk-bg: #FFFFFF;
    --hk-bg-section: #F4F4F4;
    --hk-border-subtle: #E6E6E6;
    --hk-text-main: #111111;
    --hk-text-muted: #8F8F8F;
    --hk-gold: #BAAB7D;
    --hk-gold-hover: #c6b989;
    --hk-header-height: 72px;
    --hk-font-sans: "Lexend Deca", system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
}

#hetkapolna-app-root {
    min-height: 100vh;
    background-color: var(--hk-bg);
    font-family: var(--hk-font-sans);
    color: var(--hk-text-main);
    margin: 0;
}

.hk-root {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header */

.hk-header {
    height: var(--hk-header-height);
    padding: 0 2.75rem;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--hk-border-subtle);
    background-color: #FFFFFF;
    box-sizing: border-box;
}

.hk-header-left {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-right: 2.5rem;
}

.hk-logo-wrap {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hk-logo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.hk-brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}

.hk-brand-line {
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.hk-brand-line--top {
    font-size: 0.7rem;
    font-weight: 300;
    color: var(--hk-text-muted);
    margin-bottom: 0.05rem;
}

.hk-brand-line--bottom {
    font-size: 0.8rem;
    font-weight: 600;
}

.hk-header-center {
    margin-left: auto;
    margin-right: 1.5rem;
}

/* CTA */

.hk-cta {
    border: none;
    cursor: pointer;
    padding: 0.75rem 2.1rem;
    border-radius: 2px;
    text-decoration: none;
    background-color: var(--hk-gold);
    color: #FFFFFF;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 0.86rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: background-color 0.15s ease, transform 0.1s ease;
}

.hk-cta:hover {
    background-color: var(--hk-gold-hover);
    transform: translateY(-1px);
}

.hk-cta-icon svg {
    width: 1.05rem;
    height: 1.05rem;
    stroke: #FFFFFF;
    fill: none;
}

.hk-cta-icon img {
    width: 1.1rem;
    height: 1.1rem;
    object-fit: contain;
    display: block;
}

/* Right menu */

.hk-header-right {
    display: flex;
    align-items: center;
    gap: 2.0rem;
}

.hk-link {
    text-decoration: none;
    border: none;
    background: transparent;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #6F6F6F;
    cursor: pointer;
    padding: 0;
    position: relative;
}

.hk-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.35rem;
    width: 0%;
    height: 1px;
    background-color: #000000;
    transition: width 0.16s ease;
}

.hk-link:hover::after { width: 100%; }

.hk-link--menu {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
}

.hk-burger {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.32rem;
}

.hk-burger span {
    display: block;
    width: 1.25rem;
    height: 1px;
    background-color: #111111;
}

/* Main + choice section */

.hk-main {
    flex: 1 1 auto;
    background-color: var(--hk-bg-section);
}

.hk-choice-section {
    padding: 2.5rem 2.75rem 3rem;
}

.hk-choice-inner {
    max-width: 1120px;
    margin: 0 auto;
}

.hk-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
}

.hk-card {
    background-color: #FFFFFF;
    border-radius: 18px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
    padding: 1.5rem 1.6rem 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hk-card-icon-wrap {
    margin-bottom: 1rem;
}

.hk-card-icon-circle {
    width: 3rem;
    height: 3rem;
    border-radius: 999px;
    background-color: var(--hk-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hk-card-icon-circle img {
    width: 70%;
    height: 70%;
    object-fit: contain;
    display: block;
}

.hk-card-body {
    margin-bottom: 1.5rem; /* nagyobb függőleges ritmus a kártyán */
}

.hk-card-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.hk-card-subtitle {
    font-size: 0.8rem;
    color: var(--hk-text-muted);
    font-weight: 300; /* light érzet */
    margin: 0;
}

.hk-card-footer {
    margin-top: auto;
}

.hk-card-button {
    border-radius: 999px;
    border: 1px solid #E0E0E0;
    background-color: #FFFFFF;
    padding: 0.4rem 1.4rem;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    cursor: pointer;
    color: #777777;
    transition: background-color 0.12s ease, border-color 0.12s ease, color 0.12s ease;
}

.hk-card-button:hover {
    background-color: #F3F3F3;
    border-color: #D4D4D4;
    color: #444444;
}

/* Responsive */

@media (max-width: 1024px) {
    .hk-header {
        padding: 0 2rem;
    }
    .hk-header-left {
        margin-right: 1.5rem;
    }
    .hk-header-center {
        margin-right: 1rem;
    }
    .hk-header-right {
        gap: 1.3rem;
    }
    .hk-choice-section {
        padding: 2rem 2rem 2.5rem;
    }
}

@media (max-width: 900px) {
    .hk-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .hk-header {
        padding: 0 1.2rem;
    }
    .hk-header-right {
        display: none;
    }
    .hk-choice-section {
        padding: 1.8rem 1.4rem 2.2rem;
    }
    .hk-card-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}


/* Highlights (kiemelt látnivalók) */

.hk-highlights-section {
    padding: 2.5rem 2.75rem 3.2rem;
    background-color: #F5F5F5;
}

.hk-highlights-inner {
    max-width: 1280px;
    margin: 0 auto;
}

.hk-highlights-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 2rem;
}


.hk-highlight-card {
    background-color: #FFFFFF;
    border-radius: 26px;
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(0,0,0,0.06);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-align: center;
}


.hk-highlight-image-wrap {
    width: 100%;
    padding-top: 60%;
    position: relative;
    overflow: hidden;
}

.hk-highlight-image-wrap img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hk-highlight-body {
    padding: 1.7rem 2rem 1.4rem;
}

.hk-highlight-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 0.9rem;
}

.hk-highlight-subtitle {
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.hk-highlight-footer {
    padding: 0 2rem 1.8rem;
}


.hk-highlight-button {
    width: 100%;
    border-radius: 999px;
    border: none;
    padding: 0.8rem 1rem;
    font-size: 0.72rem;          /* még kisebb */
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    background-color: #EFEDE5;
    color: #8C7A4B;
    transition: background-color 0.12s ease, transform 0.08s ease;
}

.hk-highlight-button:hover {
    background-color: #E0D9C4;
    transform: translateY(-1px);
}

@media (max-width: 1200px) {
    .hk-highlights-section {
        padding: 2.3rem 2rem 3rem;
    }
    .hk-highlights-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .hk-highlights-section {
        padding: 2rem 1.4rem 2.6rem;
    }
    .hk-highlights-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

/* White band behind highlights */
.hk-highlights-section {
    padding: 2.6rem 1.6rem 3.4rem;
    background-color: #F5F5F5;
}



.hk-highlights-band {
    width: 100vw;                 /* teljes kijelzőszélesség */
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;           /* teljes szélességre kifeszít */
    margin-right: -50vw;
    background-color: #FFFFFF;    /* fehér sáv */
    border-radius: 0;             /* falszélig */
    box-shadow: none;
    padding: 2.6rem 0 2.8rem;     /* tiszta, egyenletes ritmus */
}


@media (max-width: 900px) {
    

.hk-highlights-band {
    width: 100vw;                 /* teljes kijelzőszélesség */
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;           /* teljes szélességre kifeszít */
    margin-right: -50vw;
    background-color: #FFFFFF;    /* fehér sáv */
    border-radius: 0;             /* falszélig */
    box-shadow: none;
    padding: 2.6rem 0 2.8rem;     /* tiszta, egyenletes ritmus */
}

}

/* Smaller "Bővebben" text */

.hk-highlight-button {
    width: 100%;
    border-radius: 999px;
    border: none;
    padding: 0.8rem 1rem;
    font-size: 0.72rem;          /* még kisebb */
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    background-color: #EFEDE5;
    color: #8C7A4B;
    transition: background-color 0.12s ease, transform 0.08s ease;
}

/* === Tile-style highlights === */

.hk-highlights-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.2rem;
}

.hk-tile {
    position: relative;
    aspect-ratio: 1.3 / 1;
    overflow: hidden;
    border-radius: 22px;
    background-color: #000;
}

.hk-tile-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}

.hk-tile:hover img {
    transform: scale(1.05);
}

.hk-tile-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    padding: 1.4rem 1.6rem;
    background: linear-gradient(180deg, rgba(0,0,0,0) 45%, rgba(0,0,0,0.55) 100%);
}

.hk-tile-title {
    margin: 0;
    color: #FFFFFF;
    font-size: 1.05rem;
    font-weight: 300;
    letter-spacing: 0.02em;
}

@media (max-width: 1200px) {
    .hk-highlights-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
}
@media (max-width: 900px) {
    .hk-highlights-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 640px) {
    .hk-highlights-grid { grid-template-columns: minmax(0,1fr); }
}

/* === Swipeable highlight cards (coffee-style) === */

.hk-swipe-track {
    display: flex;
    gap: 1.4rem;
    overflow-x: auto;
    padding: 0.4rem 1.4rem 0.8rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.hk-swipe-card {
    flex: 0 0 260px;
    scroll-snap-align: start;
}

.hk-swipe-card-inner {
    position: relative;
    background-color: #FFFFFF;
    border-radius: 26px;
    padding: 1.4rem 1.4rem 1.6rem;
    box-shadow: 0 18px 40px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hk-swipe-image-wrap {
    width: 100%;
    height: 180px;
    border-radius: 22px;
    overflow: hidden;
    margin-bottom: 1.2rem;
    background-color: #F3F3F3;
}

.hk-swipe-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hk-swipe-text {
    width: 100%;
    text-align: left;
    margin-bottom: 1.4rem;
}

.hk-swipe-kicker {
    font-size: 0.78rem;
    font-weight: 300;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--hk-text-muted);
    margin-bottom: 0.35rem;
}

.hk-swipe-title {
    font-size: 1.2rem;
    font-weight: 600;
}

.hk-swipe-badge {
    position: absolute;
    right: 1.4rem;
    bottom: 1.4rem;
    min-width: 2.8rem;
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    background-color: var(--hk-gold);
    color: #FFFFFF;
    font-size: 0.78rem;
    font-weight: 500;
    text-align: center;
}

@media (max-width: 900px) {
    .hk-swipe-card {
        flex: 0 0 72%;
    }
}

/* === New artworks-style highlights layout === */

.hk-highlights-section {
    padding: 3rem 2.75rem 3.4rem;
    background-color: #F5F5F5;
}

.hk-highlights-inner.hk-highlights-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.4fr);
    column-gap: 3rem;
    align-items: center;
}

.hk-highlights-copy {
    max-width: 420px;
}

.hk-highlights-kicker {
    display: inline-block;
    padding: 0.25rem 0.9rem;
    border-radius: 999px;
    background-color: #ECECEC;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 0.9rem;
}

.hk-highlights-title {
    font-size: 1.9rem;
    line-height: 1.15;
    margin: 0 0 1.1rem;
}

.hk-highlights-body {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #666666;
    margin: 0;
}

.hk-highlights-slider {
    position: relative;
    width: 100%;
}

.hk-highlights-viewport {
    overflow: hidden;
    border-radius: 26px;
    background-color: #000;
}

.hk-highlights-track {
    display: flex;
    transition: transform .45s ease;
    will-change: transform;
}

.hk-highlight-slide {
    position: relative;
    height: 360px;
    flex: 0 0 auto;
}

.hk-highlight-media {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hk-highlight-media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
    transition: transform .6s ease;
}

/* Hover nagyítás eltávolítva a szétesés elkerülésére */
/* .hk-highlight-slide:hover img {
    transform: scale(1.06);
} */

.hk-highlight-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.65) 100%);
}

.hk-highlight-tag {
    position: absolute;
    left: 1.4rem;
    top: 1.4rem;
    padding: 0.26rem 0.9rem;
    border-radius: 999px;
    background-color: rgba(255,255,255,0.9);
    color: #222;
    font-size: 0.72rem;
    font-weight: 500;
}

.hk-highlight-title {
    position: absolute;
    left: 1.6rem;
    bottom: 1.4rem;
    right: 1.6rem;
    color: #FFFFFF;
    font-size: 1.4rem;
    font-weight: 500;
}

.hk-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 999px;
    border: none;
    background-color: rgba(0,0,0,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(6px);
}

.hk-slider-arrow--prev { left: -1.1rem; }
.hk-slider-arrow--next { right: -1.1rem; }

.hk-arrow-icon {
    font-size: 1.1rem;
    color: #333333;
}

/* Responsive */

@media (max-width: 1024px) {
    .hk-highlights-inner.hk-highlights-layout {
        grid-template-columns: minmax(0,1fr);
        row-gap: 2.4rem;
    }
    .hk-slider-arrow--prev { left: 0.4rem; }
    .hk-slider-arrow--next { right: 0.4rem; }
    .hk-highlight-slide {
        height: 320px;
    }
}

@media (max-width: 640px) {
    .hk-highlights-section {
        padding: 2.4rem 1.4rem 3rem;
    }
    .hk-highlight-slide {
        height: 260px;
    }
    .hk-highlights-title {
        font-size: 1.5rem;
    }
}

/* === refinements: rounded slides + arrows outside === */

.hk-highlights-viewport {
    border-radius: 26px;
    overflow: hidden;
}

.hk-highlight-media {
    border-radius: 26px;
    overflow: hidden;
    background-color: #000;
}

/* move arrows fully outside the image area */
.hk-slider-arrow--prev {
    left: -3.2rem;
}
.hk-slider-arrow--next {
    right: -3.2rem;
}

@media (max-width: 1024px) {
    .hk-slider-arrow--prev { left: -2.0rem; }
    .hk-slider-arrow--next { right: -2.0rem; }
}

@media (max-width: 640px) {
    .hk-slider-arrow--prev { left: -1.2rem; }
    .hk-slider-arrow--next { right: -1.2rem; }
}

/* === Highlights: full-width white background + dots === */

.hk-highlights-section {
    padding: 3rem 0 3.4rem;
    background-color: #FFFFFF; /* falig érő fehér háttér */
}

.hk-highlights-inner.hk-highlights-layout {
    padding: 0 2.75rem;
}

.hk-slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.1rem;
}

.hk-slider-dot {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    border: none;
    padding: 0;
    background-color: #D3D3D3;
    cursor: pointer;
}
.hk-slider-dot.is-active {
    width: 18px;
    background-color: var(--hk-gold);
}

/* === Audience (célcsoport) grid === */

.hk-audience-section {
    padding: 3.2rem 0 3.4rem;
    background-color: #F5F5F5;
}

.hk-audience-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2.75rem 0;
}

.hk-audience-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2.4rem 2.8rem;
}

.hk-audience-item {
    text-align: center;
}

.hk-audience-icon {
    margin-bottom: 1.1rem;
}

.hk-audience-icon img {
    max-width: 96px;
    height: auto;
    display: inline-block;
}

.hk-audience-title {
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0 0 0.7rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.hk-audience-text {
    margin: 0 auto;
    max-width: 270px;
    font-size: 0.9rem;
    line-height: 1.7;
    color: #555555;
}

@media (max-width: 1024px) {
    .hk-audience-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .hk-audience-inner {
        padding: 0 1.6rem 0;
    }
    .hk-audience-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

/* === FAQ section === */

.hk-faq-section {
    padding: 3.2rem 0 3.6rem;
    background-color: #FFFFFF;
}

.hk-faq-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2.75rem;
}

.hk-faq-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.4rem 2.0rem;
}

.hk-faq-item {
    background-color: #F5F5F5;
    border-radius: 18px;
    padding: 0.85rem 1.2rem;
    overflow: hidden;
}

.hk-faq-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    background: none;
    border: none;
    padding: 0.2rem 0;
    cursor: pointer;
}

.hk-faq-title {
    font-weight: 700;
    font-size: 0.98rem;
    text-align: left;
}

.hk-faq-arrow {
    font-size: 0.9rem;
    transition: transform .25s ease;
}

.hk-faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height .25s ease;
}

.hk-faq-text {
    margin: 0.4rem 0 0.3rem;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #555555;
}

.hk-faq-item.is-open .hk-faq-body {
    max-height: 200px;
}

.hk-faq-item.is-open .hk-faq-arrow {
    transform: rotate(180deg);
}

@media (max-width: 900px) {
    .hk-faq-grid {
        grid-template-columns: minmax(0, 1fr);
    }
    .hk-faq-inner {
        padding: 0 1.6rem;
    }
}

/* === FAQ heading === */
.hk-faq-intro {
    text-align: center;
    margin: 0 0 1.6rem;
}

.hk-faq-heading {
    font-size: 1.55rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: .01em;
}

/* === Footer custom text === */

.hk-footer-section {
    padding: 1.8rem 0 2.6rem;
    background-color: #FFFFFF;
}

.hk-footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2.75rem;
}

.hk-footer-separator {
    border-top: 1px solid #E2E2E2;
    margin-bottom: 0.9rem;
}

.hk-footer-text {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #666666;
    text-align: left;
}

@media (max-width: 900px) {
    .hk-footer-inner {
        padding: 0 1.6rem;
    }
}

/* === Inner pages (aloldalak) === */

.hk-root--inner {
    min-height: 100vh;
    background-color: #FFFFFF;
}

.hk-header--inner {
    padding: 1.4rem 2.75rem 1.2rem;
    border-bottom: 1px solid #EAEAEA;
}

.hk-main--inner {
    padding: 2.4rem 0 3rem;
}

.hk-page-hero {
    margin-bottom: 1.8rem;
}

.hk-page-hero-inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2.75rem;
    display: flex;
    align-items: center;
    gap: 1.4rem;
}

.hk-page-hero-icon {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background-color: #F2F2F2;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hk-page-hero-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hk-page-hero-title {
    font-size: 1.9rem;
    font-weight: 700;
    margin: 0;
    color: #111111;
}

.hk-page-content-section {
    background-color: #FFFFFF;
}

.hk-page-content-inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2.75rem;
}

.hk-page-content {
    font-size: 0.98rem;
    line-height: 1.75;
    color: #333333;
}

.hk-page-content h2,
.hk-page-content h3,
.hk-page-content h4 {
    margin-top: 1.6rem;
    margin-bottom: 0.6rem;
}

.hk-page-content p {
    margin-bottom: 1rem;
}

.hk-page-content ul,
.hk-page-content ol {
    margin: 0 0 1rem 1.2rem;
}

@media (max-width: 900px) {
    .hk-header--inner {
        padding: 1.1rem 1.4rem 1rem;
    }
    .hk-page-hero-inner,
    .hk-page-content-inner {
        padding: 0 1.4rem;
    }
    .hk-page-hero-inner {
        flex-direction: row;
        align-items: center;
        gap: 1rem;
    }
    .hk-page-hero-title {
        font-size: 1.6rem;
    }
    .hk-page-hero-icon {
        width: 72px;
        height: 72px;
    }
}

.hk-link:hover,
.hk-link:focus {
    text-decoration: none;
}

/* === Search overlay === */
.hk-search-overlay {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 60;
}

.hk-search-overlay.is-open {
    display: flex;
}

.hk-search-backdrop {
    position: absolute;
    inset: 0;
    background-color: rgba(0,0,0,0.35);
}

.hk-search-panel {
    position: relative;
    background-color: #FFFFFF;
    border-radius: 24px;
    padding: 1.6rem 2rem 2rem;
    max-width: 560px;
    width: 90%;
    box-shadow: 0 18px 45px rgba(0,0,0,0.16);
    z-index: 1;
}

.hk-search-title {
    margin: 0 0 0.9rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.hk-search-form {
    margin: 0;
}

.hk-search-input {
    width: 100%;
    border-radius: 999px;
    border: 1px solid #D3D3D3;
    padding: 0.7rem 2.4rem 0.7rem 1.1rem;
    font-size: 0.95rem;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><circle cx='11' cy='11' r='6' stroke='%23BAAB7D' stroke-width='2' fill='none'/><line x1='16' y1='16' x2='21' y2='21' stroke='%23BAAB7D' stroke-width='2' stroke-linecap='round'/></svg>");
    background-repeat: no-repeat;
    background-position: right 0.9rem center;
    background-size: 18px 18px;
}

.hk-search-close {
    position: absolute;
    top: 0.8rem;
    right: 1.1rem;
    border: none;
    background: none;
    font-size: 1.2rem;
    cursor: pointer;
}

/* === Dropdown menu panel (3 oszlop) === */
.hk-root {
    position: relative;
}

.hk-menu-overlay {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    transform: none;
    background-color: #FFFFFF;
    box-shadow: 0 18px 45px rgba(0,0,0,0.16);
    padding: 1.8rem 2.4rem 1.8rem;
    margin: 0 2.75rem;
    opacity: 0;
    transform: translateY(-6px);
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease;
    z-index: 55;
}

.hk-menu-overlay.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.hk-menu-inner {
    width: 100%;
    max-width: none;
    margin: 0;
}

.hk-menu-top {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: 0.2rem;
}

.hk-menu-title {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hk-menu-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 999px;
    border: none;
    background: transparent;
    font-size: 14px;
    line-height: 1;
    cursor: pointer;
}

@media (max-width: 900px) {
    .hk-menu-overlay {
        left: 0;
        right: 0;
        transform: none;
        margin: 0 1.4rem;
    }

    .hk-menu-inner {
        padding: 1.4rem 1.2rem 1.6rem;
    }
}


.hk-cta:hover,.hk-cta:focus{ text-decoration:none; }

.hk-menu-columns {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2.2rem;
    margin: 0.8rem 0 0.8rem;
}

.hk-menu-col {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.hk-menu-col-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.3rem;
}

.hk-menu-col-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hk-menu-col-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.hk-menu-col-title {
    font-size: 0.95rem;
    font-weight: 700;
}

.hk-menu-col-items {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.hk-menu-item {
    font-size: 0.95rem;
}

.hk-menu-item-title {
    font-weight: 500;
    margin-bottom: 0.1rem;
}

.hk-menu-item-text {
    font-size: 0.85rem;
    color: #888888;
    font-weight: 300;
}

@media (max-width: 900px) {
    .hk-menu-columns {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
}

/* === Search results === */
.hk-search-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
}

.hk-search-item {
    padding: 0.6rem 0;
    border-bottom: 1px solid #EEEEEE;
}

.hk-search-item-title {
    font-weight: 600;
    font-size: 0.98rem;
    text-decoration: none;
}

.hk-search-item-title:hover,
.hk-search-item-title:focus {
    text-decoration: underline;
}

.hk-search-item-excerpt {
    font-size: 0.9rem;
    color: #666666;
    margin-top: 0.2rem;
}

@media (max-width: 900px) {
    .hk-header {
        padding: 0 1.4rem;
    }

    .hk-header-left {
        margin-right: 1.2rem;
    }

    .hk-cta {
        padding: 0.55rem 0.75rem;
    }

    .hk-cta-label {
        display: none !important;
    }

    .hk-header-right {
        gap: 1rem;
    }

    .hk-header-right .hk-link {
        display: none !important;
    }

    .hk-header-right .hk-link--menu {
        display: inline-flex !important;
    }

    .hk-link--menu .hk-link-label {
        display: none !important;
    }
}

.hk-menu-title { display: none; }

/* Stack icon above title in dropdown menu */
.hk-menu-item { display: flex; flex-direction: column; align-items: flex-start; gap: 0.15rem; }
.hk-menu-item img, .hk-menu-item .hk-menu-item-icon { width: 34px; height: 34px; margin-bottom: 0.25rem; }

/* ---- Column header: icon above title ---- */
.hk-menu-col-header{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    gap:0.35rem;
}
.hk-menu-col-header img,
.hk-menu-col-header .hk-menu-col-icon{
    width:40px;
    height:40px;
}
/* If the icon was inline with text earlier, prevent inline spacing */
.hk-menu-col-header .hk-menu-col-title{
    display:block;
}

/* Page hero band with circular BAAB7D icon */
.hk-page-hero.hk-page-hero--band {
    background-color: #F4F4F4;
    padding: 1.8rem 0 1.8rem;
}

.hk-page-hero--band .hk-page-hero-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.9rem;
}

.hk-page-hero-icon--gold {
    background-color: #BAAB7D;
}

.hk-page-hero-icon--gold img {
    width: 74%;
    height: 74%;
    object-fit: contain;
}

/* Smaller page hero elements vs homepage */
.hk-page-hero--band .hk-page-hero-icon{
    width: 72px;
    height: 72px;
}
.hk-page-hero--band .hk-page-hero-title{
    font-size: 1.55rem;
}

.hk-page-body { background-color: #FFFFFF; }

/* Finer scale for inner page hero icon + title */
.hk-page-hero--band .hk-page-hero-icon {
    width: 60px;
    height: 60px;
}

.hk-page-hero--band .hk-page-hero-title {
    font-size: 1.35rem;
}
