/*! SVG Türkiye Haritası | CSS | MIT Lisans | dnomak.com */

:root {
  --renk: #e74c3c;
}

.svg-turkiye-haritasi {
  max-width: 1140px;
  margin: 0 auto;
  text-align: center;
}
.svg-turkiye-haritasi svg {
  width: 100%;
  height: auto;
}
.il-isimleri {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
}
.il-isimleri div {
  font-family: 'Open Sans';
  display: inline-block;
  background: var(--renk);
  color: #fff;
  padding: 8px 16px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}

/* Atmaca Grup yazısı için stiller */
.atmaca-grup-text {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  font-family: 'Open Sans', sans-serif;
  font-weight: bold;
  font-size: 18px;
  color: #ffffff;
  background: var(--renk);
  padding: 10px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 2px solid var(--renk);
  pointer-events: none;
  transition: opacity 0.3s ease;
}



/* İl animasyonları */
.il-animation {
  animation: ilGrow 2s ease-in-out;
}

@keyframes ilGrow {
  0% { transform: scale(1); }
  50% { transform: scale(1.4); }
  100% { transform: scale(1); }
}

/* İl ismi animasyonu */
.il-animasyon {
  animation: ilIsimGel 1.5s ease-in-out;
}

@keyframes ilIsimGel {
  0% { 
    opacity: 0; 
    transform: scale(0.5) translateY(20px); 
  }
  50% { 
    opacity: 1; 
    transform: scale(1) translateY(0); 
  }
  100% { 
    opacity: 0; 
    transform: scale(0.8) translateY(-20px); 
  }
}

#svg-turkiye-haritasi path {
  cursor: pointer;
  fill: #34495e;
  transition: all 0.3s ease;
}
#svg-turkiye-haritasi path:hover {
  fill: var(--renk);
  transform: scale(1.08);
  filter: brightness(1.2);
}
#guney-kibris {
  pointer-events: none;
}
