/* Hero Section */
.hero-section {
    background-color: #f8f9fa;
}

/* Card hover efektleri */
.card {
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

/* Özel renkler */
.bg-primary {
    background-color: #0056b3 !important;
}

/* İkonlar için stil */
.text-primary {
    color: #0056b3 !important;
}

/* Responsive ayarlamalar */
@media (max-width: 768px) {
    .display-4 {
        font-size: 2.5rem;
    }

    .lead {
        font-size: 1.1rem;
    }
}
/* Genel stiller */
body {
    font-family: 'Roboto', sans-serif;
}

/* Top bar */
.top-bar {
    font-size: 0.9rem;
}

.top-bar a {
    text-decoration: none;
    transition: opacity 0.3s;
}

.top-bar a:hover {
    opacity: 0.8;
}

/* Navbar */
.navbar {
    padding: 1rem 0;
}

.navbar-brand img {
    max-height: 50px;
}

.nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #0056b3 !important;
}

/* Footer */
.footer {
    font-size: 0.9rem;
}

.footer h5 {
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.footer ul li a {
    text-decoration: none;
    transition: opacity 0.3s;
}

.footer ul li a:hover {
    opacity: 0.8;
}

/* Butonlar */
.btn {
    padding: 0.5rem 1.5rem;
    font-weight: 500;
    border-radius: 5px;
    transition: all 0.3s;
}

.btn-primary {
    background-color: #0056b3;
    border-color: #0056b3;
}

.btn-primary:hover {
    background-color: #004494;
    border-color: #004494;
    transform: translateY(-2px);
}

/* Kartlar */
.card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

/* Formlar */
.form-control {
    padding: 0.75rem 1rem;
    border: 1px solid #dee2e6;
    border-radius: 5px;
}

.form-control:focus {
    border-color: #0056b3;
    box-shadow: 0 0 0 0.2rem rgba(0, 86, 179, 0.25);
}

/* Animasyonlar */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeIn {
    animation: fadeIn 1s ease-out;
}

.custom-img {
    width: 700px;
    height: 300px; /* Kare boyut için */
    margin-left: 20px; /* Soldan boşluk için */
}

/* Kartlar için özel stil */
.custom-card {
        background-color: #f8f9fa; /* Hafif gri arka plan */
        border-radius: 10px; /* Yuvarlak köşeler */
        transition: transform 0.3s, box-shadow 0.3s; /* Hover efekti */
   }

.custom-card:hover {
        transform: translateY(-10px); /* Yükseğe doğru hareket */
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); /* Daha belirgin gölge */
    }

/* Kart başlıklarına biraz stil ekleyebiliriz */
 .card-title {
        font-weight: bold;
        color: #343a40; /* Daha koyu metin rengi */
    }

/* Footer buton stilini iyileştirme */
.card-footer .btn-primary {
        background-color: #007bff;
        border: none;
        border-radius: 5px;
        padding: 10px;
        transition: background-color 0.3s;
    }

.card-footer .btn-primary:hover {
        background-color: #0056b3; /* Hover rengi */
    }

.rating span {
  color: #f39c12;
  margin-right: 2px;
}