body {
  font-family: 'futura-pt', 'Segoe UI', 'Arial', sans-serif !important;
  background: #f7f6ee;
}

.a1 {
  position: absolute;
  z-index: 999999999999;
  width: 100%;
}

.a2 {
  width: 100% !important;
  height: 50% !important;
  object-fit: cover;
  z-index: 999999999;
  position: absolute;
  background-image: url(images/bg.png);
  background-position: 10% 220%;

  background: #efefbb;
  background: linear-gradient(to top, #ffffff00, #315fc7);
}

.a3 {
  background: #F5F5F5;
  position: relative;
  top: -90px;
  width: 90%;
  margin: 0 auto;
}


.w-35 {
  width: 35% !important;
}

.w-50px {
  width: 150px;
}

.color-1 {
  color: #FAF5F2 !important;
}

.color-2 {
  color: #2C2C2C !important;
}

.color-3 {
  color: #2C2C2C !important;
  text-decoration: none;

}

.color-3:hover {
  color: #090F8C !important;
  text-decoration: underline;
}

.fs-14 {
  font-size: 14px;
}

.fs-12 {
  font-size: 12px;
}

.mb-color-1 {
  border-color: #FAF5F2 !important;
}

.m0 {
  margin: 0 auto;
}

.card {
  filter: grayscale(0);
}

.card:hover {
  filter: grayscale(1);
}





.gallery-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.gallery-item {
  margin-bottom: 30px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.page-title {
  text-align: center;
  margin-bottom: 50px;
  color: #343a40;
  font-weight: 300;
}

/* Zoom overlay styles */
.zoom-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1050;
}

.zoom-overlay img {
  max-width: 70%;
  max-height: 90%;
  object-fit: contain;
  border-radius: 8px;
  cursor: default;
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 30px;
  cursor: pointer;
  z-index: 1051;
  transition: opacity 0.3s ease;
}

.close-btn:hover {
  opacity: 0.7;
}

.nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  font-size: 40px;
  cursor: pointer;
  user-select: none;
  z-index: 1051;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.nav-arrow:hover {

  transform: translateY(-50%) scale(1.1);
}

.nav-arrow.prev {
  left: 30px;
}

.nav-arrow.next {
  right: 30px;
}

.image-counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  background: rgba(0, 0, 0, 0.7);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  z-index: 1051;
}




/* WhatsApp Butonu Stilleri */
.whatsapp-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 999999;
  transition: all 0.3s ease;
  text-decoration: none;
  cursor: pointer;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
  background: #128C7E;
}

.whatsapp-btn svg {
  width: 35px;
  height: 35px;
  fill: white;
  transition: transform 0.3s ease;
}

.whatsapp-btn:hover svg {
  transform: rotate(10deg);
}

/* Animasyon efekti */
.whatsapp-btn::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #25D366;
  animation: pulse 2s infinite;
  z-index: -1;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.2);
    opacity: 0.7;
  }

  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

/* Tooltip (isteğe bağlı) */
.whatsapp-btn .tooltip {
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translateY(-50%);
  background: #333;
  color: white;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 14px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.whatsapp-btn .tooltip::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: #333;
}

.whatsapp-btn:hover .tooltip {
  opacity: 1;
  visibility: visible;
}

/* Mobil uyumluluk */
@media (max-width: 768px) {
  .whatsapp-btn {
    bottom: 20px;
    right: 20px;
    width: 55px;
    height: 55px;
  }

  .whatsapp-btn svg {
    width: 30px;
    height: 30px;
  }
}



.a45 {
    background: #2f99d5;
    color: #f7f6ee;
    border-radius: 60px;
    border: 1px solid black;
}

.a46 {
    background: #2f99d5;
    color: white !important;
    width: 100%;
    margin-top: 10px;
    margin-bottom: 10px;
}

.a47 {
position: absolute; z-index: 9999; bottom: -8px; 
}

 
a {
  text-decoration: none;
  color: #ffffff;
}