.hero {
    background: url("../images/recipes/img.png") center/cover no-repeat;
    color: white;
    text-align: center;
    padding: 80px 20px;
}

.hero h1 {
    font-size: 40px;
    margin-bottom: 15px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 20px;
}

.btn {
    background-color: #27ae60;
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
}

.btn:hover {
    background-color: #219150;
}

.intro {
    text-align: center;
    padding: 40px 20px;
    max-width: 800px;
    margin: auto;
}

.featured {
    padding: 40px 20px;
    text-align: center;
}

.featured-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.featured-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    width: 200px;
    text-align: center;
    transition: transform 0.2s;
}

.featured-card:hover {
    transform: scale(1.05);
}

.featured-card img {
    width: 100%;
    height: 140px;
    object-fit: cover;
}

.featured-card h3 {
    margin: 10px 0;
    font-size: 18px;
}

.community-container {
    background-color: #f8f9fa;
    padding: 40px 20px;
    text-align: center;
}
