/* =========================================
   ABOUT PAGE SPECIFIC STYLES
========================================= */

body {
    background-color: #f9f9f9;
    color: var(--text-dark, #333);
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

/* General Section Styling */
section {
    padding: 80px 20px;
}

.content-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 50px;
}

.content-container.reverse {
    flex-direction: row-reverse;
}

.text-content {
    flex: 1;
}

.text-content h2 {
    font-size: 2.2rem;
    color: var(--brand-red, #d32f2f);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.text-content p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 15px;
}

.image-content {
    flex: 1;
}

.image-content img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.image-content img:hover {
    transform: scale(1.02);
}

/* Values Section (Grid Layout) */
.values-section {
    background-color: #ffffff;
    text-align: center;
}

.values-section h2 {
    font-size: 2.2rem;
    color: var(--brand-red, #d32f2f);
    margin-bottom: 50px;
    text-transform: uppercase;
}

.values-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.value-card {
    background-color: #f9f9f9;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border-top: 5px solid var(--brand-orange, #ff6600);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.value-card h3 {
    font-size: 1.5rem;
    color: var(--text-dark, #333);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.value-card p {
    color: #555;
    font-size: 1rem;
    margin: 0;
}

/* Kitchen Section */
.kitchen-section {
    background-color: #f9f9f9;
}

/* Community Section */
.community-section {
    background-color: #ffffff;
    text-align: center;
}

.community-content {
    max-width: 800px;
    margin: 0 auto;
}

.community-content h2 {
    font-size: 2.2rem;
    color: var(--brand-red, #d32f2f);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.community-content p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 15px;
}

/* Call To Action */
.cta {
    text-align: center;
    background-color: #f4f4f4;
    padding: 80px 20px;
    border-top: 1px solid #ddd;
}

.cta h2 {
    font-size: 2rem;
    color: var(--text-dark, #333);
    margin-bottom: 15px;
}

.cta p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .content-container, 
    .content-container.reverse {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    section {
        padding: 60px 20px;
    }
}
