/*
Theme Name: Neve Child
Template: neve
Version: 1.0
*/
/* === SITE ÜST DENIM HEAD (HEADER'DAN BAĞIMSIZ) === */
.site-top-denim{
  width: 100%;
  height: 50px;

  background-image: url("/wp-content/uploads/denim-head.jpg");
  background-repeat: repeat-x;
  background-position: left center;
  background-size: auto 50px;

  display: block;
  line-height: 0;
  font-size: 0;
  overflow: hidden;
}

/* Admin bar varsa üstte kalsın (giriş yapınca) */
body.admin-bar .site-top-denim{
  margin-top: 32px;
}
@media (max-width: 782px){
  body.admin-bar .site-top-denim{
    margin-top: 46px;
  }
}

/* Tablet */
@media (max-width: 1024px){
  .site-top-denim{
    height: 38px;
    background-size: auto 38px;
  }
}
/* Mobil */
@media (max-width: 600px){
  .site-top-denim{
    height: 28px;
    background-size: auto 28px;
  }
}
/* === HİZMETLER SAYFASI (ID 81) === */
body.page-id-81{
  position: relative;
}

/* Sayfa içeriğini üste al */
body.page-id-81 .site-content,
body.page-id-81 .nv-content-wrap{
  position: relative;
  z-index: 2;
}

/* Arka plan mezura – EN ALT KATMAN 
body.page-id-81::after{
  content: "";
  position: absolute;

  right: 0;
  bottom: 0;

  width: 350px;
  height: 432px;

  background-image: url("/wp-content/uploads/mezura.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right bottom;

  pointer-events: none;
  z-index: 0;       
  opacity: 0.35;
}

@media (max-width: 600px){
  body.page-id-81::after{
    width: 180px;
    height: 220px;

    right: -20px;     
    bottom: -20px;

    opacity: 0.35;   
  }
}*/
/* SABİT SAĞ KENAR İKONLARI */
/* Sabit ikon alanı */
.fixed-icons {
    position: fixed;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* Linklerde çerçeve vs olmasın */
.fixed-icons a {
    display: block;
    border: none;
    background: none;
    box-shadow: none;
    padding: 0;
}

/* PNG ikon ayarları */
.fixed-icons img {
    width: 44px;          /* ikon büyüklüğü */
    height: auto;
    display: block;
    border: none;
    outline: none;
    box-shadow: none;
    background: transparent;
    transition: transform 0.2s ease;
}

/* Hover efekti (sadece büyüsün, çerçeve yok) */
.fixed-icons img:hover {
    transform: scale(1.1);
}

/* Mobil uyum */
@media (max-width: 768px) {
    .fixed-icons {
        right: 10px;
    }

    .fixed-icons img {
        width: 36px;
    }
}
.footer-contact-list{
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-contact-list .fcl-item{
  display: flex;
  align-items: center;
  gap: 10px;

  text-decoration: none;
  line-height: 1.3;
}

.footer-contact-list .fcl-ico{
  width: 18px;
  height: 18px;
  object-fit: contain;
  display: block;
  flex: 0 0 18px;
}

.footer-contact-list .fcl-text{
  font-size: 15px;
}

/* Hover (isteğe bağlı) */
.footer-contact-list .fcl-item:hover{
  opacity: 0.85;
}


