/* ========== ABOUT PAGE STYLES ========== */

/* Navigation */
.top-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--gray-200);
    z-index: 999;
    padding: 0;
}

.nav-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--gray-900);
    text-decoration: none;
    transition: all 0.2s ease;
}

.nav-logo:hover {
    color: var(--primary-color);
    transform: translateY(-1px);
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    color: var(--gray-600);
    text-decoration: none;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: var(--radius);
    transition: all 0.2s ease;
    position: relative;
}

.nav-links a:hover {
    color: var(--primary-color);
    background: var(--gray-50);
}

.nav-links a.active {
    color: var(--primary-color);
    background: rgba(79, 70, 229, 0.1);
}

/* About Hero Section */
.about-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e2e8f0" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
}

.hero-content {
    z-index: 2;
}

.about-hero .hero-badge span{
  color:var(--primary-color)!important;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(79, 70, 229, 0.1);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 24px;
    border: 1px solid rgba(79, 70, 229, 0.2);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--gray-900);
    margin-bottom: 24px;
}

.hero-highlight {
    background: linear-gradient(45deg, var(--primary-color), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Code Snippet Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.code-snippet {
    background: var(--gray-900);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    max-width: 400px;
    width: 100%;
    transform: rotate(3deg);
    transition: transform 0.3s ease;
}

.code-snippet:hover {
    transform: rotate(0deg) scale(1.05);
}

.code-header {
    background: var(--gray-800);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.code-dots {
    display: flex;
    gap: 6px;
}

.code-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray-600);
}

.code-dots span:nth-child(1) { background: #ff5f56; }
.code-dots span:nth-child(2) { background: #ffbd2e; }
.code-dots span:nth-child(3) { background: #27ca3f; }

.code-title {
    color: var(--gray-300);
    font-size: 0.9rem;
    font-family: 'Courier New', monospace;
}

.code-content {
    padding: 20px;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    line-height: 1.6;
}

.code-line {
    margin-bottom: 4px;
}

.code-comment { color: #7c7c7c; }
.code-keyword { color: #ff79c6; }
.code-variable { color: #8be9fd; }
.code-string { color: #f1fa8c; }
.code-function { color: #50fa7b; }

/* Story Section */
.story-section {
    padding: var(--section-padding) 0;
    background: white;
}

.story-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

.story-header {
    text-align: center;
    margin-bottom: 60px;
}

.story-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 16px;
}

.story-header p {
    font-size: 1.25rem;
    color: var(--gray-600);
    margin: 0;
}

/* Timeline */
.story-timeline {
    position: relative;
    padding-left: 60px;
}

.story-timeline::before {
    content: '';
    position: absolute;
    left: 25px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary-color), var(--primary-light));
}

.timeline-item {
    position: relative;
    margin-bottom: 60px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-icon {
    position: absolute;
    left: -48px;
    top: 0;
    width: 50px;
    height: 50px;
    background: white;
    border: 3px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: var(--shadow);
}

.timeline-content h3 {
    color: var(--gray-900);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.timeline-content p {
    color: var(--gray-600);
    line-height: 1.7;
    font-size: 1.1rem;
    margin: 0;
}

/* Team Section */
.team-section {
    padding: var(--section-padding) 0;
    background: var(--gray-50);
}

.team-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}

.team-container h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 16px;
}

.team-container > p {
    font-size: 1.25rem;
    color: var(--gray-600);
    margin-bottom: 60px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.team-member {
    background: white;
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    text-align: center;
}

.team-member:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.member-avatar {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 24px;
}

.avatar-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    box-shadow: var(--shadow-lg);
}

.avatar-status {
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 20px;
    height: 20px;
    background: #10b981;
    border: 3px solid white;
    border-radius: 50%;
}

.team-member h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.member-role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 16px;
    font-size: 1rem;
}

.member-description {
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 24px;
}

.member-skills {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.skill-tag {
    background: var(--gray-100);
    color: var(--gray-700);
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Values Section */
.values-section {
    padding: var(--section-padding) 0;
    background: white;
}

.values-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}

.values-container h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 60px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.value-item {
    padding: 30px 20px;
    text-align: center;
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.value-item h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 16px;
}

.value-item p {
    color: var(--gray-600);
    line-height: 1.6;
    margin: 0;
}

/* Support Section */
.support-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: white;
    text-align: center;
}

.support-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

.support-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.support-content > p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.support-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
    text-align: left;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.support-list li {
    font-size: 1.1rem;
    margin-bottom: 12px;
    opacity: 0.9;
}

.support-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.support-actions .btn-primary {
    background: white;
    color: var(--primary-color);
}

.support-actions .btn-primary:hover {
    background: var(--gray-100);
    transform: translateY(-2px);
}

.support-actions .btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.support-actions .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

.support-note {
    font-size: 0.95rem;
    opacity: 0.8;
    font-style: italic;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }
    
    .language-selector {
        top: 80px;
        right: 15px;
    }
    
    .language-toggle {
        padding: 6px 10px;
        font-size: 13px;
    }
    
    .language-text {
        display: none;
    }
    
    .nav-container {
        padding: 12px 16px;
    }
    
    .nav-links {
        gap: 16px;
    }
    
    .nav-links a {
        padding: 6px 12px;
        font-size: 0.9rem;
    }
    
    .about-hero {
        padding: 60px 0 40px;
    }
    
    .hero-container {
        padding: 0 16px;
        gap: 30px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .code-snippet {
        max-width: 320px;
        transform: rotate(0deg);
    }
    
    .story-timeline {
        padding-left: 40px;
    }
    
    .timeline-icon {
        left: -35px;
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .story-timeline::before {
        left: -15px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .support-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .support-actions .btn-primary,
    .support-actions .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .language-selector {
        top: 70px;
        right: 10px;
    }
    
    .language-toggle {
        padding: 5px 8px;
        font-size: 12px;
        min-width: 40px;
    }
    
    .language-dropdown {
        right: 0;
        min-width: 120px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .story-header h2,
    .team-container h2,
    .values-container h2,
    .support-content h2 {
        font-size: 2rem;
    }
    
    .timeline-content h3 {
        font-size: 1.25rem;
    }
    
    .code-snippet {
        max-width: 280px;
    }
    
    .code-content {
        padding: 16px;
        font-size: 0.8rem;
    }
}