/* About Page Styles */
.about-main {
    padding-top: 80px;
    min-height: 100vh;
}

.about-hero {
    padding: 4rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
}

.page-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
    animation: fadeIn 0.8s ease;
}

.page-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    animation: fadeIn 1s ease;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Founders Section */
.founders-section {
    padding: 4rem 2rem;
}

.founders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.founder-card {
    text-align: center;
    padding: 2rem;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.founder-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.founder-image {
    width: 150px;
    height: 150px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.founder-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bruce-image {
    border: 3px solid rgba(59, 130, 246, 0.5);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.2);
}

.bruce-image:hover {
    border-color: rgba(59, 130, 246, 0.8);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.3);
    transform: translateY(-5px);
}

.tom-image {
    border: 3px solid rgba(16, 185, 129, 0.5);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.2);
}

.tom-image:hover {
    border-color: rgba(16, 185, 129, 0.8);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.3);
    transform: translateY(-5px);
}

.founder-card h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.founder-role {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.founder-bio {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Values Section */
.values-section {
    padding: 4rem 2rem;
    background: radial-gradient(ellipse at center, var(--light-bg) 0%, var(--dark-bg) 100%);
}

.mission-statement {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid var(--border-color);
}

.mission-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mission-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-item {
    text-align: center;
    padding: 2rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: inline-block;
    animation: float 3s ease-in-out infinite;
}

.value-item:nth-child(2) .value-icon {
    animation-delay: 0.5s;
}

.value-item:nth-child(3) .value-icon {
    animation-delay: 1s;
}

.value-item:nth-child(4) .value-icon {
    animation-delay: 1.5s;
}

.value-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.value-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}