/* About Page Specific Styles */

.page-header {
    position: relative;
    height: 400px;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../../images/page-header-bg.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-header-content {
    text-align: center;
    color: white;
    z-index: 2;
}

.page-header-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.page-header-content p {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.breadcrumb {
    color: white;
    font-size: 1rem;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: var(--color-secondary, #FFB347);
}

/* About Section */
.about-section {
    padding: 5rem 0;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.about-badge {
    position: absolute;
    bottom: -20px;
    right: 20px;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.badge-icon {
    font-size: 3rem;
}

.badge-text strong {
    display: block;
    font-size: 2rem;
    color: var(--color-primary, #FF6B35);
}

.badge-text span {
    font-size: 0.875rem;
    color: #757575;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2C2C2C;
}

.about-content p {
    color: #4A4A4A;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-features {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.feature-item h4 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
    color: #2C2C2C;
}

.feature-item p {
    color: #757575;
    margin: 0;
}

/* Values Section */
.values-section {
    padding: 5rem 0;
    background: #FAFAFA;
}

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

.value-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.value-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2C2C2C;
}

.value-card p {
    color: #757575;
    line-height: 1.6;
}

/* Chefs Section */
.chefs-section {
    padding: 5rem 0;
}

.chefs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.chef-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.chef-card:hover {
    transform: translateY(-10px);
}

.chef-image {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.chef-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.chef-card:hover .chef-image img {
    transform: scale(1.1);
}

.chef-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 107, 53, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.chef-card:hover .chef-overlay {
    opacity: 1;
}

.chef-social {
    display: flex;
    gap: 1rem;
}

.chef-social a {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.5rem;
    transition: transform 0.3s;
}

.chef-social a:hover {
    transform: translateY(-5px);
}

.chef-info {
    padding: 2rem;
    text-align: center;
}

.chef-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #2C2C2C;
}

.chef-role {
    display: block;
    color: var(--color-primary, #FF6B35);
    font-weight: 600;
    margin-bottom: 1rem;
}

.chef-info p {
    color: #757575;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .page-header-content h1 {
        font-size: 2.5rem;
    }
    
    .about-grid, .values-grid, .chefs-grid {
        grid-template-columns: 1fr;
    }
    
    .about-badge {
        position: static;
        margin-top: 1rem;
    }
}
