/* Custom Styles for SixFinger Haberler */

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Header Styles */
header h1 a:hover {
    opacity: 0.9;
}

/* Card Hover Effect */
.hover-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

/* Article Content Styling */
.article-content {
    font-size: 1.1rem;
    line-height: 1.8;
}

.article-content h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #dc3545;
    font-weight: bold;
}

.article-content h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #212529;
}

.article-content p {
    margin-bottom: 1.25rem;
    text-align: justify;
}

.article-content img {
    max-width: 100%;
    height: auto;
    margin: 1.5rem 0;
}

/* Ad Container Styling */
.ad-container {
    border-radius: 5px;
    min-height: 90px;
}

/* Navigation Active State */
.navbar-nav .nav-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
}

/* Card Image Placeholder */
.card-img-top {
    height: 200px;
    object-fit: cover;
}

/* Badge Styling */
.badge {
    font-weight: 600;
    padding: 0.5rem 0.75rem;
}

/* Footer Links */
footer a {
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #fff !important;
}

/* Admin Panel Styles */
.table-hover tbody tr:hover {
    background-color: rgba(0, 0, 0, 0.02);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .card-img-top {
        height: 150px;
    }
    
    .article-content {
        font-size: 1rem;
    }
}

/* Loading Spinner */
.spinner-border-sm {
    width: 1rem;
    height: 1rem;
}

/* Alert Styling */
.alert {
    border-radius: 5px;
    border: none;
}

/* Button Styling */
.btn {
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}
