/* ABOUT PAGE STYLES */

/* Page Header (Same as Categories) */
.page-header {
    background: #fdfaf6;
    padding: 60px 0 40px;
    border-bottom: 1px solid var(--border);
    text-align: center;
    margin-bottom: 60px;
}

.page-header h1 {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.page-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-muted);
}

.page-breadcrumb a {
    color: var(--text-main);
    font-weight: 500;
    transition: color 0.3s ease;
}

.page-breadcrumb a:hover {
    color: var(--primary);
}

/* Our Story Section */
.story-section {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
}

.story-content {
    flex: 1;
}

.story-subtitle {
    color: var(--accent);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: block;
}

.story-title {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 25px;
    line-height: 1.3;
}

.story-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.story-features {
    list-style: none;
    margin-top: 30px;
}

.story-features li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 600;
    color: var(--text-main);
}

.story-features li i {
    width: 24px;
    height: 24px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.story-image {
    flex: 1;
    position: relative;
}

.story-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.story-image::before {
    content: '';
    position: absolute;
    inset: -20px 20px 20px -20px;
    border: 2px solid var(--accent);
    border-radius: 12px;
    z-index: -1;
}

/* Core Values */
.values-section {
    background: #fdfaf6;
    padding: 80px 0 20px;
    margin-bottom: 80px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

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

.section-header-center h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.section-header-center p {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

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

.value-card {
    text-align: center;
    padding: 40px 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    transition: transform 0.3s ease;
    border: 1px solid transparent;
}

.value-card:hover {
    transform: translateY(-10px);
    border-color: var(--border);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: rgba(160, 108, 79, 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 25px;
    transition: var(--transition);
}

.value-card:hover .value-icon {
    background: var(--primary);
    color: white;
    transform: scale(1.1);
}

.value-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.value-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Stats Section */
.stats-banner {
    background: var(--primary-dark);
    background-image: linear-gradient(rgba(49, 29, 15, 0.95), rgba(49, 29, 15, 0.95)), url('../images/hero_bg.png');
    background-size: cover;
    background-attachment: fixed;
    padding: 60px 0;
    color: white;
    margin-bottom: 80px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-item h4 {
    font-size: 48px;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 16px;
    font-weight: 600;
    opacity: 0.9;
}

/* Responsive */
@media (max-width: 998px) {
    .story-section {
        flex-direction: column-reverse;
    }
    .story-image::before {
        display: none;
    }
    .story-content {
        text-align: center;
    }
    .story-features li {
        justify-content: center;
    }
}
