/* --- PAGE WRAPPER --- */
.founder-page-wrapper {
    background: #0f001a; /* Deep Veliy Background */
    color: #e0e0e0;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* --- NEON ATMOSPHERE --- */
.f-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.25;
    z-index: 1;
    pointer-events: none;
}
.fo-1 { width: 600px; height: 600px; background: #bf00ff; top: 10%; right: -10%; }
.fo-2 { width: 500px; height: 500px; background: #2c0b4a; bottom: 20%; left: -10%; }

/* --- HERO SECTION --- */
.founder-hero {
    position: relative;
    height: 60vh;
    min-height: 500px;
    /* Hero Image */
    background: url('../img/team/molham_alcharabati-wide.jpg') no-repeat center center/cover;
    display: flex;
    align-items: flex-end;
    z-index: 2;
}

/* Gradient Overlay for smooth transition */
.founder-hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(15, 0, 26, 0.1) 0%, rgba(15, 0, 26, 1) 95%);
}

.founder-name-title {
    font-size: 5rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -2px;
    margin-bottom: 15px;
    
    /* Gradient Text */
    background: linear-gradient(135deg, #ffffff 0%, #e0b0ff 50%, #bf00ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 25px rgba(191, 0, 255, 0.4));
}

/* --- FLOAT WRAP (Glass Portrait) --- */
.founder-portrait-wrap {
    float: right;
    width: 380px;
    margin: 15px 0 30px 50px;
    position: relative;
    z-index: 10;
}

.portrait-glass {
    /* Frosted Glass Frame */
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 15px;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    transform: rotate(2deg); /* Artistic Tilt */
    transition: 0.3s;
}

.portrait-glass:hover {
    transform: rotate(0deg) scale(1.02);
    border-color: rgba(191, 0, 255, 0.4);
}

.portrait-glass img {
    border-radius: 8px;
    filter: contrast(1.1);
}

/* --- TEXT CONTENT --- */
.story-text {
    font-size: 1.15rem;
    line-height: 1.9;
    color: rgba(255,255,255,0.8);
    font-weight: 300;
    text-align: justify;
    position: relative;
    z-index: 5;
}

.story-text p { margin-bottom: 28px; }

.story-highlight {
    background: rgba(191, 0, 255, 0.05);
    border-left: 4px solid #bf00ff;
    padding: 40px;
    border-radius: 0 20px 20px 0;
    font-size: 1.4rem;
    font-family: serif;
    font-style: italic;
    color: white;
    margin: 60px 0;
    line-height: 1.5;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* MOBILE RESPONSIVE */
@media (max-width: 991px) {
    .founder-portrait-wrap {
        float: none;
        width: 100%;
        margin: 0 0 40px 0;
    }
    .portrait-glass { transform: rotate(0deg); }
    .founder-name-title { font-size: 3rem; }
}