/**
 * Ana CSS Dosyası - Modern Tasarım
 */

/* Yazı Tipleri */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Poppins:wght@300;400;500;600;700&display=swap');

/* Değişkenler */
:root {
  /* Ana Renkler */
  --primary-color: #6C5DD3;          /* Mor ağırlıklı ana renk */
  --primary-light: #8C7AE6;          /* Açık mor */
  --primary-dark: #4A3DB5;           /* Koyu mor */
  --secondary-color: #3F72AF;        /* Mavi tonu */
  --accent-color: #FFA500;           /* Turuncu vurgu rengi */
  
  /* RGB değerleri (JS manipülasyonu için) */
  --primary-rgb: 108, 93, 211;
  --secondary-rgb: 63, 114, 175;
  --accent-rgb: 255, 165, 0;
  --success-rgb: 40, 167, 69;
  --info-rgb: 23, 162, 184;
  --warning-rgb: 255, 165, 0;
  --danger-rgb: 220, 53, 69;
  
  /* Arabirim Renkleri */
  --success-color: #28a745;
  --info-color: #17a2b8;
  --warning-color: #ffc107;
  --danger-color: #dc3545;
  
  /* Nötr Renkler */
  --text-color: #333;
  --text-muted: #6c757d;
  --light-color: #f8f9fa;
  --dark-color: #343a40;
  --border-color: #e9ecef;
  
  /* Gradient Tanımları */
  --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
  --gradient-secondary: linear-gradient(135deg, var(--secondary-color) 0%, #5E92D6 100%);
  --gradient-accent: linear-gradient(135deg, var(--accent-color) 0%, #FFD166 100%);
  --gradient-success: linear-gradient(135deg, var(--success-color) 0%, #48c774 100%);
  --hero-gradient: linear-gradient(135deg, #3B3086 0%, #6C5DD3 50%, #A594FF 100%);
  
  /* Gölgeler */
  --card-shadow: 0 3px 20px rgba(0, 0, 0, 0.08);
  --card-shadow-hover: 0 10px 30px rgba(0, 0, 0, 0.12);
  --btn-shadow: 0 4px 10px rgba(var(--primary-rgb), 0.25);
  --header-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  
  /* Tipografi */
  --font-primary: 'Montserrat', sans-serif;
  --font-secondary: 'Poppins', sans-serif;
  
  /* Kenar Yuvarlamaları */
  --card-radius: 15px;
  --btn-radius: 10px;
  --input-radius: 10px;
  --badge-radius: 8px;
  
  /* Geçiş Efektleri */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* Reset ve Genel Stiller */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--font-secondary);
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-color);
  background-color: #FBFAFF;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
  padding-top: 80px; /* Navbar yüksekliği */
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: #333;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: 1rem;
}

main {
  flex: 1;
}

section {
  padding: 5rem 0;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color var(--transition-normal);
}

a:hover {
  color: var(--primary-dark);
}

/* Container */
.container {
  max-width: 1200px;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

/* Butonlar */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.675rem 1.5rem;
  font-weight: 500;
  font-size: 0.95rem;
  text-align: center;
  vertical-align: middle;
  border: none;
  border-radius: var(--btn-radius);
  cursor: pointer;
  transition: all var(--transition-normal);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  outline: none !important;
  text-transform: none;
  letter-spacing: 0.5px;
}

.btn:focus, .btn.focus {
  box-shadow: 0 0 0 0.2rem rgba(var(--primary-rgb), 0.25);
  outline: none;
}

.btn-sm {
  padding: 0.4rem 1rem;
  font-size: 0.875rem;
  border-radius: calc(var(--btn-radius) - 2px);
}

.btn-lg {
  padding: 0.875rem 2rem;
  font-size: 1.1rem;
  border-radius: calc(var(--btn-radius) + 2px);
}

.btn-primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: var(--btn-shadow);
  border: none;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(var(--primary-rgb), 0.3);
  color: white;
}

.btn-secondary {
  background: var(--gradient-secondary);
  color: white;
  box-shadow: 0 4px 10px rgba(var(--secondary-rgb), 0.25);
}

.btn-secondary:hover {
  background: linear-gradient(135deg, #345e91 0%, var(--secondary-color) 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(var(--secondary-rgb), 0.3);
  color: white;
}

.btn-accent {
  background: var(--gradient-accent);
  color: white;
  box-shadow: 0 4px 10px rgba(var(--accent-rgb), 0.25);
}

.btn-accent:hover {
  background: linear-gradient(135deg, #e69500 0%, var(--accent-color) 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(var(--accent-rgb), 0.3);
  color: white;
}

.btn-outline-primary {
  background-color: transparent;
  border: 1.5px solid var(--primary-color);
  color: var(--primary-color);
}

.btn-outline-primary:hover {
  background-color: var(--primary-color);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(var(--primary-rgb), 0.2);
}

/* Navbar */
.navbar {
  background-color: #fff;
  box-shadow: var(--header-shadow);
  padding: 1rem 0;
  transition: all var(--transition-normal);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
}

.navbar-scrolled {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  padding: 0.7rem 0;
}

.navbar-brand {
  font-weight: 700;
  display: flex;
  align-items: center;
  font-family: var(--font-primary);
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-right: 0.5rem;
}

.navbar-brand:hover {
  color: var(--primary-dark);
}

.navbar .navbar-nav {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  white-space: nowrap;
}

.nav-link {
  color: #444;
  font-weight: 500;
  padding: 0.5rem 0.75rem !important;
  position: relative;
  transition: color var(--transition-fast);
  white-space: nowrap;
  font-size: 0.95rem;
}

.nav-link:before {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 1rem;
  background-color: var(--primary-color);
  transition: width var(--transition-normal);
  opacity: 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--primary-color);
}

.nav-link:hover:before, .nav-link.active:before {
  width: calc(100% - 2rem);
  opacity: 1;
}

.nav-link.active {
  font-weight: 600;
}

/* Hero Section */
.hero-section {
  background-color: #fff;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.hero-section:before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(var(--primary-rgb), 0.05);
  top: -150px;
  left: -150px;
  z-index: 0;
}

.hero-section:after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(var(--accent-rgb), 0.05);
  bottom: -250px;
  right: -250px;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.hero-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: #333;
}

.hero-text {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: #666;
}

.hero-image {
  position: relative;
  z-index: 1;
}

/* Search Card */
.search-card {
  background-color: #fff;
  border-radius: var(--card-radius);
  box-shadow: var(--card-shadow);
  padding: 2rem;
  transition: all var(--transition-normal);
}

.search-card:hover {
  box-shadow: var(--card-shadow-hover);
}

/* Form Elements */
.form-control, .form-select {
  border-radius: var(--input-radius);
  padding: 0.675rem 1rem;
  border: 1px solid #e2e8f0;
  background-color: #fff;
  transition: all var(--transition-normal);
  font-size: 0.95rem;
  color: var(--text-color);
}

.form-control:focus, .form-select:focus {
  border-color: var(--primary-light);
  box-shadow: 0 0 0 0.2rem rgba(var(--primary-rgb), 0.15);
  outline: none;
}

.form-label {
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--text-color);
}

/* Kartlar */
.card {
  border: none;
  border-radius: var(--card-radius);
  box-shadow: var(--card-shadow);
  transition: all var(--transition-normal);
  overflow: hidden;
}

.card:hover {
  box-shadow: var(--card-shadow-hover);
}

.card-body {
  padding: 1.5rem;
}

/* Öğretmen Kartları */
.teacher-card {
  border-radius: var(--card-radius);
  box-shadow: var(--card-shadow);
  background-color: #fff;
  transition: all var(--transition-normal);
  overflow: hidden;
  height: 100%;
}

.teacher-card:hover {
  box-shadow: var(--card-shadow-hover);
  transform: translateY(-5px);
}

.teacher-card .card-img-top {
  height: 220px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.teacher-card:hover .card-img-top {
  transform: scale(1.05);
}

.teacher-card .card-body {
  padding: 1.5rem;
}

.teacher-card .card-title {
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.teacher-rating {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.teacher-rating .fas.fa-star,
.teacher-rating .fas.fa-star-half-alt {
  color: #FFD700;
  margin-right: 2px;
}

.teacher-rating .far.fa-star {
  color: #e2e8f0;
  margin-right: 2px;
}

.teacher-rate {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-left: 5px;
}

/* Feature Cards */
.feature-card {
  background-color: #fff;
  border-radius: var(--card-radius);
  box-shadow: var(--card-shadow);
  padding: 2rem;
  transition: all var(--transition-normal);
  height: 100%;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.feature-card:hover {
  box-shadow: var(--card-shadow-hover);
  transform: translateY(-5px);
}

.feature-card:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.05) 0%, rgba(var(--primary-rgb), 0) 50%);
  z-index: -1;
  transition: opacity var(--transition-normal);
}

.feature-card:hover:before {
  opacity: 0.8;
}

.feature-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: white;
  font-size: 1.5rem;
  transition: all var(--transition-normal);
  box-shadow: 0 5px 15px rgba(var(--primary-rgb), 0.3);
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 25px rgba(var(--primary-rgb), 0.4);
}

.feature-title {
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-color);
}

.feature-text {
  color: var(--text-muted);
  margin-bottom: 0;
}

/* Section Styles */
.section {
  padding: 5rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
  color: var(--text-color);
}

.section-title h2:after {
  content: '';
  position: absolute;
  width: 80px;
  height: 3px;
  background: var(--gradient-primary);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 3px;
}

.section-title p {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
  margin-top: 1.5rem;
}

/* Responsive Styles */
@media (max-width: 1199.98px) {
  h1 {
    font-size: 2.25rem;
  }
  h2 {
    font-size: 1.75rem;
  }
  .hero-title {
    font-size: 2.25rem;
  }
  .section {
    padding: 4rem 0;
  }
}

@media (max-width: 991.98px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.5rem;
  }
  .hero-title {
    font-size: 2rem;
  }
  .hero-section {
    padding: 4rem 0;
  }
  .navbar-collapse {
    background-color: white;
    padding: 1rem;
    border-radius: var(--card-radius);
    box-shadow: var(--card-shadow);
    max-height: 75vh;
    overflow-y: auto;
    z-index: 1050;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin: 0 1rem;
  }
  .navbar-nav .nav-link {
    padding: 0.75rem 1rem !important;
  }
  .navbar-nav .nav-link:hover, .navbar-nav .nav-link.active {
    background-color: rgba(var(--primary-rgb), 0.05);
  }
  .navbar-nav .nav-link:before {
    display: none;
  }
  .section {
    padding: 3rem 0;
  }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  .nav-link {
    padding: 0.5rem 0.5rem !important;
    font-size: 0.9rem;
  }
  
  .navbar-brand .logo-svg {
    max-width: 160px;
  }
  
  .btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
  }
  
  .navbar .btn {
    padding: 0.5rem 0.75rem;
    font-size: 0.85rem;
  }
  
  .navbar .btn i {
    margin-right: 0.3rem !important;
  }
}

@media (max-width: 767.98px) {
  h1 {
    font-size: 1.75rem;
  }
  h2 {
    font-size: 1.4rem;
  }
  .hero-title {
    font-size: 1.75rem;
  }
  .hero-text {
    font-size: 1rem;
  }
  .hero-section {
    padding: 3rem 0;
  }
  .section {
    padding: 2.5rem 0;
  }
  .section-title h2 {
    font-size: 1.5rem;
  }
  .feature-card, .counter-box {
    margin-bottom: 1.5rem;
  }
  .teacher-card .card-img-top {
    height: 180px;
  }
  .navbar-brand .logo-svg {
    max-width: 150px;
    height: 35px;
  }
  .navbar .btn {
    padding: 0.4rem 0.8rem;
    font-size: 0.85rem;
  }
  .navbar .nav-link {
    padding: 0.5rem 0.5rem !important;
    font-size: 0.9rem;
  }
}

@media (max-width: 575.98px) {
  h1 {
    font-size: 1.5rem;
  }
  h2 {
    font-size: 1.3rem;
  }
  .btn {
    padding: 0.5rem 1.25rem;
  }
  .hero-title {
    font-size: 1.5rem;
  }
  .hero-section {
    padding: 2rem 0;
  }
  .section {
    padding: 2rem 0;
  }
  .section-title h2 {
    font-size: 1.4rem;
  }
  .teacher-card .card-img-top {
    height: auto;
  }
  .feature-icon {
    width: 60px;
    height: 60px;
    font-size: 1.2rem;
  }
  .navbar-brand .logo-svg {
    max-width: 140px;
    height: 32px;
  }
  .navbar .btn {
    padding: 0.35rem 0.7rem;
    font-size: 0.8rem;
  }
  .navbar .btn i {
    font-size: 0.75rem;
    margin-right: 0.25rem !important;
  }
}

/* Badge Stilleri */
.badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  font-weight: 500;
  border-radius: var(--badge-radius);
  color: white;
  text-transform: none;
  letter-spacing: 0.5px;
}

.badge-primary {
  background: var(--gradient-primary);
  box-shadow: 0 3px 8px rgba(var(--primary-rgb), 0.3);
}

.badge-secondary {
  background: var(--gradient-secondary);
  box-shadow: 0 3px 8px rgba(var(--secondary-rgb), 0.3);
}

.badge-accent {
  background: var(--gradient-accent);
  box-shadow: 0 3px 8px rgba(var(--accent-rgb), 0.3);
}

.badge-success {
  background: var(--gradient-success);
  box-shadow: 0 3px 8px rgba(var(--success-rgb), 0.3);
}

/* Kategori Rozeti */
.category-badge {
  display: inline-block;
  padding: 0.4rem 0.8rem;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
  background-color: rgba(var(--primary-rgb), 0.1);
  color: var(--primary-color);
  font-size: 0.8rem;
  font-weight: 500;
  border-radius: 20px;
}

.city-badge {
  display: inline-block;
  padding: 0.4rem 0.8rem;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
  background-color: rgba(var(--secondary-rgb), 0.1);
  color: var(--secondary-color);
  font-size: 0.8rem;
  font-weight: 500;
  border-radius: 20px;
}

/* İstatistik Sayaçları */
.counter-box {
  text-align: center;
  padding: 2rem;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--card-radius);
  transition: all var(--transition-normal);
}

.counter-box:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.15);
}

.counter-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all var(--transition-normal);
}

.counter-box:hover .counter-icon {
  background-color: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.counter-value {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.counter-title {
  font-size: 1.1rem;
  font-weight: 500;
  opacity: 0.8;
}

/* Öğretmen Özellikleri */
.teacher-info-header {
  margin-bottom: 1rem;
}

.teacher-name {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.teacher-name a {
  color: var(--text-color);
  transition: color var(--transition-normal);
}

.teacher-name a:hover {
  color: var(--primary-color);
}

.teacher-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.teacher-meta-item {
  display: flex;
  align-items: center;
  margin-right: 1.5rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.teacher-meta-item i {
  color: var(--primary-color);
  margin-right: 0.5rem;
}

.teacher-price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-color);
}

.teacher-title {
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-size: 1rem;
}

.teacher-bio {
  color: var(--text-color);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.teacher-actions {
  margin-top: 1.5rem;
}

/* Flash Mesajları */
.flash-messages-container {
  position: fixed;
  top: 85px;
  right: 20px;
  z-index: 1040;
  max-width: 350px;
}

.flash-messages-container .alert {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive Footer */
.footer {
  background-color: #1e2a3a;
  color: #fff;
  padding: 4rem 0 2rem;
}

.footer-logo {
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
}

.footer-heading {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  position: relative;
}

.footer-heading:after {
  content: '';
  position: absolute;
  width: 40px;
  height: 2px;
  background-color: var(--primary-color);
  bottom: -8px;
  left: 0;
  border-radius: 2px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition-normal);
}

.footer-links a:hover {
  color: white;
  text-decoration: none;
}

/* Animasyonlar */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideInUp {
  from {
    transform: translateY(40px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* AOS Animasyonları için Ek Stiller */
[data-aos] {
  pointer-events: auto !important;
}

/* Öğretmen Listesi Kartları */
.teacher-list-card {
  transition: all var(--transition-normal);
}

.teacher-list-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--card-shadow-hover);
}

.teacher-avatar-wrapper {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all var(--transition-normal);
}

.teacher-list-card:hover .teacher-avatar-wrapper {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transform: scale(1.05);
}

.teacher-avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all var(--transition-normal);
}

.featured-badge {
  position: absolute;
  top: 0;
  right: 0;
  width: 30px;
  height: 30px;
  background-color: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.7rem;
  box-shadow: 0 3px 8px rgba(var(--accent-rgb), 0.5);
}

.online-badge {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 30px;
  height: 30px;
  background-color: var(--success-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.7rem;
  box-shadow: 0 3px 8px rgba(var(--success-rgb), 0.5);
}

/* Sayfa Başlıkları */
.page-header {
  margin-bottom: 3rem;
}

.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Filtre Kartı */
.filter-card .card-header {
  background: var(--gradient-primary);
  color: white;
  border: none;
  padding: 1rem 1.5rem;
}

.filter-card .card-title {
  margin-bottom: 0;
  font-size: 1.2rem;
}

/* Sidebar Kartı */
.ad-card {
  position: relative;
  overflow: hidden;
}

.ad-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
  font-size: 0.7rem;
  padding: 0.2rem 0.5rem;
  border-radius: 3px;
  z-index: 10;
}

/* Logo SVG Stilleri */
.logo-svg {
  max-width: 180px;
  height: 40px;
  transition: transform var(--transition-normal);
}

.navbar-brand:hover .logo-svg {
  transform: scale(1.05);
}

/* Navbar Butonları için Kompakt Stil */
.navbar .btn {
  padding: 0.5rem 1rem;
  white-space: nowrap;
}

.navbar .btn-outline-primary {
  background-color: transparent;
  border: 1.5px solid var(--primary-color);
  color: var(--primary-color);
  padding: 0.5rem 1rem;
}

.navbar .btn-primary {
  padding: 0.5rem 1rem;
}

/* Notification Icon and Dropdown Styles */
.dropdown-menu {
    padding: 0.5rem 0;
}

.dropdown-item {
    padding: 0.5rem 1rem;
}

.dropdown-notifications {
    width: 320px;
    max-height: 400px;
    overflow-y: auto;
    padding: 0;
}

.dropdown-notifications .dropdown-header {
    padding: 0.75rem 1rem;
    background-color: #f8f9fa;
    font-weight: 600;
}

.dropdown-notifications .notification-item {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
    white-space: normal;
    text-decoration: none;
    color: inherit;
    width: 100%;
    display: block;
    text-align: left;
    background-color: transparent;
}

.dropdown-notifications .notification-item:hover {
    background-color: rgba(var(--primary-rgb), 0.05);
}

.dropdown-notifications .notification-item.unread {
    background-color: rgba(var(--primary-rgb), 0.1);
}

.dropdown-notifications .notification-item .d-flex {
    width: 100%;
    align-items: flex-start;
}

.dropdown-notifications .notification-icon {
    width: 40px;
    min-width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(var(--primary-rgb), 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    margin-right: 10px;
    flex-shrink: 0;
}

.dropdown-notifications .notification-content {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    width: calc(100% - 50px);
}

.dropdown-notifications .notification-title {
    font-weight: bold;
    margin-bottom: 3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #333;
}

.dropdown-notifications .notification-message {
    font-size: 0.85rem;
    white-space: normal;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    color: #555;
    line-height: 1.3;
}

.dropdown-notifications .notification-time {
    font-size: 0.75rem;
    color: #6c757d;
    margin-top: 3px;
}

.notification-badge {
    position: absolute;
    top: 0;
    right: 0;
    transform: translate(25%, -25%);
} 