/* About Page Specific Styles */
.about-hero {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.5)), url('image/about-bg.jpeg') center/cover no-repeat;
}

.story {
    background: rgba(255, 255, 255, 0.9);
}

.story-timeline {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 4rem;
}

.timeline-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    position: relative;
    cursor: pointer;
}

.timeline-item:hover {
    transform: translateY(-10px) scale(1.05);
}

.timeline-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: bounce 2s infinite;
}

.timeline-icon img {
    width: 500px;
    height: 500px;
    object-fit: cover;
    border-radius: 50%;
}
.timeline-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.timeline-item p {
    color: #666;
    font-size: 1.1rem;
}

.mission {
    background: linear-gradient(135deg, #C8E6C9 0%, #A5D6A7 100%);
}

.mission-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.value-card {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
}

.value-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    animation: pulse 2s infinite;
}

.value-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.value-card p {
    color: #666;
    font-size: 1.1rem;
}

.team {
    background: rgba(255, 255, 255, 0.9);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.team-member {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
}

.member-avatar {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    animation: avatarBob 2s ease-in-out infinite;
}
.team-member img {
    width: 150px;
    height: 200px;
    object-fit: contain;
    border-radius: 50%;
}

.team-member h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.team-member p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.member-bio {
    color: #888;
    font-style: italic;
}

.why-chickens {
    background: linear-gradient(135deg, #E1BEE7 0%, #D1C4E9 100%);
}

.chicken-facts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.fact-card {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.fact-card:hover {
    transform: translateY(-10px);
}

.fact-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    animation: pulse 2s infinite;
}

.fact-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.fact-card p {
    color: #666;
    font-size: 1.1rem;
}

.vision {
    background: rgba(255, 255, 255, 0.9);
}

.vision-animation {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 4rem 0;
    gap: 2rem;
    flex-wrap: wrap;
}

.vision-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.6;
}

.vision-item:hover {
    opacity: 1;
    transform: scale(1.1);
}

.vision-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.vision-item:hover .vision-icon {
    transform: scale(1.2) rotate(10deg);
}

.vision-label {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
}

.vision-arrow {
    font-size: 2rem;
    color: #FF6B6B;
    font-weight: bold;
}

.join-us {
    background: linear-gradient(135deg, #FFE135 0%, #FFD700 100%);
}

.join-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.join-animation {
    margin-bottom: 2rem;
}

.join-chicken {
    font-size: 6rem;
    animation: chickenBounce 3s ease-in-out infinite;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
}
.join-chicken img {
    width: 300px;
    height: 400px;
    object-fit: contain;
}

.join-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 768px) {
    .story-timeline {
        flex-direction: column;
        gap: 1.5rem;
    }

    .vision-animation {
        flex-direction: column;
        gap: 1rem;
    }

    .vision-arrow {
        transform: rotate(90deg);
    }

    .join-buttons {
        flex-direction: column;
        align-items: center;
    }
    .timeline-icon img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 50%;
}
}

@media (max-width: 480px) {
    .timeline-icon,
    .value-icon,
    .fact-icon,
    .vision-icon {
        font-size: 3rem;
    }

    .join-chicken {
        font-size: 4rem;
    }
       .timeline-icon img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 50%;
}
}
