:root {
  --primary-color: #0056b3;
  --secondary-color: #17a2b8;
  --accent-color: #ffc107;
  --dark-color: #343a40;
  --light-color: #f8f9fa;
}

body {
  font-family: 'Roboto', sans-serif;
  line-height: 1.7;
  color: #333;
  background-color: #f8f9fa;
}

.navbar {
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  padding: 15px 0;
  background-color: white !important;
}

.navbar-brand {
  font-weight: 700;
  font-size: 24px;
  color: var(--primary-color) !important;
}

.nav-link {
  font-weight: 500;
  margin: 0 10px;
  padding: 10px 5px !important;
  position: relative;
}

.nav-link:after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--primary-color);
  transition: width 0.3s;
}

.nav-link:hover:after {
  width: 100%;
}

/* Navbar scroll efekti (index.html ile aynı) */
.navbar {
  box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  padding: 1rem 0;
  background-color: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  background-color: rgba(255, 255, 255, 0.98) !important;
}

@media (max-width: 768px) {
        footer .row {
            text-align: center !important;
            justify-content: center !important;
        }
        footer .col-md-4 {
            text-align: center !important;
            justify-content: center !important;
            align-items: center !important;
            margin-bottom: 30px;
        }
        footer .footer-links {
            text-align: center !important;
        }
    }

.blog-hero {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  padding: 80px 0;
  margin-bottom: 50px;
}

.blog-hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.blog-hero p {
  font-size: 1.2rem;
  opacity: 0.9;
}

.category-section {
  margin-bottom: 60px;
}

.category-title {
  color: var(--primary-color);
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 3px solid var(--primary-color);
  position: relative;
}

.category-title::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: var(--accent-color);
}

.blog-card {
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  height: 100%;
  overflow: hidden;
  border: none;
}

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

.blog-card .card-body {
  padding: 25px;
}

.blog-card .card-title {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 1.3rem;
  margin-bottom: 15px;
  line-height: 1.4;
}

.blog-card .card-text {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.blog-meta {
  font-size: 0.85rem;
  color: #888;
  margin-bottom: 15px;
}

.blog-meta i {
  margin-right: 5px;
}

.read-more {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.3s;
}

.read-more:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

.category-badge {
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 15px;
}

.search-box {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  margin-bottom: 40px;
}

.search-input {
  border: 2px solid #e9ecef;
  border-radius: 25px;
  padding: 12px 20px;
  font-size: 1rem;
  transition: all 0.3s;
}

.search-input:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(0, 86, 179, 0.25);
}

.stats-card {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  margin-bottom: 30px;
}

.stats-number {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.stats-label {
  font-size: 1rem;
  opacity: 0.9;
}

/* Footer (index.html ile aynı görünüm) */
footer {
  background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
  color: white;
  padding: 4rem 0 2rem;
  margin-top: 60px;
  position: relative;
  overflow: hidden;
}

footer p {
  color: rgba(255, 255, 255, 0.8) !important;
}

footer .footer-title {
  color: var(--accent-color) !important;
}

footer .copyright {
  color: rgba(255, 255, 255, 0.8) !important;
}

footer .copyright p {
  color: rgba(255, 255, 255, 0.8) !important;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.footer-title {
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--accent-color);
  font-size: 1.25rem;
  position: relative;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
}

/* Footer başlık altı çizgi hizaları (sütuna göre) */
footer .align-items-center .footer-title::after {
  left: 50%;
  transform: translateX(-50%);
}

footer .text-md-end .footer-title::after {
  left: auto;
  right: 0;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 15px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  padding: 0.25rem 0;
}

.footer-links a:hover {
  color: var(--accent-color);
  transform: translateX(8px);
}

.copyright {
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

/* Floating button (index.html ile aynı) */
.btn-floating {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color), #1e3a8a);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  z-index: 99;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
}

.btn-floating:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  background: linear-gradient(135deg, #1e3a8a, var(--primary-color));
}

.btn-floating:active {
  transform: translateY(-2px) scale(1.02);
}


/* === sablon.html'den taşınan stiller === */
:root {
  --primary-color: #0056b3;
  --secondary-color: #17a2b8;
  --accent-color: #ffc107;
  --dark-color: #343a40;
  --light-color: #f8f9fa;
}

body {
  font-family: 'Roboto', sans-serif;
  line-height: 1.7;
  color: #333;
  background-color: #f8f9fa;
}

.navbar {
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  padding: 15px 0;
  background-color: white !important;
}

.navbar-brand {
  font-weight: 700;
  font-size: 24px;
  color: var(--primary-color) !important;
}

.nav-link {
  font-weight: 500;
  margin: 0 10px;
  padding: 10px 5px !important;
  position: relative;
}

.nav-link:after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--primary-color);
  transition: width 0.3s;
}

.nav-link:hover:after {
  width: 100%;
}

@media (max-width: 768px) {
        footer .row {
            text-align: center !important;
            justify-content: center !important;
        }
        footer .col-md-4 {
            text-align: center !important;
            justify-content: center !important;
            align-items: center !important;
            margin-bottom: 30px;
        }
        footer .footer-links {
            text-align: center !important;
        }
    }

.blog-header {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  padding: 60px 0;
  margin-bottom: 40px;
}

.blog-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
}

/* Header içindeki meta farklı renk/kapsam için özelleştirildi */
.blog-header .blog-meta {
  font-size: 1rem;
  opacity: 0.9;
  color: #fff;
}

.blog-content {
  background-color: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  margin-bottom: 40px;
  font-size: 1.1rem;
  line-height: 1.8;
}

.blog-content h2 {
  color: var(--primary-color);
  margin: 30px 0 20px 0;
  font-weight: 600;
}

.blog-content h3 {
  color: var(--dark-color);
  margin: 25px 0 15px 0;
  font-weight: 600;
}

.blog-content p {
  margin-bottom: 20px;
  color: #444;
}

.blog-content ul, .blog-content ol {
  margin-bottom: 20px;
  padding-left: 30px;
}

.blog-content li {
  margin-bottom: 10px;
}

.blog-content blockquote {
  border-left: 4px solid var(--primary-color);
  padding-left: 20px;
  margin: 30px 0;
  font-style: italic;
  color: #666;
  background-color: #f8f9fa;
  padding: 20px;
  border-radius: 5px;
}

.blog-content img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 20px 0;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.blog-sidebar {
  background-color: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  height: fit-content;
  position: sticky;
  top: 100px;
}

.sidebar-title {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 20px;
  font-size: 1.3rem;
}

.sidebar-links {
  list-style: none;
  padding: 0;
}

.sidebar-links li {
  margin-bottom: 12px;
}

.sidebar-links a {
  color: #555;
  text-decoration: none;
  transition: all 0.3s;
  display: block;
  padding: 8px 0;
  border-bottom: 1px solid #eee;
}

.sidebar-links a:hover {
  color: var(--primary-color);
  padding-left: 10px;
}

.breadcrumb {
  background-color: transparent;
  padding: 0;
  margin-bottom: 20px;
}

.breadcrumb-item a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}

.breadcrumb-item.active {
  color: rgba(255, 255, 255, 0.8);
}

.seo-content {
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  margin-bottom: 40px;
}

.seo-content h2 {
  color: var(--primary-color);
  margin-bottom: 20px;
}

/* Bugünün sınavı butonu (inline stil yerine sınıf) */
.btn-bugun-sinavi {
  color: #0056b3 !important;
  min-width: 270px;
  font-size: 1.2rem;
  border: 2px solid #0056b3;
  margin-top: 8px;
}

