/* About Page Specific Styles */

/* Hero Section - About */
.about-hero-section {
    position: relative;
    height: 60vh;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)),
                url('../../image/Screenshot\ 2026-04-11\ 032128.png') center/cover fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1000px;
    padding: 0 20px;
}

.about-hero-title {
    color: white;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    line-height: 1.2;
}

.about-hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 300;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
    margin-bottom: 0;
}

/* About Content Section */
.about-content-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--dark-green), var(--medium-green));
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 80px;
}

.about-text h2 {
    color: var(--primary-green);
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-shadow: 0 0 15px var(--shadow-green);
}

.about-description {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px var(--shadow-green);
}

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

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

/* Features Section */
.about-features-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--medium-green), var(--dark-green));
}

.about-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-green), var(--accent-green));
}

.feature-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px var(--shadow-green);
    border-color: var(--primary-green);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--primary-green), var(--accent-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 30px var(--shadow-green);
}

.feature-card h3 {
    color: var(--primary-green);
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1rem;
}

/* Story Journey Section */
.story-journey-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--dark-green), var(--medium-green));
}

.journey-timeline {
    position: relative;
    max-width: 1000px;
    margin: 60px auto;
}

.journey-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--primary-green), var(--accent-green));
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-content {
    flex: 1;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    margin: 0 40px;
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px var(--shadow-green);
    border-color: var(--primary-green);
}

.timeline-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--primary-green);
    border: 4px solid var(--dark-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.timeline-dot {
    width: 12px;
    height: 12px;
    background: white;
    border-radius: 50%;
}

.timeline-title {
    color: var(--primary-green);
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.timeline-description {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Values Section */
.values-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--medium-green), var(--dark-green));
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.value-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.value-item:hover {
    transform: translateY(-8px);
    border-color: var(--primary-green);
    box-shadow: 0 15px 30px var(--shadow-green);
}

.value-icon {
    font-size: 3rem;
    color: var(--primary-green);
    margin-bottom: 20px;
}

.value-title {
    color: var(--primary-green);
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.value-description {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Team Section */
.team-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--dark-green), var(--medium-green));
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.team-member {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px var(--shadow-green);
    border-color: var(--primary-green);
}

.team-member-image {
    height: 250px;
    background: linear-gradient(135deg, var(--primary-green), var(--accent-green));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: white;
}

.team-member-info {
    padding: 30px;
    text-align: center;
}

.team-member-name {
    color: var(--primary-green);
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.team-member-role {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 15px;
}

.team-member-bio {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .journey-timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: column !important;
        align-items: flex-start !important;
        margin-left: 60px;
    }
    
    .timeline-content {
        margin: 0 0 30px 0;
    }
    
    .timeline-marker {
        left: 30px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .about-hero-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .feature-card {
        padding: 30px 20px;
    }
    
    .timeline-content {
        padding: 20px;
    }
    
    .value-item {
        padding: 25px 20px;
    }
    
    .team-member-info {
        padding: 25px 20px;
    }
    
    .about-hero-title {
        font-size: 2rem;
    }
    
    /* Enhanced Mobile Responsive */
    .about-hero-section {
        height: 50vh;
        min-height: 400px;
        background-attachment: scroll;
        background-size: cover;
        background-position: center;
    }
    
    .about-hero-content {
        padding: 0 20px;
        max-width: 100%;
    }
    
    .about-hero-subtitle {
        font-size: clamp(0.9rem, 3vw, 1.1rem);
        padding: 0 10px;
    }
    
    .about-content-section {
        padding: 60px 0;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-text-content {
        text-align: center;
    }
    
    .requirements-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .about-hero-section {
        min-height: 350px;
    }
    
    .about-hero-title {
        font-size: clamp(1.8rem, 10vw, 2.5rem);
    }
    
    .about-hero-subtitle {
        font-size: clamp(0.8rem, 4vw, 1rem);
        padding: 0 5px;
    }
    
    .about-content-section {
        padding: 40px 0;
    }
}
