/* ============================================
   OUR FOUNDER PAGE STYLES
   ============================================ */

/* About Kriger Construction Hero */
.founder-about-hero-section {
    position: relative;
    height: 450px;
    width: 100%;
    overflow: hidden;
}

.founder-about-hero-section .hero-overlay {
    background-color: rgba(0, 0, 0, 0.45);
}

.founder-about-hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    text-align: center;
    margin-top: 40px;
}

.founder-about-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 4.25rem);
    font-weight: 800;
    color: var(--text-white);
    text-transform: uppercase;
    margin-bottom: 0;
    line-height: 1.2;
}

/* Founder Hero Section (slim subheading band — matches homepage Awards/News) */
.founder-hero-section {
    position: relative;
    height: 108px;
    width: 100%;
    overflow: hidden;
}

.founder-hero-section .container-fluid {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
}

.founder-hero-title {
    color: var(--text-white);
    padding-left: 3.8125rem;
    margin: 0;
}

/* Grey Line */
.founder-grey-line {
    background-color: #231F20;
    height: 50px;
}

/* Thin Blue Line (accent divider) */
.founder-blue-line {
    background-color: var(--main-color);
    height: 4px;
}

/* ============================================
   FOUNDER STORY SECTION
   ============================================ */
.founder-story-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(to top, var(--dark-bg), #5a5a5a);
}

.founder-story-content {
    position: relative;
    z-index: 2;
    padding: 120px 0;
}

.founder-story-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 5rem;
    align-items: start;
}

/* Founder Portrait Section */
.founder-portrait-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.founder-portrait-container {
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
}

.founder-portrait {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    object-fit: cover;
}

/* Founder Name Block */
.founder-name-block {
    text-align: center;
}

.founder-name {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-white);
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.founder-name-divider {
    width: 80px;
    height: 3px;
    background-color: var(--main-color);
    margin: 0 auto 1.5rem auto;
}

.founder-tagline {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--main-color);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

/* Founder Bio */
.founder-bio {
    padding-top: 0.5rem;
}

.founder-bio-text {
    font-family: var(--font-body);
    font-size: 1.1875rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.founder-bio-text:last-child {
    margin-bottom: 0;
}

/* ============================================
   COMPANY HISTORY SECTION
   ============================================ */
.company-history-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(to top, var(--dark-bg), #5a5a5a);
}

.company-history-content {
    position: relative;
    z-index: 2;
    padding: 100px 0;
}

.company-history-text {
    font-family: var(--font-body);
    font-size: 1.1875rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin: 0 auto 2rem;
    max-width: 900px;
}

.company-history-text:last-child {
    margin-bottom: 0;
}

/* Decorative Lines */
.founder-decorative-line-left {
    position: absolute;
    top: 60px;
    left: 100px;
    width: 2px;
    height: calc(100% - 120px);
    background-color: rgba(255, 255, 255, 0.15);
    z-index: 1;
}

.founder-decorative-line-right {
    position: absolute;
    top: 60px;
    right: 100px;
    width: 2px;
    height: calc(100% - 120px);
    background-color: rgba(255, 255, 255, 0.15);
    z-index: 1;
}

.founder-decorative-line-bottom {
    position: absolute;
    bottom: 60px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.1);
    z-index: 1;
}

/* Final CTA Override */
.founder-final-cta .final-cta-content {
    min-height: 450px;
}

/* ============================================
   RESPONSIVE - FOUNDER PAGE
   ============================================ */
@media (max-width: 991px) {
    .founder-about-hero-section {
        height: 380px;
    }

    .founder-hero-title {
        font-size: 3rem;
        padding-left: 2rem;
    }

    .founder-story-content,
    .company-history-content {
        padding: 80px 2rem;
    }

    .founder-story-layout {
        grid-template-columns: 1fr;
        gap: 80px;
    }

    .founder-portrait-section {
        align-items: center;
    }

    .founder-name-block {
        text-align: center;
    }

    .founder-tagline {
        margin-bottom: 0;
    }

    .founder-bio {
        padding-top: 0;
    }

    .founder-name-divider {
        margin-left: auto;
        margin-right: auto;
    }

    .founder-bio-text {
        text-align: center;
    }

    .founder-decorative-line-left,
    .founder-decorative-line-right {
        display: none;
    }
}

@media (max-width: 767px) {
    .founder-about-hero-section {
        height: 350px;
    }

    .founder-about-hero-title {
        font-size: 2.25rem;
    }

    .founder-hero-title {
        font-size: 2.25rem;
        padding-left: 1rem;
    }

    .founder-story-content,
    .company-history-content {
        padding: 60px 1.5rem;
    }

    .founder-story-layout {
        gap: 60px;
    }

    .founder-name {
        font-size: 2.5rem;
    }

    .founder-tagline {
        font-size: 1rem;
    }

    .founder-bio-text,
    .company-history-text {
        font-size: 1.0625rem;
        line-height: 1.7;
    }
}

@media (max-width: 575px) {
    .founder-about-hero-section {
        height: auto;
        min-height: 250px;
        padding: 150px 0 40px 0;
    }

    .founder-about-hero-content {
        margin-top: 0;
        padding: 0 2rem;
    }

    .founder-about-hero-title {
        margin-top: 0;
        margin-bottom: 0;
    }

    .founder-story-content,
    .company-history-content {
        padding: 40px 1rem;
    }

    .founder-story-layout {
        gap: 40px;
    }

    .founder-name {
        font-size: 2rem;
    }

    .founder-tagline {
        font-size: 0.875rem;
        letter-spacing: 0.1em;
    }

    .founder-bio-text {
        font-size: 1rem;
    }
}
