/* About Page Specific Styles */

.about-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem 4rem;
}

.about-section {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(95, 126, 156, 0.2);
    border-radius: 16px;
    padding: 3rem;
    margin-bottom: 3rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(95, 126, 156, 0.03), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.about-section:hover::before {
    transform: translateX(100%);
}

.about-section:hover {
    transform: translateY(-3px);
    border-color: rgba(95, 126, 156, 0.4);
    box-shadow: 0 10px 30px rgba(95, 126, 156, 0.15);
}

.section-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.section-icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(95, 126, 156, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(95, 126, 156, 0.2);
}

.section-header h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #5f7e9c;
    margin: 0;
}

.section-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #cccccc;
    margin-bottom: 1.5rem;
}

.section-content p:last-child {
    margin-bottom: 0;
}

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

.value-item {
    background: rgba(95, 126, 156, 0.05);
    border: 1px solid rgba(95, 126, 156, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.value-item:hover {
    background: rgba(95, 126, 156, 0.1);
    border-color: rgba(95, 126, 156, 0.2);
    transform: translateY(-2px);
}

.value-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #5f7e9c;
    margin-bottom: 1rem;
}

.value-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: #cccccc;
    margin: 0;
}

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

.tech-category {
    background: rgba(95, 126, 156, 0.05);
    border: 1px solid rgba(95, 126, 156, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.tech-category:hover {
    background: rgba(95, 126, 156, 0.1);
    border-color: rgba(95, 126, 156, 0.2);
    transform: translateY(-2px);
}

.tech-category h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #5f7e9c;
    margin-bottom: 1rem;
}

.tech-category ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.tech-category li {
    color: #cccccc;
    line-height: 1.6;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(95, 126, 156, 0.1);
    position: relative;
    padding-left: 1.5rem;
}

.tech-category li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #5f7e9c;
    font-weight: bold;
}

.tech-category li:last-child {
    border-bottom: none;
}

/* Contact Actions */
.contact-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-container {
        padding: 0 1rem 2rem;
    }
    
    .about-section {
        padding: 2rem;
        margin-bottom: 2rem;
    }
    
    .section-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .section-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .values-grid,
    .tech-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-actions {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .about-section {
        padding: 1.5rem;
    }
    
    .section-header h2 {
        font-size: 1.3rem;
    }
    
    .section-content p {
        font-size: 1rem;
    }
    
    .value-item,
    .tech-category {
        padding: 1rem;
    }
}

