/* Genel Stiller */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Header Stiller */
.navbar {
    padding: 1rem 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.brand-text {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #fff;
    text-transform: uppercase;
}

.navbar-brand img {
    max-height: 40px;
}

.nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #007bff !important;
}

/* Hero Section */
.hero-section {
    height: 600px;
    position: relative;
    overflow: hidden;
}

.hero-image {
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
    color: white;
}

/* Kategori Kartları */
.category-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    margin-bottom: 30px;
}

.category-card:hover {
    transform: translateY(-5px);
}

.category-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.category-content {
    padding: 20px;
    background: white;
}

/* Ürün Kartları */
.product-card {
    border: none;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card img {
    height: 200px;
    object-fit: cover;
}

.price {
    font-size: 1.25rem;
    font-weight: bold;
    color: #28a745;
}

/* Footer Stiller */
footer {
    background-color: #343a40;
    color: white;
    padding: 60px 0 30px;
}

footer h5 {
    font-weight: 600;
    margin-bottom: 20px;
}

footer ul li {
    margin-bottom: 10px;
}

footer a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #007bff;
}

.social-links a {
    font-size: 1.2rem;
    margin-right: 15px;
}

.newsletter-form .form-control {
    border-radius: 0;
    border: none;
}

.newsletter-form .btn {
    border-radius: 0;
}

/* Responsive Düzenlemeler */
@media (max-width: 768px) {
    .hero-section {
        height: 400px;
    }
    
    .category-card img {
        height: 200px;
    }
    
    .product-card img {
        height: 180px;
    }
}

/* Form Stiller */
.form-control {
    border-radius: 0;
    padding: 0.75rem 1rem;
}

.btn {
    border-radius: 0;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
}

/* Animasyonlar */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.5s ease-out;
}

/* Header sağ tarafındaki butonlar ve arama */
.d-flex.align-items-center.gap-3 {
    gap: 1.25rem !important;
}

.d-flex.align-items-center .btn {
    min-width: 90px;
}

.d-flex.align-items-center form {
    min-width: 250px;
}

@media (max-width: 992px) {
    .d-flex.align-items-center.gap-3 {
        flex-direction: column;
        align-items: stretch;
        gap: 0.5rem !important;
        width: 100%;
    }
    .d-flex.align-items-center form {
        min-width: 0;
    }
}

/* Neden YOLBARS feature hizalama */
.why-us .feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
    text-align: center;
}
.why-us .feature i {
    color: #007bff;
    margin-bottom: 16px;
}
.why-us .feature h4 {
    margin: 15px 0 10px 0;
    font-size: 1.2rem;
    font-weight: 600;
}
.why-us .feature p {
    margin-bottom: 0;
    color: #333;
} 