/* About Page Specific Styles */

/* Video Section */
.about-video {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.video-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.video-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 24px;
    line-height: 1.2;
}

.video-description {
    font-size: 1.125rem;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 32px;
}

.video-highlights {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
}

.highlight-icon {
    width: 24px;
    height: 24px;
    color: #ff6b35;
    flex-shrink: 0;
}

.highlight-item span {
    font-weight: 500;
    color: #2d3748;
}

.video-container {
    position: relative;
}

.video-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    background: #000;
}

.about-video-player {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.play-button {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.play-button:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1);
}

.play-button svg {
    width: 32px;
    height: 32px;
    color: #ff6b35;
    margin-left: 4px;
}

.video-caption {
    text-align: center;
    margin-top: 16px;
}

.video-caption p {
    color: #6b7280;
    font-style: italic;
    font-size: 0.875rem;
}

/* Origin Story Section */
.origin-story {
    padding: 80px 0;
    background: #ffffff;
}

.origin-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.origin-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 32px;
    line-height: 1.2;
}

.origin-description {
    font-size: 1.125rem;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 24px;
}

.origin-description strong {
    color: #ff6b35;
    font-weight: 600;
}

.origin-visual {
    position: relative;
}

.origin-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Mission Section */
.mission {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.mission-visual {
    order: -1;
}

.mission-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.mission-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 24px;
    line-height: 1.2;
}

.mission-description {
    font-size: 1.125rem;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 32px;
}

.mission-points {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.mission-point {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.mission-icon {
    width: 24px;
    height: 24px;
    color: #ff6b35;
    flex-shrink: 0;
    margin-top: 4px;
}

.mission-point h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 8px;
}

.mission-point p {
    color: #4a5568;
    line-height: 1.6;
}

/* Hidden Treasures Section */
.hidden-treasures {
    padding: 80px 0;
    background: #ffffff;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.treasures-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.treasure-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.treasure-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.treasure-image {
    position: relative;
    overflow: hidden;
}

.treasure-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.treasure-card:hover .treasure-img {
    transform: scale(1.05);
}

.treasure-content {
    padding: 24px;
}

.treasure-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 12px;
}

.treasure-description {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 16px;
}

.treasure-origin {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b35, #e55a2b);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

/* Cook4Me Story Section */
.cook4me-story {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.cook4me-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.cook4me-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 24px;
    line-height: 1.2;
}

.cook4me-description {
    font-size: 1.125rem;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 24px;
}

.cook4me-description strong {
    color: #ff6b35;
    font-weight: 600;
}

.cook4me-benefits {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 32px;
}

.cook4me-benefit {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.benefit-icon {
    width: 24px;
    height: 24px;
    color: #ff6b35;
    flex-shrink: 0;
    margin-top: 4px;
}

.cook4me-benefit h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 8px;
}

.cook4me-benefit p {
    color: #4a5568;
    line-height: 1.6;
}

.cook4me-visual {
    position: relative;
}

.cook4me-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Values Section */
.values {
    padding: 80px 0;
    background: #ffffff;
}

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

.value-card {
    text-align: center;
    padding: 32px 24px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.value-icon {
    width: 48px;
    height: 48px;
    color: #ff6b35;
    margin: 0 auto 24px;
}

.value-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 16px;
}

.value-description {
    color: #4a5568;
    line-height: 1.6;
}

/* Impact Section */
.impact {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.impact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.impact-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 24px;
    line-height: 1.2;
}

.impact-description {
    font-size: 1.125rem;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 32px;
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.impact-stat {
    text-align: center;
    padding: 24px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.impact-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 8px;
}

.impact-label {
    color: #4a5568;
    font-weight: 500;
}

.impact-visual {
    position: relative;
}

.impact-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Team Section */
.team {
    padding: 80px 0;
    background: #ffffff;
}

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

.team-member {
    text-align: center;
    padding: 32px 24px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.member-image {
    margin-bottom: 24px;
}

.member-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.member-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 8px;
}

.member-role {
    color: #ff6b35;
    font-weight: 500;
    margin-bottom: 16px;
}

.member-bio {
    color: #4a5568;
    line-height: 1.6;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #ff6b35, #e55a2b);
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
    line-height: 1.2;
}

.cta-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
    line-height: 1.6;
}

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

.btn-cta {
    background: #ffffff;
    color: #ff6b35;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-cta:hover {
    background: #f8fafc;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.btn-cta-secondary {
    background: transparent;
    color: #ffffff;
    padding: 16px 32px;
    border: 2px solid #ffffff;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-cta-secondary:hover {
    background: #ffffff;
    color: #ff6b35;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .video-content,
    .origin-content,
    .mission-content,
    .cook4me-content,
    .impact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .mission-visual {
        order: 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .video-text h2,
    .origin-text h2,
    .mission-text h2,
    .cook4me-text h2,
    .impact-text h2 {
        font-size: 2rem;
    }
    
    .treasures-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .impact-stats {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-cta,
    .btn-cta-secondary {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.75rem;
    }
    
    .video-text h2,
    .origin-text h2,
    .mission-text h2,
    .cook4me-text h2,
    .impact-text h2,
    .cta-title {
        font-size: 1.75rem;
    }
    
    .treasures-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .treasure-card {
        margin: 0 16px;
    }
}