/* About Page Styles */

/* Modern About Page Header */
.modern-about-header {
    padding: 60px 0 30px;
    text-align: left;
    position: relative;
    background-color: #2d2d33;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-top: 0;
}

.modern-about-header .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.modern-about-header h1 {
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    color: white;
    position: relative;
    display: inline-block;
}

.modern-about-header h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #a29bfe 0%, #6c5ce7 100%);
}

.modern-about-header .subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.8);
    margin-top: 1.5rem;
    max-width: 700px;
}

/* Fix white space between navbar and header */
.sticky-nav {
    margin-bottom: 0 !important;
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

/* Add padding to body to prevent content from hiding behind fixed navbar */
body {
    padding-top: 70px;
}

/* Reduce spacing between paragraphs in story section */
.founder-story p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.8);
    margin-bottom: 0.8rem;
}

/* Our Story Section */
.story-section {
    padding: 60px 0;
    background-color: #2d2d33;
}

.story-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.story-content {
    flex: 1;
    min-width: 300px;
    padding-right: 40px;
}

.story-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.story-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.image-caption {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    font-style: italic;
    margin-top: 10px;
    text-align: center;
}

.story-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: white;
    position: relative;
    display: inline-block;
}

.story-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(135deg, #a29bfe 0%, #6c5ce7 100%);
}

/* Mission Section */
.mission-section {
    padding: 80px 0;
    background-color: #343439;
}

.mission-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.mission-content {
    flex: 1;
    min-width: 300px;
    padding-right: 40px;
}

.mission-content blockquote {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #a29bfe;
    font-weight: 600;
    margin: 1.5rem 0;
    padding-left: 1.5rem;
    border-left: 4px solid #a29bfe;
    font-style: italic;
}

.mission-image {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    text-align: center;
}

.mission-image img {
    max-width: 80%;
    padding: 20px;
}

.mission-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: white;
    position: relative;
    display: inline-block;
}

.mission-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(135deg, #a29bfe 0%, #6c5ce7 100%);
}

.mission-section p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.8);
    margin-bottom: 1.5rem;
}

/* Values Section */
.values-section {
    padding: 80px 0;
    background-color: #2d2d33;
}

.values-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.values-title {
    text-align: center;
    margin-bottom: 50px;
}

.values-title h2 {
    font-size: 2.5rem;
    color: white;
    position: relative;
    display: inline-block;
}

.values-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: linear-gradient(135deg, #a29bfe 0%, #6c5ce7 100%);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.value-card {
    background-color: #343439;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #a29bfe;
}

.value-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.8);
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #a29bfe;
}

/* Call to Action */
.about-cta {
    background: linear-gradient(135deg, #a29bfe 0%, #6c5ce7 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.about-cta-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.about-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.about-cta .btn {
    background-color: white;
    color: #6c5ce7;
    font-size: 1.1rem;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: inline-block;
}

.about-cta .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Footer */
.site-footer {
    color: white;
    padding: 40px 0 20px;
    background-color: #2d2d33;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.footer-brand-logo {
    height: 40px;
    width: auto;
    margin-right: 10px;
}

.footer-brand-name {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
}

.footer-brand-name em {
    font-style: italic;
    color: #a29bfe;
}

.footer-contact {
    margin-bottom: 15px;
}

.footer-contact a {
    color: #a29bfe;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: white;
    text-decoration: underline;
}

.footer-social {
    display: flex;
    gap: 15px;
}

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

.social-icon:hover {
    background-color: #a29bfe;
    transform: translateY(-3px);
}

.footer-copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Dark Theme */
.dark-theme .story-section {
    background-color: #2d3436;
}

.dark-theme .mission-section, 
.dark-theme .team-section {
    background-color: #2d3436;
}

.dark-theme .values-section {
    background-color: #1e272e;
}

.dark-theme .mission-section h2,
.dark-theme .story-section h2,
.dark-theme .values-title h2 {
    color: #f5f6fa;
}

.dark-theme .mission-section p,
.dark-theme .story-section p,
.dark-theme .value-card p {
    color: #dcdde1;
}

.dark-theme .value-card {
    background-color: #2d3436;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 992px) {
    .story-container,
    .mission-container {
        flex-direction: column;
    }
    
    .story-content,
    .mission-content {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .modern-about-header h1 {
        font-size: 2.8rem;
    }
    
    .modern-about-header .subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .modern-about-header {
        padding: 60px 0 30px;
    }
    
    .modern-about-header h1 {
        font-size: 2.2rem;
    }
    
    .story-section {
        padding: 40px 0;
    }
    
    .mission-section {
        padding: 40px 0;
    }
    
    .values-section {
        padding: 40px 0;
    }
    
    .mission-section h2,
    .story-section h2,
    .values-title h2,
    .about-cta h2 {
        font-size: 2rem;
    }
    
    .about-cta p {
        font-size: 1rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-social {
        justify-content: center;
        margin-top: 15px;
    }
    
    body {
        padding-top: 100px; /* Increase padding for mobile as navbar gets taller */
    }
}

@media (max-width: 576px) {
    .modern-about-header h1 {
        font-size: 1.8rem;
    }
    
    .modern-about-header .subtitle {
        font-size: 1rem;
    }
    
    .mission-section h2,
    .story-section h2,
    .values-title h2,
    .about-cta h2 {
        font-size: 1.8rem;
    }
    
    .social-icon {
        width: 35px;
        height: 35px;
    }
} 