/* About Page Hero Section */
.hero-section {
    min-height: 50vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: url('../img/7045d3ee-f663-4206-b8f2-94979a61cdcc-1024x682.jpg') center/cover no-repeat;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(255, 255, 255, 0.9) 20%, 
        rgba(255, 255, 255, 0.85) 50%, 
        rgba(255, 255, 255, 0.6) 70%,
        rgba(255, 255, 255, 0.3) 85%,
        rgba(255, 255, 255, 0.1) 95%,
        transparent 100%);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    text-transform: uppercase;
}

/* About Section */
.about-section {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: saturate(180%) blur(10px);
    -webkit-backdrop-filter: saturate(180%) blur(10px);
}

.section-title {
    text-transform: uppercase;
}

.about-text {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.project-image {
    border-radius: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.project-image:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* Team Section */
.team-section {
    background: rgba(245, 249, 250, 0.9);
    backdrop-filter: saturate(180%) blur(10px);
    -webkit-backdrop-filter: saturate(180%) blur(10px);
}

.team-member {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: saturate(180%) blur(15px);
    -webkit-backdrop-filter: saturate(180%) blur(15px);
    border: 0.5px solid rgba(255, 255, 255, 0.18);
    border-radius: 24px;
    padding: 0;
    height: 100%;
    transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
    text-align: center;
    box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.44) inset, 
                0 4px 20px 0 rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.team-member:hover {
    transform: translateY(-8px) scale(1.02);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.44) inset, 
                0 20px 40px 0 rgba(0, 0, 0, 0.15);
}

.team-image {
    width: 100%;
    height: 300px;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    border-radius: 24px 24px 0 0;
}

.team-content {
    padding: 2rem;
}

.team-name {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    text-transform: capitalize;
}

.team-position {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Principal Engineer Card */
.principal-card {
    grid-column: 1 / -1;
    max-width: 400px;
    margin: 0 auto;
}

/* Mobile Responsive for About Page */
@media (max-width: 768px) {
    .page-hero {
        padding: 120px 0 80px;
    }
    
    .page-hero h1 {
        font-size: 2.8rem;
        padding: 0 15px;
        line-height: 1.2;
    }
    
    .page-hero p {
        font-size: 1.1rem;
        padding: 0 15px;
    }
    
    .section-title {
        font-size: 2.2rem;
        padding: 0 15px;
    }
    
    .about-content {
        padding: 2rem 1.5rem;
        margin-bottom: 2rem;
    }
    
    .about-text {
        font-size: 1rem;
        padding: 0 10px;
    }
    
    .team-section {
        padding: 4rem 0;
    }
    
    .team-section .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .team-member {
        padding: 2rem 1.5rem;
        margin-bottom: 2rem;
    }
    
    .team-image {
        height: 250px;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 2rem 0;
    }
    
    .feature-item {
        padding: 1.2rem;
    }
    
    .project-images {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 2rem 0;
    }
}

@media (max-width: 576px) {
    .page-hero {
        padding: 100px 0 60px;
    }
    
    .page-hero h1 {
        font-size: 2.2rem;
        padding: 0 10px;
    }
    
    .page-hero p {
        font-size: 1rem;
        padding: 0 10px;
    }
    
    .section-title {
        font-size: 1.8rem;
        padding: 0 10px;
        margin-bottom: 1.5rem;
    }
    
    .about-content {
        padding: 1.5rem 1rem;
        margin-bottom: 1.5rem;
    }
    
    .about-text {
        font-size: 0.95rem;
        padding: 0 5px;
        line-height: 1.6;
    }
    
    .team-member {
        padding: 1.5rem 1rem;
        margin-bottom: 1.5rem;
    }
    
    .team-photo {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .team-name {
        font-size: 1.2rem;
    }
    
    .team-title {
        font-size: 0.9rem;
    }
    
    .team-bio {
        font-size: 0.85rem;
    }
    
    .feature-item {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
    }
    
    .feature-icon {
        margin-right: 0;
        margin-bottom: 0.5rem;
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .feature-content h4 {
        font-size: 1rem;
        margin-bottom: 0.3rem;
    }
    
    .feature-content p {
        font-size: 0.85rem;
    }
    
    .project-images {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin: 1.5rem 0;
    }
    
    .project-image img {
        height: 180px;
    }
}