/*
Theme Name: Astra Child
Description: Child theme of Astra for custom founders section
Template: astra
Version: 1.0.0
*/

@import url("../astra/style.css");

/* 
 * Astra Child Theme - About Page Styling
 */

/* About Page Section Styling */
.about-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
    margin-bottom: 0;
}

.about-hero h1 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.about-hero .subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.about-section {
    padding: 40px 0;
    border-bottom: 1px solid #e9ecef;
}

.about-section:last-child {
    border-bottom: none;
}

.about-section h2 {
    color: #2c3e50;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
}

.about-section h3 {
    color: #3498db;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.about-section h4 {
    color: #2c3e50;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

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

.about-section ul {
    list-style: none;
    padding: 0;
}

.about-section li {
    font-size: 1rem;
    line-height: 1.6;
    color: #5a6c7d;
    margin-bottom: 0.8rem;
    padding-left: 20px;
    position: relative;
}

.about-section li:before {
    content: "•";
    color: #3498db;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Three Column Layout */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.value-item {
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

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

.value-item .emoji {
    font-size: 2rem;
    margin-bottom: 15px;
    display: block;
}

.value-item h4 {
    color: #2c3e50;
    margin-bottom: 10px;
}

.value-item p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.service-card {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 25px;
    transition: box-shadow 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Partnership Box */
.partnership-highlight {
    background: #f8f9fa;
    border-left: 4px solid #3498db;
    padding: 20px;
    margin: 20px 0;
    border-radius: 0 8px 8px 0;
}

.partnership-highlight p {
    margin-bottom: 0;
    font-weight: 500;
}

/* Call to Action */
.cta-section {
    background: #2c3e50;
    color: white;
    padding: 40px 0;
    text-align: center;
    margin-top: 40px;
}

.cta-section h3 {
    color: white;
    margin-bottom: 20px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-block;
    background: #3498db;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: background 0.3s ease;
}

.cta-button:hover {
    background: #2980b9;
    color: white;
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid #3498db;
}

.cta-button.secondary:hover {
    background: #3498db;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2rem;
    }
    
    .about-hero .subtitle {
        font-size: 1.1rem;
    }
    
    .about-section h2 {
        font-size: 1.6rem;
    }
    
    .values-grid,
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}