.about-page {
    padding-top: 80px;
    background-color: #FFE5B4; /* Main peach background */
}

.about-hero {
    background-color: transparent; /* Removed peach overlay */
    background-image: url('https://lh3.googleusercontent.com/gps-cs-s/AC9h4nq5w18_hNuX-UWNo0GCg1Wti2kzG_Dt2TTlGBURJJl0CZvP_jc0VdGIKMSOCqqCvB9ne-eIWIM3V583QASehYwFkm7fJCX7zr_rmGhydPKNcwNAlcZqjxJSkymLSX0QpSAfp_Mj=s1360-w1360-h1020-rw');
    background-size: cover;
    background-position: center;
    color: #fff; /* Changed text color to white for better visibility */
    padding: 6rem 5%;
    text-align: center;
    position: relative;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #fff; /* Changed text color to white */
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7); /* Changed shadow for better visibility */
}

.about-hero p {
    font-size: 1.2rem;
    line-height: 1.6;
    opacity: 0.9;
    color: #fff; /* Changed text color to white */
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7); /* Changed shadow for better visibility */
    max-width: 800px;
    margin: 0 auto;
}

/* Welcome Section */
.welcome-section {
    padding: 3rem 5%;
    background-color: #FFE5B4; /* Match main peach background */
    text-align: center;
}

.welcome-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.welcome-section h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    position: relative;
    display: inline-block;
}

.welcome-section h1:after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: #ff6b00;
    margin: 0.5rem auto 1.5rem;
}

.story-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
}

.story-text {
    flex: 1;
    text-align: center;
}

.story-image {
    flex: 1;
    text-align: center;
}

.story-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.story-image img:hover {
    transform: scale(1.02);
}

.welcome-section p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333; /* Dark gray text */
    font-weight: 400;
    margin-bottom: 1.5rem;
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.welcome-section .list-container {
    text-align: center;
    margin: 1.5rem 0;
}

.welcome-section ul {
    list-style-type: none;
    text-align: center;
    max-width: 450px;
    margin: 0 auto;
    padding-left: 0;
    display: inline-block;
}

.welcome-section ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    line-height: 1.5;
    color: #444;
    text-align: left;
}

.welcome-section ul li:before {
    content: "•";
    color: #ff6b00; /* Orange bullet point */
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.features {
    padding: 4rem 5%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    background-color: #FFE5B4; /* Changed from white to peach */
}

.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% 2rem;
    background-color: #FFE5B4; /* Changed to match main peach background */
    text-align: center;
}

.mission h2 {
    color: #1a1a1a; /* Black text */
    text-align: center;
    margin-bottom: 1rem;
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
}

.mission h2:after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: #ff6b00;
    margin: 0.5rem auto 1.5rem;
}

.mission p {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    line-height: 1.6;
    color: #333; /* Dark gray text */
    font-size: 1.1rem;
    font-weight: 400;
}

.mission ul {
    max-width: 800px;
    margin: 0 auto;
    list-style-type: none;
    background-color: transparent; /* Removed background */
    padding: 0.5rem 2rem;
    border-radius: 0; /* Removed border radius */
}

.mission ul li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.2rem;
    font-size: 1rem;
    line-height: 1.4;
    color: #444;
    font-weight: 400;
}

.mission ul li:before {
    content: "•";
    color: #ff6b00; /* Orange bullet point */
    position: absolute;
    left: 0;
    font-size: 1rem;
    top: 0.5rem;
}

/* 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: #FFE5B4; /* Changed to match main peach background */
}

.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;
    }
}

@media (max-width: 768px) {
    .story-content {
        flex-direction: column-reverse;
    }
    
    .story-image {
        margin-bottom: 2rem;
    }
    
    .welcome-section p {
        max-width: 100%;
    }
} 