/* About Page Specific Styles */

/* About Hero */
.about-hero {
    padding: 10rem 0 4rem;
    text-align: center;
    background: radial-gradient(circle at 30% 30%, rgba(124, 77, 255, 0.2), transparent 50%),
                radial-gradient(circle at 70% 70%, rgba(0, 229, 255, 0.2), transparent 50%);
}

.about-hero h1 {
    font-size: 3rem;
    margin-bottom: var(--space-sm);
}

.about-hero p {
    max-width: 700px;
    margin: 0 auto;
    color: var(--text-secondary-dark);
    font-size: 1.2rem;
}

/* About Content */
.about-content {
    padding: var(--space-xl) 0;
}

.about-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.about-text {
    flex: 1;
    min-width: 300px;
    padding: var(--space-lg);
}

.about-text h2 {
    font-size: 2.2rem;
    margin-bottom: var(--space-md);
}

.about-text p {
    margin-bottom: var(--space-md);
    line-height: 1.7;
}

.about-image {
    flex: 1;
    min-width: 300px;
}

.about-image img {
    width: 100%;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 4px solid rgba(255, 255, 255, 0.05);
    transition: all 0.5s ease;
}

.about-image img:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

/* About Features */
.about-features {
    margin-bottom: var(--space-xl);
}

.about-features h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: var(--space-xl);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-lg);
}

.feature-item {
    padding: var(--space-lg);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto var(--space-md);
    background: linear-gradient(45deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon i {
    font-size: 1.8rem;
    color: white;
}

.feature-item h3 {
    margin-bottom: var(--space-sm);
    font-size: 1.3rem;
}

.feature-item p {
    color: var(--text-secondary-dark);
    font-size: 0.95rem;
}

/* Team Section */
.about-team {
    margin-bottom: var(--space-xl);
}

.about-team h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: var(--space-xl);
}

.team-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--space-lg);
    padding: var(--space-lg);
}

.team-image {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
}

.team-image img {
    width: 100%;
    border-radius: 50%;
    border: 4px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.team-image img:hover {
    transform: scale(1.05);
    border-color: var(--secondary-color);
}

.team-info {
    flex: 2;
    min-width: 300px;
}

.team-info h3 {
    font-size: 1.8rem;
    margin-bottom: var(--space-md);
    color: var(--secondary-color);
}

.team-info p {
    margin-bottom: var(--space-md);
    line-height: 1.7;
}

.social-links {
    display: flex;
    gap: var(--space-sm);
    margin-top: var(--space-md);
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--text-primary-dark);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .about-grid {
        flex-direction: column-reverse;
    }
    
    .about-text {
        width: 100%;
    }
    
    .about-image {
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2.5rem;
    }
    
    .about-text h2,
    .about-features h2,
    .about-team h2 {
        font-size: 1.8rem;
    }
    
    .team-container {
        flex-direction: column;
        text-align: center;
    }
    
    .team-image {
        margin: 0 auto;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .about-hero {
        padding: 8rem 0 3rem;
    }
    
    .about-hero h1 {
        font-size: 2rem;
    }
    
    .feature-item {
        padding: var(--space-md);
    }
}