/* ===========================
   About Page Specific Styles
   =========================== */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.page-header h1 {
    color: white;
    margin-bottom: 0.5rem;
}

.page-header p {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    margin: 0;
}

.about-section {
    padding: 4rem 0;
    background: var(--bg-light);
}

/* Story Section */
.story-section {
    background: white;
    border-radius: var(--radius);
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: var(--shadow-md);
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.story-content h2 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.lead {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.story-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.story-content blockquote {
    background: var(--bg-light);
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: var(--text-dark);
    font-size: 1.1rem;
}

.story-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    width: 100%;
    height: 300px;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--text-dark);
    box-shadow: var(--shadow-sm);
}

.image-placeholder span {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.story-logo {
    max-width: 200px;
    max-height: 150px;
    width: auto;
    height: auto;
    margin-bottom: 1rem;
    object-fit: contain;
    display: block;
}

.image-placeholder p {
    color: var(--primary-color);
    font-weight: 500;
    margin: 0;
}

/* Values Section */
.values-section {
    margin-bottom: 3rem;
}

.values-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.value-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all 0.3s ease;
}

.value-card:last-child {
    grid-column: 1 / -1;
    max-width: 100%;
    padding: 2.5rem;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.value-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Equipment Section */
.equipment-section {
    background: white;
    border-radius: var(--radius);
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: var(--shadow-md);
}

.equipment-section h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.section-intro {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

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

.equipment-card {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: var(--radius);
}

.equipment-card h3 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.equipment-card ul {
    list-style: none;
}

.equipment-card li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
}

.equipment-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

/* Commitments Section */
.commitments-section {
    margin-bottom: 3rem;
}

.commitments-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.commitments-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.commitment-item {
    background: white;
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.commitment-icon {
    font-size: 2rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    border-radius: 50%;
    flex-shrink: 0;
}

.commitment-text h3 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.commitment-text p {
    color: var(--text-light);
    line-height: 1.6;
}

/* About CTA */
.about-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 3rem;
    border-radius: var(--radius);
    text-align: center;
}

.about-cta h2 {
    color: white;
    margin-bottom: 1rem;
}

.about-cta p {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.about-cta .cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .story-section {
        grid-template-columns: 1fr;
    }

    .story-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 2rem 0;
    }

    .page-header h1 {
        font-size: 1.75rem;
    }

    .story-section {
        padding: 2rem;
    }

    .image-placeholder {
        height: 200px;
    }

    .story-logo {
        max-width: 150px;
        max-height: 100px;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .value-card:last-child {
        grid-column: 1;
    }

    .equipment-grid {
        grid-template-columns: 1fr;
    }

    .commitments-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .about-section {
        padding: 2rem 0;
    }

    .story-section {
        padding: 1.5rem;
    }

    .image-placeholder {
        height: 150px;
    }

    .story-logo {
        max-width: 120px;
        max-height: 80px;
    }

    .story-content blockquote {
        padding: 1rem;
        font-size: 1rem;
    }

    .value-card {
        padding: 1.5rem;
    }

    .equipment-section {
        padding: 2rem 1.5rem;
    }

    .commitment-item {
        padding: 1.5rem;
    }

    .about-cta {
        padding: 2rem 1.5rem;
    }
}