/* Fontlar */
body {
  font-family: 'Inter', 'Noto Sans', sans-serif;
}

/* Header */
.header {
  background-color: #ffffff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 50;
}

/* Navigation */
.main-nav a {
  color: #374151;
  text-decoration: none;
  transition: all 0.3s ease;
}

.main-nav a:hover {
  text-decoration: underline;
  color: #1d4ed8;
}

/* Navigation Links */
.nav-link {
  @apply flex items-center gap-3 px-4 py-3 rounded-lg text-gray-400 hover:bg-zinc-800 hover:text-white transition-colors text-sm font-medium;
}

.nav-link.active {
  @apply bg-blue-600 text-white;
}

/* Tabs */
.tab {
  @apply text-sm pb-3 px-4 text-gray-400 border-b-2 border-transparent hover:border-white hover:text-white transition-colors;
}

.tab.active {
  @apply text-white border-b-2 border-blue-500;
}

/* Hero Section */
.hero-section {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  min-height: 380px;
  background-image: linear-gradient(rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.6)), url("https://lh3.googleusercontent.com/aida-public/AB6AXuBCC5nWBdmY8eqk7RCElPmnVFYjigaPQQeIyF5EJcZtB__vjZEHDf3PNJqm_p2P0dahgs-FxeStZcLgJZjI6OMXIfo_9NCJFvzIBJ18UE2FE8b5L-VBFVdJQkl6aJk5PVKF6wCGuuPSr7Sv66fWe7-GJM9j6j55co6L_0AtcY4w8pJYEZUzx6P3H8o4dtkUSOlHCHUmGDMxd8jjdT4slUnKVDDg2vmvyzOaHKUyMCWDjcMbBgOAXvUgT9XFolgwuMSSDQZJTnSyAio");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 1rem;
}

/* CTA Buttons */
.cta-primary {
  background-color: #2563eb;
  color: #fff;
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  font-weight: 600;
  transition: background 0.3s ease;
}

.cta-primary:hover {
  background-color: #1e40af;
}

.cta-secondary {
  background-color: #dce8f3;
  color: #121416;
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  font-weight: 600;
  transition: background 0.3s ease;
}

.cta-secondary:hover {
  background-color: #c6dff1;
}

/* Bölüm Başlıkları */
.section-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

/* Kartlar */
.card {
  background-color: #ffffff;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
  text-decoration: none;
}

.card:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.card-img {
  width: 100%;
  height: 10rem;
  object-fit: cover;
}

.card-title {
  font-size: 1.125rem;
  font-weight: 600;
}

.card-desc {
  font-size: 0.875rem;
  color: #6b7280;
  margin-top: 0.5rem;
}

/* Logo Icon */
.logo-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
  /* Alt hizalama için: */
  vertical-align: middle;
  display: inline-block;
}

/* Map Button */
.map-btn {
  @apply w-9 h-9 flex items-center justify-center bg-zinc-800/80 hover:bg-zinc-700 rounded shadow-md text-white transition;
}

/* Badge */
.badge {
  @apply px-2 inline-flex text-xs leading-5 font-semibold rounded-full;
}

/* Marker Dot */
.marker-dot {
  @apply w-3 h-3 rounded-full shadow-md border-2 border-white absolute;
}

@keyframes marquee {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

.animate-marquee {
  animation: marquee 30s linear infinite;
}


