/* Genel Ayarlar */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #f8f9fa; /* Açık ve temiz bir arka plan */
    color: #333;
}

/* Navbar Ayarları */
.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
}

/* Ana Başlık ve Bölüm Başlıkları */
.section-title {
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #0d6efd; /* Bootstrap Primary Rengi */
}

/* Kart Tasarımı */
.card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%; /* Kartların aynı hizada durmasını sağlar */
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 35px rgba(0, 0, 0, 0.15);
}

.card-img-top {
    border-radius: 15px 15px 0 0;
    width: 100%;
    aspect-ratio: 16 / 10; /* Resimlerin orantılı olmasını sağlar */
    object-fit: cover;
}

.card-body {
    display: flex;
    flex-direction: column;
}

.card-title {
    font-weight: 600;
    color: #333;
}

.card-text {
    flex-grow: 1; /* Açıklama metninin alanı doldurmasını sağlar */
    color: #555;
}

a.card-link {
    text-decoration: none;
}

/* Detay Sayfası */
.detail-img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
}

/* İletişim Sayfası */
.contact-info i {
    font-size: 1.5rem;
    color: #0d6efd;
}