/* Ana stil dosyası */

/* Body ve genel stiller */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
}

/* Navbar stilleri */
.navbar-brand {
    font-weight: bold;
}

.navbar-nav .nav-link {
    font-weight: 500;
}

/* Hero section stilleri */
.jumbotron {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    border-radius: 15px;
}

.jumbotron h1 {
    font-weight: 700;
}

/* Card stilleri */
.card {
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.card-img-top {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

/* Buton stilleri */
.btn {
    border-radius: 8px;
    font-weight: 600;
    padding: 10px 20px;
}

.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
}

.btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}

/* Form stilleri */
.form-control, .form-select {
    border-radius: 8px;
    padding: 12px 15px;
}

.form-control:focus, .form-select:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.25rem rgba(0, 123, 255, 0.25);
}

/* Feature icon stilleri */
.feature-icon {
    transition: transform 0.3s ease;
}

.feature-icon:hover {
    transform: scale(1.1);
}

/* Footer stilleri */
footer {
    margin-top: 50px;
    padding-top: 30px;
    padding-bottom: 30px;
}

.social-links a {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
}

/* Responsive stiller */
@media (max-width: 768px) {
    .jumbotron {
        padding: 2rem 1rem;
    }
    
    .card {
        margin-bottom: 20px;
    }
    
    footer .text-md-end {
        text-align: left !important;
        margin-top: 10px;
    }
}

/*Breadcrumb stilleri*/
.breadcrumb {
    background-color: #e9ecef;
    border-radius: 8px;
}

/* Alert stilleri */
.alert {
    border-radius: 8px;
}

/* Badge stilleri */
.badge {
    font-weight: 500;
}

/* Pagination stilleri */
.pagination .page-link {
    border-radius: 8px;
    margin: 0 2px;
}

.pagination .page-item.active .page-link {
    background-color: #007bff;
    border-color: #007bff;
}

/* Table stilleri */
.table th {
    font-weight: 600;
}

.table-hover tbody tr:hover {
    background-color: rgba(0, 123, 255, 0.05);
}

/* Progress bar stilleri */
.progress {
    border-radius: 5px;
}

.progress-bar {
    background-color: #28a745;
}