/*
 * Kovaion Connect — Hero
 * Matches the approved "banner" mockup (1672 x 941 design canvas).
 * Uses container-query units (cqw) so the eyebrow/headline/pill/etc all
 * scale together as one composition — converted from the mockup's cqh
 * values (which assumed a locked aspect-ratio box) into cqw-equivalent
 * values so the section can still grow in height for the CTA buttons
 * and VIP badge without clipping.
 */

body.kconnect-page .kc-hero {
    --kc-gold: #E2B457;
    --kc-gold-light: #F6E3A1;
    --kc-gold-mid: #E9C05F;
    --kc-gold-dark: #C98F2E;
    --kc-ink: #12141A;
    --kc-red: #EB3323;
    --kc-blue: #1F6BFF;

    position: relative;
    container-type: inline-size;
    overflow: hidden;
    min-height: min(calc(100cqw * 0.41), 86vh);
    background: linear-gradient(135deg, #05070d 0%, #070b14 45%, #0a1020 100%);
    padding: 0;
    border-radius: 0;
}

/* ---------- Building photo (right side) ---------- */
body.kconnect-page .kc-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

body.kconnect-page .kc-hero__bg img {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 58.1cqw;
    object-fit: cover;
    object-position: right 35%;
}

body.kconnect-page .kc-hero__bg-fade {
    position: absolute;
    top: 0;
    right: 41cqw;
    height: 100%;
    width: 20cqw;
    background: linear-gradient(90deg, #05070d 0%, rgba(5, 7, 13, .85) 35%, rgba(5, 7, 13, 0) 100%);
    pointer-events: none;
}

body.kconnect-page .kc-hero__bg-fade-bottom {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60cqw;
    height: 6.76cqw;
    background: linear-gradient(0deg, rgba(5, 7, 13, .55), rgba(5, 7, 13, 0));
    pointer-events: none;
}

/* ---------- Content column ---------- */
/* Horizontal padding/max-width matches .kc-wrap (used by the nav logo) so
   the content edge lines up with the nav logo directly above it. */
body.kconnect-page .kc-hero__content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 2cqw 32px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

/* ---------- Eyebrow: KOVAION CONNECT 2026 ---------- */
body.kconnect-page .kc-hero .kc-eyebrow {
    display: inline-block;
    background: linear-gradient(180deg, var(--kc-gold-light) 0%, var(--kc-gold-mid) 55%, var(--kc-gold-dark) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    border: none;
    box-shadow: none;
    font-family: 'Cinzel', 'Playfair Display', serif;
    font-weight: 700;
    font-size: clamp(15px, 1.85cqw, 30px);
    letter-spacing: .12cqw;
    padding: 0;
    margin: 0;
}

body.kconnect-page .kc-hero .kc-eyebrow::before {
    content: none;
}

body.kconnect-page .kc-hero__eyebrow-rule {
    width: 28cqw;
    max-width: 100%;
    height: 2px;
    margin-top: .22cqw;
    background: linear-gradient(90deg,
        rgba(233, 192, 95, .15) 0%,
        rgba(246, 227, 161, .9) 42%,
        #fff6d8 50%,
        rgba(246, 227, 161, .9) 58%,
        rgba(233, 192, 95, .1) 100%);
    border-radius: 2px;
    box-shadow: 0 0 14px rgba(240, 205, 120, .55);
    position: relative;
}

body.kconnect-page .kc-hero__eyebrow-rule::after {
    content: '';
    position: absolute;
    left: 47%;
    top: -3px;
    width: 6%;
    height: 8px;
    background: radial-gradient(ellipse at center, rgba(255, 248, 220, .95), rgba(255, 248, 220, 0) 70%);
}

/* ---------- Headline ---------- */
body.kconnect-page .kc-hero__title {
    margin: 1.8cqw 0 0;
    font-weight: 800;
    font-size: clamp(25px, 3.3cqw, 56px);
    line-height: 1.13;
    color: #f6f7f9;
    letter-spacing: -.02cqw;
    text-shadow: 0 2px 24px rgba(0, 0, 0, .55);
}

body.kconnect-page .kc-hero__accent {
    color: var(--kc-red);
}

body.kconnect-page .kc-hero__headline-rule {
    width: 6.6cqw;
    height: 2px;
    margin-top: 1.2cqw;
    background: linear-gradient(90deg, var(--kc-gold-mid), rgba(233, 192, 95, 0));
    box-shadow: 0 0 10px rgba(233, 192, 95, .4);
}

/* ---------- Description ---------- */
body.kconnect-page .kc-hero__lead {
    margin-top: 1.35cqw;
    max-width: 45.5cqw;
    font-family: var(--body-font);
    font-size: clamp(13px, 1.08cqw, 18px);
    font-weight: 400;
    line-height: 1.52;
    color: #ccd1d9;
    text-shadow: 0 1px 0 rgba(0, 0, 0, .22);
}

/* ---------- Tagline ---------- */
body.kconnect-page .kc-hero__tagline {
    margin: .7cqw 0 0;
    font-family: var(--display);
    font-size: clamp(14px, 1.3cqw, 23px);
    font-weight: 700;
    line-height: 1.3;
}

body.kconnect-page .kc-hero__tagline .t-red {
    color: var(--kc-red);
}

body.kconnect-page .kc-hero__tagline .t-white {
    color: #ffffff;
}

body.kconnect-page .kc-hero__tagline .t-blue {
    color: var(--kc-blue);
}

/* ---------- Info pill (date / venue) ---------- */
body.kconnect-page .kc-hero__meta {
    display: inline-flex;
    align-items: stretch;
    margin-top: 1.65cqw;
    max-width: 100%;
    border: 1.5px solid rgba(226, 180, 87, .85);
    border-radius: 1.63cqw;
    background: rgba(6, 8, 14, .35);
    backdrop-filter: blur(2px);
    overflow: hidden;
}

body.kconnect-page .kc-hero__meta-item {
    flex: 0 1 auto;
    min-width: 0;
    display: flex;
    align-items: center;
    gap: .8cqw;
    padding: .75cqw 1.2cqw;
}

body.kconnect-page .kc-hero__meta-item + .kc-hero__meta-item {
    border-left: 1px solid rgba(226, 180, 87, .55);
}

body.kconnect-page .kc-hero__meta-icon {
    width: clamp(22px, 2.7cqw, 44px);
    height: clamp(22px, 2.7cqw, 44px);
    flex-shrink: 0;
}

body.kconnect-page .kc-hero__meta-text {
    display: flex;
    flex-direction: column;
    gap: 1px;
    min-width: 0;
    font-family: var(--body-font);
}

body.kconnect-page .kc-hero__meta-text b {
    font-size: clamp(10px, 1.05cqw, 18px);
    font-weight: 700;
    color: #ffffff;
    letter-spacing: .02cqw;
    line-height: 1.3;
}

body.kconnect-page .kc-hero__meta-text small {
    font-size: clamp(8px, .95cqw, 15px);
    font-weight: 400;
    color: #d6dae0;
    line-height: 1.35;
}

/* ---------- CTA buttons ---------- */
body.kconnect-page .kc-hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 11px;
    margin-top: 18px;
}

body.kconnect-page .kc-hero .kc-btn-primary {
    background: var(--cta-blue);
    color: #fff;
    box-shadow: 0 10px 26px -10px rgba(0, 82, 204, .55);
}

body.kconnect-page .kc-hero .kc-btn-primary:hover {
    background: #0041A3;
    transform: translateY(-2px);
    box-shadow: 0 16px 34px -12px rgba(0, 82, 204, .6);
}

body.kconnect-page .kc-hero .kc-btn-outline {
    background: rgba(255, 255, 255, .05);
    border-color: rgba(255, 255, 255, .22);
    color: #fff;
    backdrop-filter: blur(8px);
}

body.kconnect-page .kc-hero .kc-btn-outline:hover {
    border-color: rgba(255, 255, 255, .5);
    background: rgba(255, 255, 255, .1);
    transform: translateY(-2px);
}

/* ---------- VIP guest badge — gold theme ---------- */
body.kconnect-page .kc-hero__vip {
    margin-top: 14px;
    display: inline-flex;
    align-items: center;
    gap: 11px;
    max-width: min(47.8cqw, 560px);
    padding: 9px 15px;
    background: rgba(6, 8, 14, .5);
    border: 1.5px solid rgba(226, 180, 87, .6);
    border-radius: 12px;
    backdrop-filter: blur(6px);
    text-shadow: 0 1px 0 rgba(0, 0, 0, .22);
}

body.kconnect-page .kc-hero__vip-icon {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
}

body.kconnect-page .kc-hero__vip-text {
    min-width: 0;
}

body.kconnect-page .kc-hero__vip-text strong {
    display: block;
    font-size: 12px;
    color: var(--kc-gold-light);
    letter-spacing: .02em;
}

body.kconnect-page .kc-hero__vip-text span {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin-top: 2px;
}

@media (max-width: 960px) {
    body.kconnect-page .kc-hero__bg img {
        width: 100%;
        opacity: .55;
    }

    body.kconnect-page .kc-hero__bg-fade {
        right: 0;
        width: 100%;
        background: linear-gradient(90deg, #05070d 0%, rgba(5, 7, 13, .78) 55%, rgba(5, 7, 13, .4) 100%);
    }

    body.kconnect-page .kc-hero__content {
        padding: 32px 30px 26px;
    }

    body.kconnect-page .kc-hero__lead {
        max-width: 100%;
    }

    body.kconnect-page .kc-hero__meta {
        display: flex;
        width: 100%;
    }

    body.kconnect-page .kc-hero__meta-item {
        flex: 1;
    }
}

@media (max-width: 560px) {
    body.kconnect-page .kc-hero__content {
        padding: 26px 19px 22px;
    }

    body.kconnect-page .kc-hero__cta {
        margin-top: 16px;
        gap: 9px;
    }

    body.kconnect-page .kc-hero__cta .kc-btn {
        flex: 1 1 100%;
        text-align: center;
    }

    body.kconnect-page .kc-hero__vip {
        max-width: 100%;
        margin-top: 11px;
        padding: 8px 11px;
    }
}
