/* Ek Responsive Düzeltmeler */

/* Video container düzeltmeleri - YENİ YAKLAŞIM */
.video-container {
    position: relative;
    width: 100%;
    margin-bottom: 20px;
    display: block;
    cursor: pointer;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.video-container video {
    width: 100% !important;
    height: auto !important;
    max-width: 100%;
    display: block;
    border-radius: 8px;
    z-index: 1;
}

/* Oynatma butonu */
.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    z-index: 2;
    pointer-events: none;
}

.play-button:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 55%;
    transform: translate(-50%, -50%);
    border-style: solid;
    border-width: 15px 0 15px 25px;
    border-color: transparent transparent transparent #c62828;
}

/* Video düzeltmeleri */
.about-img video {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    margin: 0 auto;
}

.about-img {
    margin-bottom: 20px;
}

/* Mobil cihazlar için genel düzeltmeler */
@media only screen and (max-width: 767px) {
    .banner-about-wrap.first,
    .banner-about-wrap.second {
        display: block;
        width: 100%;
        padding: 0 15px;
    }
    
    .banner-about-wrap .col-span-6 {
        width: 100%;
        max-width: 100%;
        margin-bottom: 30px;
        padding: 0;
    }
    
    .head-title h2 {
        font-size: 24px;
        margin-top: 20px;
        text-align: center;
    }
    
    .head-title p {
        text-align: left;
        font-size: 16px;
        line-height: 1.6;
    }
    
    .about-img {
        margin-bottom: 30px;
    }
    
    .about-img video {
        border-radius: 8px;
    }
    
    .line {
        margin: 15px auto 20px;
        display: block;
    }
    
    /* Mobil görünümde gereksiz boşlukları kaldır */
    .gap-20 {
        gap: 0 !important;
    }
}

/* Tablet cihazlar için düzeltmeler */
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .banner-about-wrap {
        gap: 30px !important;
        padding: 0 20px;
    }
    
    .banner-about-wrap .col-span-6 {
        width: 100%;
        max-width: 100%;
    }
    
    .about-img video {
        border-radius: 8px;
        max-height: 350px;
        width: 100%;
        object-fit: cover;
    }
    
    .head-title h2 {
        font-size: 28px;
        margin-top: 10px;
    }
    
    .head-title p {
        font-size: 16px;
        line-height: 1.6;
    }
    
    /* Tablet görünümde mobil versiyonu gizle */
    .banner-about-wrap.second.mobile {
        display: none !important;
    }
}

/* Grid düzeltmeleri */
@media only screen and (max-width: 640px) {
    .grid {
        display: block !important;
    }
    
    .banner-about-wrap.second {
        display: block !important;
    }
    
    /* Video konteyner düzeltmeleri */
    .about-img-long {
        width: 100% !important;
        height: auto !important;
        aspect-ratio: 16/9;
        object-fit: cover;
    }
    
    /* Başlık ve metin düzeltmeleri */
    .head-title h2 {
        font-size: 22px;
        text-align: center;
        margin-bottom: 10px;
    }
    
    /* Mobil görünümde gereksiz tekrar eden içerikler */
    .banner-about-wrap.second.mobile {
        display: none !important;
    }
    
    /* Ekip bölümü düzeltmeleri */
    .team-block-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .team-block-item {
        width: 100%;
        max-width: 300px;
        margin: 0 auto 20px;
    }
}

/* Genel video düzeltmeleri */
video.about-img-long {
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
