/*
Custom CSS for TemplateMo 561 Purple Buzz

https://templatemo.com/tm-561-purple-buzz

*/


/* HERO STYLES */
.hero-hero{
  position: relative;
  width: 100%;
  min-height: 520px; /* 520-800 arası deneyebilirsin (desktop görünümler) */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Arka plan görseli - bulanıklaştırılmış */
.hero-bg{
  position: absolute;
  inset: 0;
  background-image: url('assets/hero-1920x800.jpg');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  transform-origin: center;
  /* Küçük büyütme; blur etkisini daha güzel göstermek için */
  transform: scale(1.06);
  filter: blur(6px) saturate(105%);
  will-change: transform, filter;
  z-index: 1;
}

/* Yarı saydam renk katmanı (yazının okunmasını sağlar) */
.hero-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.35) 0%, rgba(255,255,255,0.55) 60%);
  /* Alternatif: koyu overlay istersen rgba(0,0,0,0.35) kullan */
  z-index: 2;
}

/* İçerik (metin, buton) - keskin kalmalı */
.hero-content{
  position: relative;
  z-index: 3;
  max-width: 1100px;
  padding: 48px 20px;
  text-align: left;
  color: #0f172a; /* koyu metin, açık overlay ile okunur */
}

/* Başlık ve ön metin */
.hero-content h1{
  font-size: clamp(1.6rem, 3.4vw, 3.2rem);
  line-height: 1.05;
  margin: 0 0 12px;
  font-weight: 700;
}

.hero-content .lead{
  font-size: clamp(1rem, 1.6vw, 1.125rem);
  color: #374151;
  margin: 0 0 18px;
}

/* CTA buton */
.btn-cta{
  display: inline-block;
  background: #0284c7;
  color: #fff;
  padding: 12px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 6px 18px rgba(2,132,199,0.18);
}

/* Responsive ayarlar */
@media (max-width: 900px){
  .hero-hero{ min-height: 420px; }
  .hero-content{ padding: 28px 16px; }
  .hero-content h1{ font-size: clamp(1.3rem, 6vw, 2rem); }
}

/* Performans ipuçları (isteğe bağlı) */
/* 1) Mobil için daha küçük bir görsel kullan */
@media (max-width: 600px){
  .hero-bg{
    background-image: url('assets/hero-1080x600.jpg'); /* opsiyonel: mobil optimize */
    transform: scale(1.02);
    filter: blur(5px) saturate(100%);
  }
}
/* Marka başlığı daha güçlü */
.navbar-brand .h4 {
    font-weight: 700;
    font-size: 1.5rem;
}

/* Menü butonları daha belirgin */
.navbar-nav .nav-link {
    font-weight: 500;
    color: #183f45 !important;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.navbar-nav .nav-link:hover {
    background-color: #c5d3f0	;
    color: #fff !important;

}

/* Navbar gölgesi ve arka plan */
#main_nav {
    background-color: #ffffff;
    box-shadow: 0px 3px 8px rgba(0,0,0,0.1);
}
.hizmetler-blok {
    text-align: center;      /* Ortalar */
    padding: 40px 0;         /* Üst-alt boşluk */
    background-color: #f8f9fa; /* İsteğe göre blok rengi */
}

.hizmetler-baslik {
    color: #0d6efd;          /* Başlık rengi, mavi örnek */
    font-weight: bold;        /* Kalın */
    font-size: 2.5rem;        /* Büyük başlık */
}
.hizmetler-blok {
    text-align: center;
    padding: 40px 0;
    background-color: #f8f9fa;
    position: relative;
}

.ust-serit {
    height: 5px;           /* Şeridin kalınlığı */
    width: 100%;           /* Bloğun genişliği */
    background-color: #0d6efd; /* Şerit rengi */
    position: absolute;
    top: 0;
    left: 0;
}

.image-container {
    width: 80%;               /* Resmin kapsayıcı genişliği */
    max-width: 1200px;        /* Maksimum genişlik */
  }

  .image-container img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;                 /* Köşeleri yuvarlatır */
    box-shadow: 0 10px 25px rgba(0,0,0,0.3); /* Hafif gölge efekti */
    object-fit: cover;                   /* Kırpmadan kapsar */
    filter: brightness(1.05) contrast(1.05); /* Hafif parlaklık ve kontrast */
    transition: transform 0.5s ease, filter 0.5s ease;
  }

  .image-container img:hover {
    transform: scale(1.05);             /* Hafif büyüme efekti */
    filter: brightness(1.15) contrast(1.1); /* Hover filtre efekti */
  }