/* About Page Specific Styles */

/* About Hero Content */
.about-hero .hero-content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
}

.about-hero .hero-title {
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.about-hero .hero-subtitle {
    font-size: 1.1rem;
    font-weight: 300;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.about-hero {
    min-height: 100vh;
    padding-top: 100px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(26, 26, 26, 0.8) 100%),
                url('https://images.unsplash.com/photo-1556742049-0cfed4f6a45d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    position: relative;
}

/* Story Section - Modern Design */
.story-section {
    padding: 120px 0;
    background: #f8f9fa;
}

.story-image {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0,0,0,0.1);
    position: relative;
}

.story-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.story-image:hover img {
    transform: scale(1.05);
}

.story-content {
    padding: 2rem 0;
}

.story-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 1rem;
}

.story-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.story-text {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

/* Values Section - Neumorphic Design */
.values-section {
    padding: 120px 0;
    background: #f8f9fa;
}

.value-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    min-height: 320px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.value-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    flex-shrink: 0;
}

.value-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.value-description {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Mission Section - Modern Design */
.mission-section {
    padding: 120px 0 80px;
    background: var(--accent-color);
}

.mission-card {
    background: white;
    border-radius: 30px 30px 0 0;
    padding: 4rem;
    box-shadow: 0 -20px 50px rgba(0,0,0,0.1);
    text-align: center;
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.mission-icon {
    width: 100px;
    height: 100px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -9rem auto 2rem;
    font-size: 2.5rem;
    color: white;
    position: relative;
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    border: 5px solid var(--accent-color);
}

.mission-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.mission-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
