.about-page {
    padding-top: 80px;
    background-color: #FFE5B4; /* Main peach background */
}

.about-hero {
    background-color: #FFCBA4; /* Darker peach for hero section */
    color: #1a1a1a; /* Black text */
    padding: 4rem 5%;
    text-align: center;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a; /* Black text */
}

.about-hero p {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.9;
    color: #1a1a1a; /* Black text */
}

.features {
    padding: 4rem 5%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    background-color: #fff;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    background-color: #FFE5B4; /* Main peach for cards */
    border-radius: 10px;
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card .icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: #ff6b00;
    margin-bottom: 1rem;
}

.mission {
    padding: 4rem 5%;
    background-color: #FFCBA4; /* Darker peach for mission */
}

.mission h2 {
    color: #1a1a1a; /* Black text */
    text-align: center;
    margin-bottom: 2rem;
}

.mission p {
    max-width: 800px;
    margin: 0 auto 2rem;
    text-align: center;
    line-height: 1.6;
    color: #333; /* Dark gray text */
}

.mission ul {
    max-width: 600px;
    margin: 0 auto;
    list-style-type: none;
}

.mission ul li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.mission ul li:before {
    content: "•";
    color: #ff6b00;
    position: absolute;
    left: 0;
}

/* Ingredients Section */
.ingredients {
    padding: 4rem 5%;
    background-color: #FFE5B4; /* Main peach background */
    text-align: center;
}

.ingredients h2 {
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-size: 2.2rem;
}

.ingredients p {
    max-width: 800px;
    margin: 0 auto 3rem;
    color: #333;
    line-height: 1.6;
}

.ingredients-container {
    max-width: 1200px;
    margin: 0 auto;
}

.ingredient-category {
    margin-bottom: 3rem;
}

.ingredient-category h3 {
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    position: relative;
    display: inline-block;
}

.ingredient-category h3:after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background-color: #ff6b00;
    margin: 0.5rem auto 0;
}

.ingredients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
}

.ingredient-item {
    background-color: #FFDAB9; /* Lighter peach */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.ingredient-item:hover {
    transform: translateY(-5px);
}

.ingredient-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    display: block;
}

.ingredient-item span {
    display: block;
    padding: 0.8rem;
    font-weight: 500;
    color: #1a1a1a;
}

@media (max-width: 768px) {
    .ingredients-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .ingredients-grid {
        grid-template-columns: 1fr;
        max-width: 250px;
        margin: 0 auto;
    }
}

.location {
    padding: 4rem 5%;
    text-align: center;
    background-color: #FFDAB9; /* Lighter peach for location */
}

.location h2 {
    color: #1a1a1a; /* Black text */
    margin-bottom: 1.5rem;
}

.location p {
    margin-bottom: 1rem;
    color: #333; /* Dark gray text */
}

.contact-info {
    margin-top: 2rem;
}

.contact-info p {
    margin: 0.5rem 0;
    color: #666;
}

/* Chef Gallery Section */
.chef-gallery {
    padding: 4rem 5%;
    background-color: #FFDAB9; /* Lighter peach for gallery */
    text-align: center;
}

.chef-gallery h2 {
    color: #1a1a1a; /* Black text */
    margin-bottom: 2.5rem;
    font-size: 2.2rem;
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.gallery-item .caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff; /* Keep this white for contrast on dark background */
    padding: 1rem;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .about-hero {
        padding: 3rem 5%;
    }

    .about-hero h1 {
        font-size: 2rem;
    }

    .feature-card {
        max-width: 350px;
        margin: 0 auto;
    }

    .gallery-container {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
} 