/* Genel Stiller */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Hero Section */
.hero-section {
    background-color: #f8f9fa;
    padding: 60px 0;
}

.hero-section h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.hero-section p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
}

.hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Blog Kartları */
.blog-card {
    height: 100%;
    transition: transform 0.3s;
    border: none;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.blog-card .card-img-top {
    height: 200px;
    object-fit: cover;
}

.blog-card .card-title {
    font-size: 1.2rem;
    font-weight: 600;
}

.blog-card .card-text {
    color: #666;
    line-height: 1.6;
}

/* Etkinlik Kartları */
.event-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
}

.event-card h5 {
    font-weight: 600;
}

.event-card .event-date {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Ürün Kartları */
.product-card {
    border: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.product-card:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.product-card .product-image {
    height: 250px;
    object-fit: cover;
}

.product-card .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #28a745;
}

/* Footer */
footer {
    margin-top: auto;
}

/* Blog Detay */
.blog-detail-image {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 30px;
}

.blog-meta {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.blog-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
}

/* Sepet */
.cart-item {
    border-bottom: 1px solid #eee;
    padding: 15px 0;
}

.cart-item:last-child {
    border-bottom: none;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .hero-section {
        text-align: center;
    }
}