/* Content Items Stilleri */
.content-item {
  position: absolute;
  width: 25%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2;
}

#verimlilik-content {
  top: 170px;
  left: 25%;
}

#sunucu-content {
  top: 170px;
  left: 50%;
}
/*
#ozel-proje-content {
  top: 170px;
  left: 50%;
}

#iot-content {
  top: 170px;
  left: 75%;
}*/

.content {
  text-align: center;
  color: white;
  z-index: 3;
  transition: all 0.3s ease;
}

.content:hover {
  transform: scale(1.05);
}

.content:hover + .hover-content {
  opacity: 1;
  transform: translateY(0);
}

.content-item:hover {
  transform: scale(1.02);
}

.content-item:hover .hover-content {
  opacity: 1;
  transform: translateY(0);
}

/* Content Item Typography */
#verimlilik-content .content .verimlilik-subtitle {
  font-size: 1.2rem;
  font-weight: 300;
  margin-bottom: 0.5rem;
  opacity: 0.8;
}

#verimlilik-content .content .verimlilik-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

#verimlilik-content .content .verimlilik-description {
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.6;
  opacity: 0.9;
}

#sunucu-content .content .sunucu-subtitle {
  font-size: 1.2rem;
  font-weight: 300;
  margin-bottom: 0.5rem;
  opacity: 0.8;
}

#sunucu-content .content .sunucu-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

#sunucu-content .content .sunucu-description {
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.6;
  opacity: 0.9;
}
/*
#ozel-proje-content .content .ozel-proje-subtitle {
  font-size: 1.2rem;
  font-weight: 300;
  margin-bottom: 0.5rem;
  opacity: 0.8;
}

#ozel-proje-content .content .ozel-proje-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

#ozel-proje-content .content .ozel-proje-description {
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.6;
  opacity: 0.9;
}

#iot-content .content .iot-subtitle {
  font-size: 1.2rem;
  font-weight: 300;
  margin-bottom: 0.5rem;
  opacity: 0.8;
}

#iot-content .content .iot-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

#iot-content .content .iot-description {
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.6;
  opacity: 0.9;
}

/* Hover Content */
.hover-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
  pointer-events: none;
}

.hover-image {
  width: 90%;
  height: 85%;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.hover-image img {
  width: 90%;
  height: 80%;
  object-fit: cover;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hover-image:hover img {
  transform: scale(1.05);
}

/* Image Overlay */
.image-overlay {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  overflow: hidden;
}

.overlay-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(34, 1, 53, 0.9);
  color: white;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  z-index: 10;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Hover durumunda metin içeriklerini gizle */
.content-item:hover .content {
  opacity: 0;
  transform: scale(0.95);
  transition: all 0.3s ease;
}

/* Hover durumunda resmi göster */
.content-item:hover .hover-content {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  pointer-events: auto;
}

/* Responsive Design */
@media (max-width: 1400px) {
  .content-item {
    width: 100%;
    height: 25%;
  }
  
  #verimlilik-content { left: 0%; top: 0%; }
  #sunucu-content { left: 0%; top: 25%; }
}

@media (max-width: 1200px) {
  .content-item {
    padding: 1.5rem;
  }
  
  #verimlilik-content .content .verimlilik-title,
  #sunucu-content .content .sunucu-title {
    font-size: 2rem;
  }
  
  #verimlilik-content .content .verimlilik-subtitle,
  #sunucu-content .content .sunucu-subtitle {
    font-size: 1rem;
  }
}