/* ═══════════════════════════════════════════════════
   MITSUBISHI PROJECT PAGE — STYLESHEET
   Font: Be Vietnam Pro
   Brand theme: Mitsubishi Red & Steel/Dark Industrial
   ════════════════════════════════════════════════════ */

/* Hero Text Color overrides */
.mitsubishi-page .dlf-hero__info * {
    color: #fff !important;
}

.mitsubishi-page .dlf-hero {
    min-height: 100vh;
}

/* Background video container */
.mitsubishi-page .dlf-hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: #000;
}

/* Background YouTube video */
.mitsubishi-page .hl-hero__bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100vw;
    height: 56.25vw; /* 16:9 ratio (100 * 9 / 16) */
    min-height: 100vh;
    min-width: 177.77vh; /* 16:9 ratio (100 * 16 / 9) */
    pointer-events: none;
    z-index: 0;
}

/* Overlay to darken background video for text readability */
.mitsubishi-page .hl-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

.mitsubishi-page .dlf-hero__inner {
    z-index: 2;
    position: relative;
}

/* ═══════════════════════════════════════════════════
   FULL WIDTH PORTFOLIO IMAGES
   Each image spans exactly 100% of the screen width
   ════════════════════════════════════════════════════ */
.mhi-full-img {
    width: 100%;
    margin: 0;
    padding: 0;
    display: block;
    line-height: 0;
    background-color: #fff;
    overflow: hidden;
}

.mhi-full-img img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0;
    padding: 0;
    border: none;
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE DESIGN (TABLET & MOBILE)
   ════════════════════════════════════════════════════ */
@media (max-width: 768px) {
    .mitsubishi-page .dlf-hero {
        height: auto;
        min-height: auto;
        display: flex;
        flex-direction: column;
        background-color: #002234;
    }

    .mitsubishi-page .dlf-hero__bg {
        position: relative;
        width: 100%;
        height: auto;
        aspect-ratio: 16/9;
        overflow: hidden;
    }

    .mitsubishi-page .hl-hero__bg-video {
        position: absolute;
        top: 0;
        left: 0;
        transform: none;
        width: 100%;
        height: 100%;
        min-height: auto;
        min-width: auto;
        aspect-ratio: 16/9;
    }

    .mitsubishi-page .hl-hero__overlay {
        display: none;
    }

    .mitsubishi-page .dlf-hero__inner {
        position: relative;
        background-color: #002234;
        padding: 40px 20px;
    }
}
