/* =================================================================
   TEMA STİL DOSYASI - style.css
==================================================================== */

/* Genel Stil Ayarları */
body {
    font-family: 'Roboto', sans-serif;
    /* Yumuşak kaydırma efektini HTML'den değil, CSS'den de verebiliriz. */
    scroll-behavior: smooth; 
}

h1, h2, h3, h4, h5, h6, .navbar-brand {
    font-family: 'Teko', sans-serif;
    font-weight: 700;
}

.section-title {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
    color: #343a40; /* Koyu Gri */
}

.section-padding {
    padding: 80px 0;
}

/* Navbar */
.navbar {
    transition: background-color 0.3s;
    background-color: #212529; /* Koyu Arkaplan */
}

.navbar-brand {
    font-size: 2.5rem;
}

.nav-link {
    text-transform: uppercase;
    font-weight: bold;
    margin: 0 10px;
    color: #f8f9fa; /* Açık renk yazı */
}

.nav-link:hover, .nav-link.active {
    color: #0d6efd; /* Vurgu Rengi - Mavi */
}

/* Slider (Carousel) */
.carousel-item {
    height: 100vh;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.carousel-caption {
    background-color: rgba(0, 0, 0, 0.6); /* Daha belirgin arkaplan */
    padding: 2rem;
    border-radius: 0.5rem;
    bottom: 15%;
}

.carousel-caption h5 {
    font-size: 4rem;
    font-family: 'Teko', sans-serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.carousel-caption p {
    font-size: 1.2rem;
}

/* Ürünler Galerisi */
.filter-buttons .btn {
    margin: 5px;
    text-transform: uppercase;
    font-weight: bold;
    border-radius: 20px;
    padding: 8px 20px;
}

.product-item {
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.product-item:hover {
    transform: translateY(-10px);
}

.product-item .card {
    border: none;
    transition: box-shadow 0.3s ease;
}
.product-item:hover .card {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.product-item .card-img-top {
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

/* İletişim Bölümü */
.contact-info i {
    font-size: 2rem;
    color: #0d6efd; /* Vurgu Rengi - Mavi */
}

/* Footer */
.footer {
    background-color: #212529; /* Koyu Arkaplan */
    color: white;
}

.footer .social-icons a {
    color: white;
    font-size: 1.5rem;
    margin: 0 10px;
    transition: color 0.3s, transform 0.3s;
}

.footer .social-icons a:hover {
    color: #0d6efd; /* Vurgu Rengi - Mavi */
    transform: scale(1.2);
}