/* ==========================================================================
   Page-Specific Styles: About KBT
   Scope: body.page-about-kbt
   Identity: Artistic Showcase / Contemporary Gallery
   ========================================================================== */

body.page-about-kbt {
    --page-accent: #0088cb;
    /* KBT Blue */
    --page-bg-dark: #0a1628;
    --page-text-dark: #2c3e50;
    --page-border: rgba(0, 136, 203, 0.15);
}

/* 1. Hero Banner overrides */
body.page-about-kbt .akbt-hero-section {
    background: linear-gradient(135deg, #0a1628 0%, #001a33 100%);
    padding: 90px 0;
    border-bottom: 2px solid var(--page-accent);
}

body.page-about-kbt .akbt-hero-title {
    font-family: 'Jost', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

body.page-about-kbt .akbt-hero-subtitle {
    font-size: 1.1rem;
    color: var(--page-accent);
    font-family: 'Georgia', serif;
    font-style: italic;
    letter-spacing: 1px;
}

body.page-about-kbt .akbt-breadcrumbs ul {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
    display: flex;
    justify-content: center;
    gap: 8px;
}

body.page-about-kbt .akbt-breadcrumbs li {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

body.page-about-kbt .akbt-breadcrumbs li+li::before {
    content: '/';
    margin-right: 8px;
    color: rgba(255, 255, 255, 0.3);
}

body.page-about-kbt .akbt-breadcrumbs a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

body.page-about-kbt .akbt-breadcrumbs a:hover {
    color: var(--page-accent);
}

/* 2. Main content area */
body.page-about-kbt .akbt-content-section {
    padding: 100px 0;
    background-color: #FAF9F6;
}

body.page-about-kbt .akbt-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

/* Image gallery/frames */
body.page-about-kbt .akbt-image-gallery {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

body.page-about-kbt .akbt-image-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
}

body.page-about-kbt .akbt-image-card:nth-child(even) {
    transform: translateX(20px);
}

body.page-about-kbt .akbt-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

body.page-about-kbt .akbt-image-card:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 136, 203, 0.15);
}

body.page-about-kbt .akbt-image-card:nth-child(even):hover {
    transform: translate(20px, -8px);
}

body.page-about-kbt .akbt-image-card:hover .akbt-img {
    transform: scale(1.04);
}

/* Text block */
body.page-about-kbt .akbt-text-block {
    padding-left: 20px;
}

body.page-about-kbt .akbt-pullquote {
    border-left: 4px solid var(--page-accent);
    background-color: #ffffff;
    padding: 25px 30px;
    border-radius: 0 8px 8px 0;
    margin-bottom: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
}

body.page-about-kbt .akbt-pullquote p {
    font-family: 'Georgia', serif;
    font-size: 18px;
    line-height: 1.6;
    color: #444;
    font-style: italic;
    margin: 0;
    font-weight: 600;
}

body.page-about-kbt .akbt-paragraphs {
    font-size: 16px;
    line-height: 1.85;
    color: var(--page-text-dark);
}

body.page-about-kbt .akbt-paragraph {
    margin-bottom: 22px;
}

body.page-about-kbt .akbt-paragraph:last-child {
    margin-bottom: 0;
}

/* 3. Microtonal Featured Installation Section */
body.page-about-kbt .akbt-video-section {
    background-color: #0a1628;
    padding: 100px 0;
    color: #ffffff;
    border-top: 1px solid #1a3050;
}

body.page-about-kbt .akbt-video-card {
    max-width: 900px;
    margin: 0 auto;
    background-color: #0a1628;
    border: 1px solid #1a3050;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

body.page-about-kbt .akbt-video-card:hover {
    border-color: var(--page-accent);
    box-shadow: 0 25px 60px rgba(0, 136, 203, 0.15);
}

body.page-about-kbt .akbt-badge {
    background-color: var(--page-accent);
    color: #121212;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 1.5px;
    padding: 5px 12px;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 15px;
}

body.page-about-kbt .akbt-video-title {
    font-family: 'Jost', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

body.page-about-kbt .akbt-title-divider {
    width: 60px;
    height: 3px;
    background-color: var(--page-accent);
    margin: 0 auto 35px;
    border-radius: 2px;
}

/* Video Wrapper (16:9 ratio) */
body.page-about-kbt .akbt-video-wrapper {
    position: relative;
    padding-top: 56.25%;
    /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    background-color: #000;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.8);
    margin-bottom: 30px;
}

body.page-about-kbt .akbt-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Video desc & captions */
body.page-about-kbt .akbt-video-desc {
    padding: 0 20px;
}

body.page-about-kbt .akbt-video-p {
    font-size: 15px;
    line-height: 1.7;
    color: #cccccc;
    margin-bottom: 12px;
}

body.page-about-kbt .akbt-video-p strong {
    color: #ffffff;
}

body.page-about-kbt .akbt-video-caption {
    font-size: 13px;
    font-style: italic;
    color: #777777;
    margin-top: 15px;
}

/* Responsive tweaks */
@media (max-width: 991px) {
    body.page-about-kbt .akbt-content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    body.page-about-kbt .akbt-text-block {
        padding-left: 0;
    }

    body.page-about-kbt .akbt-image-card:nth-child(even) {
        transform: none;
    }

    body.page-about-kbt .akbt-image-card:nth-child(even):hover {
        transform: scale(1.02);
    }
}

@media (max-width: 575px) {
    body.page-about-kbt .akbt-video-card {
        padding: 20px;
    }

    body.page-about-kbt .akbt-video-title {
        font-size: 24px;
    }
}