/* static/css/main.css */
:root {
    --primary: #2c3e50;
    --secondary: #3498db;
    --accent: #e74c3c;
    --light: #ecf0f1;
    --dark: #2c3e50;
    --gradient: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
  }
  
  body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    background: var(--light);
  }
  
  .jumbotron {
    background: var(--gradient);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
  }
  
  .jumbotron:hover {
    transform: translateY(-5px);
  }
  
  .haber-kategori-menu {
    position: sticky;
    top: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    padding: 1.5rem;
  }
  
  .haber-kategori-menu li {
    margin: 0.5rem 0;
    transition: all 0.2s ease;
  }
  
  .haber-kategori-menu a {
    color: var(--dark);
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    display: block;
    text-decoration: none !important;
  }
  
  .haber-kategori-menu a:hover {
    background: var(--secondary);
    color: white;
    transform: translateX(10px);
  }
  
  .haber-kart {
    background: white;
    border: none;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  }
  
  .haber-kart:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
  }
  
  .haber-kart-header {
    background: var(--gradient);
    color: white;
    padding: 1rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
  }
  
  .haber-kart-body {
    padding: 1.5rem;
    position: relative;
  }
  
  .haber-kart-body::after {
    content: "→";
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--secondary);
    opacity: 0;
    transition: all 0.3s ease;
  }
  
  .haber-kart:hover .haber-kart-body::after {
    opacity: 1;
    right: 1rem;
  }
  
  .etiket-badge {
    background: var(--light);
    color: var(--dark) !important;
    border: 1px solid var(--secondary);
    border-radius: 20px;
    padding: 0.35rem 1rem;
    margin: 0.25rem;
    font-size: 0.85rem;
    transition: all 0.2s ease;
  }
  
  .etiket-badge:hover {
    background: var(--secondary) !important;
    color: white !important;
    transform: scale(1.05);
  }
  
  .pagination .page-item .page-link {
    border: none;
    color: var(--dark);
    margin: 0 0.25rem;
    border-radius: 8px;
    min-width: 40px;
    text-align: center;
  }
  
  .pagination .page-item.active .page-link {
    background: var(--gradient);
    color: white;
    box-shadow: 0 5px 15px rgba(52,152,219,0.3);
  }
  
  @media (max-width: 768px) {
    .haber-kategori-menu {
      position: static;
      margin-bottom: 2rem;
    }
    
    .haber-kart {
      margin-bottom: 1.5rem;
    }
  }


