body,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Lato", sans-serif;
}

body,
html {
    height: 100%;
    color: rgb(0, 0, 0);
    line-height: 1.8;
}

/* Create a Parallax Effect */
.bgimg-1,
.bgimg-2,
.bgimg-3 {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* First image (Logo. Full height) */
.bgimg-1 {
    background-image: url(resimler/shutterstock_593902823.jpg);
    min-height: 100%;
}

/* Second image (Portfolio) */
.bgimg-2 {
    background-image: url("https://www.w3schools.com/w3images/parallax2.jpg");
    min-height: 400px;
}

/* Third image (Contact) */
.bgimg-3 {
    background-image: url("https://www.w3schools.com/w3images/parallax3.jpg");
    min-height: 400px;
}

.w3-wide {
    letter-spacing: 10px;
}

.w3-hover-opacity {

    cursor: pointer ;
}

/* Turn off parallax scrolling for tablets and phones */
@media only screen and (max-device-width: 1600px) {

    .bgimg-1,
    .bgimg-2,
    .bgimg-3 {
        background-attachment: scroll;
        min-height: 400px;
    }
}
/* Animasyonlu görünümler */
.show {
display: block; /* Görünür hale getir */
opacity: 1; /* Görünürlük */
transform: translateY(0); /* Y ekseninde kaydırma */
}

.hide {
opacity: 0; /* Görünmez hale getir */
transform: translateY(-20px); /* Yukarı kaydır */
}

/*Hoşgeldiniz resmi*/
.bgimgn-1 {
    min-height: 100vh; /* İstersen kaldırabilirsin */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .custom-height {
    max-height: 660px; /* Maksimum yüksekliği 800px */
    object-fit: cover; /* Görseli düzgün ölçekle */
  }
  /* Navbar şeffaf */
  .navbar.bg-transparent {
    background-color: rgba(255, 255, 255, 0.7) !important; /* Şeffaf arka plan */
    backdrop-filter: blur(5px); /* Arka plan bulanıklaştırma */
  }
  iframe {
    display: inline-block;
    margin-left: auto;
  }
  /*sekmeler*/
  .nav-tabs .nav-link {
    color: #4CAF50;
    border: 1px solid transparent;
    transition: background-color 0.3s ease;
}

.nav-tabs .nav-link.active {
    background-color: #4CAF50;
    color: #fff;
    border-color: #4CAF50;
}

/* Yetenekler bölümü */ 
.card {
    width: 95%; /* Kartları biraz küçült */
    max-width: 250px; /* Maksimum genişliği azalt */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 16px; /* Daha yumuşak köşeler */
    transition: transform 0.3s ease;
}

.card:hover {
    transform: scale(1.03); /* Hover efektini daha yumuşak yap */
}

/* Kart Görselleri */
.card-img-top {
    width: 100%; /* Görsellerin kart boyutuna tam uyumlu olmasını sağlar */
    height: auto; /* Yüksekliğin orantılı olarak ayarlanmasını sağlar */
    object-fit: cover; /* Görsellerin kesilmeden tam olarak alanı kaplamasını sağlar */
}

/* Kart İkonları */
.skill-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 10px;
}

/* Kart Hover Efekti */
.card:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

/* Mobil cihazlarda sadece bir kart gözükmesini sağla */
@media (max-width: 576px) {
    .col-6 {
        flex: 0 0 100%; /* Telefonlarda yalnızca 1 kart görünmesini sağlar */
    }
}

/* Orta boyutlu ekranlar (tabletler) ve üzeri için kart sayısını artır */
@media (min-width: 768px) {
    .col-md-3 {
        flex: 0 0 25%; /* Tabletlerde 4 sütun görünmesi */
    }
}

@media (min-width: 992px) {
    .col-lg-2 {
        flex: 0 0 20%; /* Daha geniş ekranlarda 5 sütun görünmesi */
    }
}
/*sertifitikalar*/
.zoomable {
    cursor: zoom-in;
    transition: transform 0.3s ease;
}

.zoomable:active {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}
/* İletişim Bölümü */
.contact-form {
    background: #f8f9fa;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0px 15px 40px rgba(0, 0, 0, 0.1);
}

.contact-form input,
.contact-form textarea {
    border-radius: 5px;
    border: 1px solid #ddd;
    margin-bottom: 20px;
    padding: 15px;
    width: 100%;
}

.contact-form button {
    background: #6c757d;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    width: 100%;
    cursor: pointer;
}

.contact-form button:hover {
    background: #5a6268;
}

.contact-info {
    padding: 40px;
    background: #007bff;
    color: white;
    border-radius: 10px;
    box-shadow: 0px 15px 40px rgba(0, 0, 0, 0.1);
}

.contact-info i {
    font-size: 24px;
}

.contact-info p {
    font-size: 16px;
}

.contact-info a {
    color: #f8f9fa;
}