/* Ken Burns efekti için özel stil */
.vlt-fullpage-slider .vlt-section:first-child .vlt-section__ken-burn-background img {
    animation: kenBurnsEffect 1s ease-out forwards;
    -webkit-animation: kenBurnsEffect 1s ease-out forwards;
}

@keyframes kenBurnsEffect {
    0% {
        transform: scale(1.35);
    }
    100% {
        transform: scale(1);
    }
}

@-webkit-keyframes kenBurnsEffect {
    0% {
        -webkit-transform: scale(1.35);
    }
    100% {
        -webkit-transform: scale(1);
    }
}

/* Sayfanın ilk yüklenmesi için başlangıç ölçeği */
.vlt-fullpage-slider .vlt-section .vlt-section__ken-burn-background img {
    transform: scale(1.35);
    -webkit-transform: scale(1.35);
}

/* Büyük metin stili */
.larger-text {
    font-size: 1.25rem;
    line-height: 1.8;
    font-weight: 500;
    /* Masaüstünde yazı solda kalacak */
}

/* Genel yazı boyutu artışı */
[data-anchor="Home"] p {
    font-size: 1.25rem;
}

/* Logo boyutu ve hizalaması */
[data-anchor="Home"] img[alt="Logo"] {
    max-width: 500px;
    margin: 0 auto;
    display: block;
}

/* Mobil LinkedIn butonu - varsayılan olarak gizli */
.mobile-linkedin-btn {
    display: none;
}

/* Mobil LinkedIn butonu stili */
.mobile-linkedin-btn a {
    display: flex;
    align-items: center;
    justify-content: center;
   color: white;
    
    padding: 15px;
    border-radius: 50%;
    margin: 15px auto 0;
    width: 55px;
    height: 55px;
    text-decoration: none;
   
    overflow: hidden;
    z-index: 1;
}



.mobile-linkedin-btn a i {
    margin-right: 0;
    font-size: 22px;
    transition: transform 0.3s ease;
}

.mobile-linkedin-btn a:hover {
    transform: translateY(-3px) rotate(360deg);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    border-color: #0077B5;
}

.mobile-linkedin-btn a:hover:before {
    width: 100%;
}

.mobile-linkedin-btn a:hover i {
    transform: scale(1.2);
}

[data-anchor="About"] p {
    font-size: 1.15rem;
}

.vlt-project-excerpt p {
    font-size: 1.15rem;
}

/* Mobil için home içeriği düzenlemeleri */
@media only screen and (max-width: 767px) {
    /* Home bölümünün tamamını flex container yapma */
    [data-anchor="Home"] .vlt-section__vertical-align {
        position: relative;
        height: 100%;
    }

    /* İçerik alanının tüm boş alanı alması */
    [data-anchor="Home"] .vlt-section__content {
        position: absolute;
        top: 25%;
        transform: translate(0, -25%);
        width: 100%;
    }
    
    /* Home içeriğinin arka planı ve konumu */
    [data-anchor="Home"] .col-lg-5 {
        background: rgba(0, 0, 0, 0.7);
        padding: 20px;
        border-radius: 5px;
        width: 100%;
        max-width: 100%;
        padding-left: 15px;
        padding-right: 15px;
        margin: 0 auto;
    }
    
    /* Row ve container düzenlemeleri */
    [data-anchor="Home"] .row {
        margin-left: 0;
        margin-right: 0;
        width: 100%;
        text-align: center;
    }
    
    /* Container'ın margin ayarı */
    [data-anchor="Home"] .container {
        padding-left: 0;
        padding-right: 0;
        max-width: 100%;
    }
    
    /* Home içeriğinin arka planı ve konumu */
    [data-anchor="Home"] .col-lg-5 {
        background: rgba(0, 0, 0, 0.7);
        padding: 20px;
        border-radius: 5px;
        width: 100%;
        margin-bottom: 0;
        max-width: 100%;
        padding-left: 15px;
        padding-right: 15px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    /* İçerik alanının tüm boş alanı alması */
    [data-anchor="Home"] .vlt-section__content {
        flex-grow: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding-bottom: 0;
        height: 100%;
    }
    
    /* Logonun mobilde küçülmesi */
    [data-anchor="Home"] img[alt="Logo"] {
        max-width: 300px !important;
        margin: 0 auto;
        display: block;
    }
    
    /* Yazı boyutunun mobilde küçülmesi ve ortalanması */
    [data-anchor="Home"] .larger-text {
        font-size: 1rem;
        line-height: 1.5;
        text-align: center; /* Sadece mobilde ortalanması */
        margin-left: auto;
        margin-right: auto;
        width: 100%;
    }
    
    /* Mobil LinkedIn butonunu gösterme */
    .mobile-linkedin-btn {
        display: block;
    }
}

/* Küçük mobil cihazlar için ek düzenlemeler */
@media only screen and (max-width: 480px) {
    [data-anchor="Home"] img[alt="Logo"] {
        max-width: 250px !important;
    }
    
    [data-anchor="Home"] .larger-text {
        font-size: 0.9rem;
    }
    
    /* Daha küçük ekranlarda padding değişimi */
    [data-anchor="Home"] .vlt-section__content {
        padding-bottom: 0;
    }
}

/* Work bölümündeki partner loglolarının düzeni */
.work-partners {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: nowrap;
    width: 100%;
}

.work-partners li {
    width: 30%;
    max-width: 250px;
    display: flex;
    justify-content: center;
}

/* Mobil için work partner ayarları */
@media only screen and (max-width: 767px) {
    .work-partners {
        flex-direction: column;
    }
    
    .work-partners li {
        width: 80%;
        margin-bottom: 30px;
    }
    
    .work-partners li:last-child {
        margin-bottom: 0;
    }
}
