/* Genel Yazı Tipi ve Temel Ayarlar */
body {
    font-family: 'Ubuntu', sans-serif;
    background-color: #f8f9fa;
    color: #333;
    line-height: 1.6;
}

/* Navbar */
.navbar {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
    font-weight: 500;
}

.navbar-brand {
    letter-spacing: 1px;
    color: #01337c !important;
}

.navbar-nav .nav-link {
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #0d6efd;
}

/* Carousel Gölgelendirme */
.carousel-inner img {
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Ana Başlık */
h1, h3, h5 {
    font-family: 'Ubuntu Condensed', sans-serif;
}

/* İçerik Alanı */
.card-text {
    font-size: 1rem;
}

.lead {
    font-size: 1.15rem;
    color: #444;
}

.card {
    border-radius: 12px;
}

.card img {
    border-radius: 12px 12px 0 0;
}

.card-header {
    background-color: #e9ecef;
    font-weight: bold;
}

/* Butonlar */
.btn-primary {
    background-color: #0d6efd;
    border: none;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #084298;
}

/* Footer */
footer {
    border-top: 1px solid #ddd;
    font-size: 0.9rem;
}

footer .card-title {
    display: block;
    margin-top: 5px;
}

/* Responsive Küçük Dokuşlar */
@media (max-width: 768px) {
    h1 {
        font-size: 1.75rem;
    }

    .lead {
        font-size: 1rem;
    }
}
