@charset "UTF-8";
/* ═══════════════════════════════════════════════════════
   Longform KD – Element Styles
   ═══════════════════════════════════════════════════════ */

/* ── Tribute Hero ────────────────────────────────────── */
.lkd-tribute {
    position: relative;
    width: 100%;
    min-height: 90vh;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

@supports (-webkit-overflow-scrolling: touch) {
    .lkd-tribute {
        background-attachment: scroll;
    }
}

.lkd-tribute__link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.lkd-tribute__inner {
    text-align: center;
    padding: 40px 20px;
    max-width: 900px;
}

.lkd-tribute__logo img {
    max-height: 80px;
    width: auto;
    margin-bottom: 20px;
}

.lkd-tribute__title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 15px;
}

.lkd-tribute__desc {
    font-size: 1.125rem;
    line-height: 1.6;
}

@media (max-width: 767px) {
    .lkd-tribute {
        min-height: 70vh;
    }
    .lkd-tribute__title {
        font-size: 1.75rem;
    }
}

/* ── About Card ──────────────────────────────────────── */
.lkd-about-card {
    text-align: center;
    padding: 30px 20px;
}

.lkd-about-card a {
    color: inherit;
    text-decoration: none;
}

.lkd-about-card__logo img {
    max-width: 100%;
    height: auto;
    margin-bottom: 15px;
}

.lkd-about-card__title {
    margin: 0 0 10px;
    font-size: 1.25rem;
    font-weight: 600;
}

.lkd-about-card__desc {
    font-size: 0.95rem;
    line-height: 1.5;
}

/* ── Counter ─────────────────────────────────────────── */
.lkd-counter {
    text-align: center;
    padding: 30px 20px;
}

.lkd-counter a {
    color: inherit;
    text-decoration: none;
}

.lkd-counter__number {
    margin-bottom: 10px;
}

.lkd-counter__glitch {
    display: inline-block;
    background: #fff;
    font-size: 34px;
    padding: 0.2em;
    color: #000;
    line-height: 1;
    text-shadow: 0.1rem 0 0.1rem #3228cb, -0.125rem 0 0.1rem #21a3d5;
    letter-spacing: 0.125em;
    animation-duration: 0.6s;
    animation-name: lkd-textflicker;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}

.lkd-counter--eco .lkd-counter__glitch {
    background: transparent;
    color: #fff;
    text-shadow: 0.1rem 0 0.1rem #02c14f, -0.125rem 0 0.1rem #017439;
    animation-name: lkd-textflicker-eco;
}

.lkd-counter--eco .lkd-counter__number {
    background: #000;
    border: none;
}

@keyframes lkd-textflicker {
    0%   { text-shadow: 1px 0 0 #3228cb, -2px 0 0 #21a3d5; }
    5%   { text-shadow: 2px 2px 2px #3228cb, -1px -1px 2px #21a3d5; }
    10%  { text-shadow: 1px 0 0 #3228cb, -2px 0 0 #21a3d5; }
    15%  { text-shadow: 2px 2px 2px #3228cb, -1px -1px 2px #21a3d5; }
    20%  { text-shadow: 4px 0 0 #3228cb, -4px 0 0 #21a3d5; }
    40%  { text-shadow: 2px 2px 2px #3228cb, -1px -1px 2px #21a3d5; }
    100% { text-shadow: 2px 2px 2px #3228cb, -1px -1px 2px #21a3d5; }
}

@keyframes lkd-textflicker-eco {
    0%   { text-shadow: 1px 0 0 #02c14f, -2px 0 0 #017439; }
    5%   { text-shadow: 2px 2px 2px #02c14f, -1px -1px 2px #017439; }
    10%  { text-shadow: 1px 0 0 #02c14f, -2px 0 0 #017439; }
    15%  { text-shadow: 2px 2px 2px #02c14f, -1px -1px 2px #017439; }
    20%  { text-shadow: 4px 0 0 #02c14f, -4px 0 0 #017439; }
    40%  { text-shadow: 2px 2px 2px #02c14f, -1px -1px 2px #017439; }
    100% { text-shadow: 2px 2px 2px #02c14f, -1px -1px 2px #017439; }
}

.lkd-counter__title {
    margin: 0 0 8px;
    font-size: 1.25rem;
    font-weight: 600;
}

.lkd-counter__desc {
    font-size: 0.95rem;
    line-height: 1.5;
}

/* ── About Box (image hover) ─────────────────────────── */
.lkd-about-box {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.lkd-about-box__img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.lkd-about-box__media {
    width: 100%;
}
.lkd-about-box__media iframe,
.lkd-about-box__media video {
    width: 100%;
    display: block;
}

.lkd-about-box__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(80, 80, 80, 0.8);
    color: #f1f1f1;
    font-size: 20px;
    padding: 20px;
    text-align: center;
    height: 100%;
    box-sizing: border-box;
    transition: 0.5s ease;
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lkd-about-box:hover .lkd-about-box__overlay {
    opacity: 1;
}

.lkd-about-box__underline {
    transition: 0.5s ease;
    width: 0;
    display: block;
}

.lkd-about-box:hover .lkd-about-box__underline {
    background-color: #fff;
    height: 5px;
    width: 60px;
    position: absolute;
    bottom: 10px;
    left: calc(50% - 30px);
}

.lkd-about-box a {
    color: inherit;
    text-decoration: none;
}

/* ── Parallax (shared) ───────────────────────────────── */
.jarallax {
    position: relative;
    z-index: 0;
    margin: 0 !important;
}

.jarallax > .jarallax-img {
    position: absolute;
    object-fit: cover;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

/* ── Simple Parallax ─────────────────────────────────── */
.lkd-parallax {
    height: 100vh;
}

.lkd-parallax__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: var(--lkd-overlay-color, rgba(0,0,0,0.45));
}

.lkd-parallax__content {
    position: relative;
    z-index: 2;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    padding: 25px;
}

.lkd-parallax__text {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    max-width: 900px;
}

/* alignment: center (default) */
.lkd-parallax.pcenter .lkd-parallax__content {
    justify-content: center;
    text-align: center;
}

/* alignment: left */
.lkd-parallax.pleft .lkd-parallax__overlay {
    background: linear-gradient(to right, var(--lkd-overlay-color, rgba(0,0,0,0.45)) 30%, transparent 60%);
}

.lkd-parallax.pleft .lkd-parallax__content {
    justify-content: flex-start;
    text-align: left;
}

.lkd-parallax.pleft .lkd-parallax__text {
    text-align: left;
}

/* alignment: right */
.lkd-parallax.pright .lkd-parallax__overlay {
    background: linear-gradient(to left, var(--lkd-overlay-color, rgba(0,0,0,0.45)) 30%, transparent 60%);
}

.lkd-parallax.pright .lkd-parallax__content {
    justify-content: flex-end;
    text-align: right;
}

.lkd-parallax.pright .lkd-parallax__text {
    text-align: right;
}

/* ── Parallax Video ──────────────────────────────────── */
.lkd-parallax-video {
    height: 1000px;
}

@media (max-width: 599px) {
    .lkd-parallax-video {
        height: 1200px;
    }
}

.lkd-parallax-video__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: var(--lkd-overlay-color, rgba(0,0,0,0.45));
}

.lkd-parallax-video__content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    padding: 25px;
    min-height: 100%;
}

.lkd-parallax-video__box {
    max-width: 900px;
}

/* alignment modifiers */
.lkd-parallax-video.ptitle .lkd-parallax-video__content {
    text-align: center;
}

.lkd-parallax-video.pcenter .lkd-parallax-video__content {
    justify-content: center;
    text-align: center;
}

.lkd-parallax-video.pleft .lkd-parallax-video__overlay {
    background: linear-gradient(to right, var(--lkd-overlay-color, rgba(0,0,0,0.45)) 30%, transparent 60%);
}

.lkd-parallax-video.pleft .lkd-parallax-video__content {
    justify-content: flex-start;
    text-align: left;
}

.lkd-parallax-video.pright .lkd-parallax-video__overlay {
    background: linear-gradient(to left, var(--lkd-overlay-color, rgba(0,0,0,0.45)) 30%, transparent 60%);
}

.lkd-parallax-video.pright .lkd-parallax-video__content {
    justify-content: flex-end;
    text-align: right;
}

/* ── Archive / Afieromata listing ────────────────────── */
.lkd-archive-afieromata {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

.lkd-archive-afieromata__item {
    margin-bottom: 2px;
}

.lkd-archive-afieromata__item:first-child {
    padding-top: 10px;
}

.lkd-archive-afieromata__item .vc_column_container > .vc_column-inner {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.lkd-archive-afieromata__link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.lkd-archive-afieromata__fallback {
    padding: 40px 20px;
    text-align: center;
    background: #f5f5f5;
}

.lkd-archive-afieromata__fallback .lkd-archive-afieromata__thumb img {
    max-width: 100%;
    height: auto;
}

.lkd-archive-afieromata__fallback .lkd-archive-afieromata__title {
    font-size: 1.5rem;
    margin-top: 15px;
}

.lkd-archive-afieromata__fallback .lkd-archive-afieromata__title a {
    color: inherit;
    text-decoration: none;
}

.lkd-archive-afieromata__fallback .lkd-archive-afieromata__title a:hover {
    text-decoration: underline;
}

.lkd-archive-afieromata__pagination {
    padding: 30px 20px;
    text-align: center;
}

.lkd-archive-afieromata__pagination ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
}

.lkd-archive-afieromata__pagination li {
    display: inline-block;
}

.lkd-archive-afieromata__pagination a,
.lkd-archive-afieromata__pagination span {
    display: inline-block;
    padding: 8px 14px;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-decoration: none;
    color: #333;
    font-size: 0.95rem;
    transition: background-color 0.2s, color 0.2s;
}

.lkd-archive-afieromata__pagination a:hover {
    background-color: #333;
    color: #fff;
    border-color: #333;
}

.lkd-archive-afieromata__pagination .current {
    background-color: #222;
    color: #fff;
    border-color: #222;
}

.lkd-archive-afieromata__empty {
    padding: 60px 20px;
    text-align: center;
    font-size: 1.1rem;
    color: #666;
}
