:root {
    --brand-teal: #215a5d;
    --brand-gold: #eebb5d; /* Secondary Highlight Color */
    --text-white: #ffffff;
}

/* 1. CONTAINER: FLEX ROW */
.diagonal-hero {
    display: flex;
    width: 100%;
    height: 85vh;
    min-height: 600px;
    position: relative;
    overflow: hidden;
    background-color: var(--brand-teal); /* Fallback */
}

/* 2. LEFT COLUMN (Image + Tint) */
.hero-left-col {
    width: 60%; /* Occupy 60% of width */
    position: relative;
    background-size: cover;
    background-position: center;
}

/* The "Light Touch" Overlay */
.tint-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* 60% Opacity Teal - Transparent but visible */
    background: rgba(33, 90, 93, 0.6); 
    display: flex;
    align-items: center;
    padding-left: 8%; /* Spacing from left edge */
}

/* 3. TYPOGRAPHY & CONTENT */
.content-box {
    max-width: 600px;
    position: relative;
    z-index: 10;
}

.hero-title {
    font-size: 4.2rem;
    font-weight: 800;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
    text-transform: capitalize;
}

/* The Second Color (Last Word) */
.hero-title .highlight-text {
    color: var(--brand-gold);
    position: relative;
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    font-weight: 400;
    line-height: 1.6;
    border-left: 3px solid var(--brand-gold);
    padding-left: 20px;
}

/* BUTTON */
.btn-solid {
    background-color: #ffffff;
    color: var(--brand-teal);
    padding: 18px 40px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    border-radius: 2px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.btn-solid:hover {
    background-color: var(--brand-gold);
    color: #ffffff;
    transform: translateY(-3px);
}

/* 4. RIGHT COLUMN (Solid + Diagonal Slash) */
.hero-right-col {
    width: 50%; /* Overlap logic */
    margin-left: -10%; /* Pull it left to create overlap area */
    background-color: var(--brand-teal);
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    
    /* THE DIAGONAL SLASH ( / ) SHAPE */
    /* This cuts the left edge diagonally */
    clip-path: polygon(15vh 0, 100% 0, 100% 100%, 0% 100%);
    
    z-index: 5; /* Sits on top of the image */
}

.video-box {
    width: 80%;
    max-width: 600px;
    padding-left: 5vh; /* Push video slightly right so it's not near the cut */
}

.video-box video {
    width: 100%;
    height: auto;
    display: block;
    /* Clean flat video */
}

/* MOBILE */

@media (max-width: 992px) {
    .diagonal-hero {
        flex-direction: column;
        height: auto; /* Allow content to dictate height */
        min-height: auto;
    }

    .hero-left-col {
        width: 100%;
        height: auto; /* No fixed height */
        min-height: 500px; /* Minimum space for text */
        background-position: center top;
    }

    .tint-overlay {
        padding: 120px 20px 60px 20px; /* Top padding clears the Fixed Header */
        align-items: center;
        justify-content: center;
        text-align: center;
        background: rgba(33, 90, 93, 0.75); /* Darker tint for mobile readability */
    }

    .content-box {
        max-width: 100%;
    }

    .hero-title {
        font-size: 2.8rem; /* Smaller font for mobile */
        line-height: 1.2;
    }

    .hero-subtitle {
        border-left: none; /* Remove border on mobile */
        padding-left: 0;
        margin-bottom: 30px;
        font-size: 1rem;
    }

    .hero-right-col {
        width: 100%;
        margin-left: 0;
        clip-path: none; /* Remove slash */
        padding: 0;
        height: auto;
    }

    .diagonal-shape { display: none; }

    .video-box {
        width: 100%;
        max-width: 100%;
        padding: 0;
    }
}