/* Banner Stili */
.page-banner {
    height: 400px;
    background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../img/yemek-banner.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.page-banner h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.page-banner p {
    font-size: 18px;
    max-width: 600px;
}

/* Bilgi Bölümü */
.info-section {
    padding: 50px 5%;
    background: white;
    margin: 40px 5%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 30px;
}

.info-content h2 {
    color: #4CAF50;
    font-size: 28px;
    margin-bottom: 20px;
}

.info-content p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: #666;
}

/* Ürün Kartları */
.product-section {
    padding: 60px 5%;
    background: white;
    margin: 0 5%;
    border-radius: 10px;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.product-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.product-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    position: relative;
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.wishlist-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    background: white;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.product-info {
    padding: 20px;
    text-align: center;
}

.rating {
    color: #ffc107;
    margin: 10px 0;
}

.price {
    color: #4CAF50;
    font-size: 20px;
    font-weight: bold;
    margin: 10px 0;
}

.add-to-cart {
    width: 100%;
    padding: 12px;
    background: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.add-to-cart:hover {
    background: #45a049;
}

/* Faydalar Bölümü */
.benefits-section {
    padding: 60px 5%;
    margin: 40px 5%;
    background: white;
    border-radius: 10px;
}

.benefit-card {
    display: flex;
    align-items: center;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 10px;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateX(5px);
}

.benefit-icon {
    background: rgba(76, 175, 80, 0.1);
    color: #4CAF50;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    font-size: 24px;
}

/* Responsive Tasarım */
@media (max-width: 992px) {
    .product-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .info-section {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .product-container {
        grid-template-columns: 1fr;
    }
} 