
#contact-baslik {
    display: flex;
    justify-content: center; /* Yatayda ortalar */
    align-items: center;     /* Dikeyde ortalar */
    height: 70px;           /* Yükseklik, başlığın dikeyde tam ortada olması için */
    /* background-image: url("../images/.jpg");  */
    /* box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.361);  */
    margin: auto;
}

#contact-baslik h1 {
    font-family: "Poppins", sans-serif;  /* Şık font */
    font-size: 3rem;            /* Başlık boyutu */
    color: #333;                /* Başlık rengi */
    font-weight: 600;           /* Başlık kalınlığı */
    text-transform: uppercase; /* Harfleri büyütür */
    letter-spacing: 2px;       /* Harfler arası mesafe */
    margin: 0;                  /* Varsayılan margin'i kaldır */
}

#contact-baslik img{
    width: 24px;
    margin-right: 0.7%;
    filter: brightness(0) saturate(100%)
}

/* --CONTACT BİLGİLERİ-- */
#iletisim-all {
    background: #fafafa;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    padding: 20px;
    margin-top: 2%;
    margin-bottom: 7%;
    box-shadow: 0px 0px 30px #d7d7d7aa;
}

#contact iframe {
    width: 100%;
    height: 400px;
    border: none;
    border-radius: 10px;
    box-shadow: 0px 0px 20px #b5b5b54a;
}

#contactSayfasi-bilgiler {
    margin-top: 20px;
    background-color: #ffffff88;
    padding: 20px;
    border-radius:10px ;
    box-shadow: 0px 0px 20px #b5b5b54a;
}

#iletisim-all h4 {
    font-family: "Poppins", sans-serif;
    font-size: 1.9rem;
    margin-bottom:4%;
}


#contact-iletisim p {
    font-family: "Poppins", sans-serif;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

#contact-icons {
    margin-top: 20px;
}

#contact-icons a {
    margin-right: 20px;
    color: #444;
    transition: color 0.3s;
    font-size: 1.9em;
}

/* Özel Sosyal Medya Hover Renkleri */
#facebook:hover {
    color: #1877f2;
  }
  
  #x:hover {
    color: #2e2e2e;
  }
  
  #instagram:hover {
    color: #e1306c;
  }
  
  #whatsapp:hover {
    color: #25d366;
  }
  
#contact-icons a:hover {
    transform: translateY(-3px);
}
.fa-2x {
    font-size: 1.5rem;
}

/* Duyarlı Tasarım */
@media (max-width: 768px) {
    .row {
        flex-direction: column;
    }

    .col-md-6 {
        width: 100%;
        margin-bottom: 20px;
    }

    #contact iframe {
        height: 200px;
    }
}

@media (max-width: 576px) {
    h4 {
        font-size: 1.25rem;
    }

    p {
        font-size: 0.95rem;
    }

    .fa-2x {
        font-size: 1.2rem;
    }
    
    #contact-baslik img{
        width: 18px;
        margin-right: 2%;
    }
}
@media (min-height: 800px) and (max-height: 1400px) {
  .footer {
    padding: 60px 0;  /* footer’ı uzat */
  }
}