/* Chef Page Styles */
.chef-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px 15px;
}

/* Chef List Page */
.chefs-header {
    text-align: center;
    margin-bottom: 40px;
}

.chefs-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #333;
}

.chefs-header p {
    font-size: 1.2rem;
    color: #666;
}

.chefs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.chef-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 20px;
}

.chef-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.chef-avatar {
    margin-bottom: 15px;
}

.chef-avatar img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.default-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-color: #e67e22;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: bold;
    border: 4px solid #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.chef-details {
    text-align: center;
}

.chef-details h2 {
    margin-bottom: 10px;
    font-size: 1.4rem;
}

.chef-meta {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
    color: #666;
    font-size: 0.9rem;
}

.chef-specialties {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px;
    margin-bottom: 20px;
}

.specialty-tag {
    background-color: #f5f5f5;
    padding: 3px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    color: #666;
}

.btn-view-profile {
    display: inline-block;
    padding: 8px 20px;
    background-color: #e67e22;
    color: #fff;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-view-profile:hover {
    background-color: #d35400;
    color: #fff;
}

.no-chefs {
    text-align: center;
    padding: 50px 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    margin-bottom: 40px;
}

.no-chefs p {
    margin-bottom: 20px;
    color: #666;
    font-size: 1.1rem;
}

.become-chef-cta {
    background-color: #f5f5f5;
    padding: 40px;
    text-align: center;
    border-radius: 8px;
    margin-top: 30px;
}

.become-chef-cta h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #333;
}

.become-chef-cta p {
    margin-bottom: 20px;
    color: #666;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Individual Chef Profile */
.chef-profile {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.chef-header {
    display: flex;
    flex-wrap: wrap;
    padding: 30px;
    gap: 30px;
    border-bottom: 1px solid #eee;
}

.chef-info {
    flex: 1;
    min-width: 300px;
}

.chef-info h1 {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 2rem;
}

.chef-badge {
    display: inline-block;
    background-color: #e67e22;
    color: #fff;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.9rem;
    margin-right: 15px;
    font-weight: bold;
}

.chef-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.stars {
    display: inline-flex;
    margin-right: 10px;
}

.star {
    color: #ddd;
}

.star.filled {
    color: #ffc107;
}

.star.half-filled {
    position: relative;
    color: #ddd;
}

.star.half-filled::before {
    content: '★';
    position: absolute;
    color: #ffc107;
    width: 50%;
    overflow: hidden;
}

.chef-bio {
    margin-bottom: 20px;
}

.chef-bio h2 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #333;
}

.chef-bio p {
    line-height: 1.6;
    color: #555;
}

.chef-specialties h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #333;
}

.chef-contact {
    margin-top: 20px;
}

.btn-chat {
    display: inline-block;
    padding: 10px 20px;
    background-color: #e67e22;
    color: #fff;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-chat:hover {
    background-color: #d35400;
    color: #fff;
}

.chef-contact-premium {
    margin-top: 20px;
    background-color: #f3e5f5;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
}

.chef-recipes {
    padding: 30px;
}

.chef-recipes h2 {
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f5f5f5;
    color: #333;
}

.no-recipes {
    text-align: center;
    padding: 30px;
    color: #666;
    background-color: #f9f9f9;
    border-radius: 8px;
}

/* Recipe Cards */
.recipes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.recipe-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    background-color: #fff;
}

.recipe-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.recipe-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.recipe-details {
    padding: 15px;
}

.recipe-details h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.recipe-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    color: #666;
    font-size: 0.9rem;
}

.recipe-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.tag {
    display: inline-block;
    padding: 3px 8px;
    background-color: #f5f5f5;
    border-radius: 15px;
    font-size: 0.8rem;
    color: #666;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .chef-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .chef-info h1, .chef-recipes h2 {
        justify-content: center;
    }
    
    .chef-stats {
        justify-content: center;
    }
    
    .chef-specialties {
        justify-content: center;
    }
    
    .chef-contact, .chef-contact-premium {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .chefs-grid, .recipes-grid {
        grid-template-columns: 1fr;
    }
    
    .chef-header, .chef-recipes {
        padding: 20px 15px;
    }
}