/* Genel Stil Ayarları */
body {
    font-family: 'Roboto', sans-serif;
    background-color: #f5f7fa;
    color: #333333;
}

.brand-name {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    margin-left: 10px;
}

/* Navbar */
.navbar {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.navbar-nav .nav-link {
    margin-left: 15px;
    font-weight: 500;
}

.navbar-nav .nav-link.active {
    color: #007bff !important;
}

/* Hero Bölümü */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../images/hero.jpg') no-repeat center center/cover;
    height: 80vh;
    position: relative;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-section h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.hero-section .btn {
    padding: 10px 30px;
    font-size: 1rem;
    transition: background-color 0.3s, transform 0.3s;
}

.hero-section .btn:hover {
    background-color: #0056b3;
    transform: translateY(-3px);
}

/* Öne Çıkan Ürünler */
.featured-products .card {
    transition: transform 0.3s, box-shadow 0.3s;
    border: none;
}

.featured-products .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.featured-products .card-img-top {
    height: 250px;
    object-fit: cover;
}

.featured-products .btn {
    transition: background-color 0.3s, transform 0.3s;
}

.featured-products .btn:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}

/* Hakkımızda Bölümü */
.about-section img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.about-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Ürünler Sayfası */
.products-section .product-item .card {
    transition: transform 0.3s, box-shadow 0.3s;
    border: none;
}

.products-section .product-item .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.products-section .product-item .card-img-top {
    height: 200px;
    object-fit: cover;
}

.products-section .btn {
    transition: background-color 0.3s, transform 0.3s;
}

.products-section .btn:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}

/* İletişim Formu */
.contact-section form .form-control {
    border-radius: 10px;
    padding: 12px 20px;
    border: 1px solid #ced4da;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.contact-section form .form-control:focus {
    border-color: #80bdff;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

.contact-section .btn-grey {
    background-color: #6c757d;
    color: #fff;
    border: none;
    transition: transform 0.3s;
}

.contact-section .btn-grey:hover {
    background-color: #6c757d;
    color: #fff;
    transform: translateY(-2px);
}

/* Footer */
footer {
    background-color: #ffffff;
    border-top: 1px solid #eaeaea;
}

footer p {
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.social-icons a {
    margin: 0 10px;
    transition: transform 0.3s;
}

.social-icons a:hover {
    transform: scale(1.2);
}

/* Animasyonlar */
.fade-in {
    animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Responsive Ayarlar */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2rem;
    }

    .about-section img {
        margin-bottom: 20px;
    }

    .about-section p {
        font-size: 1rem;
    }
}
