/* ------------------------------------------------------ */
/* HAKKIMIZDA BÖLÜMÜ */
/* ------------------------------------------------------ */

.hakkimizda-title {
    font-size: 42px;
    color: #3A3A3A;
    padding-top: 50px;
    margin-bottom: 0px;
    font-weight: 700;
    text-align: center;
    width: 100%;
}

/* Genel layout */
.about-section {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 100px 80px;
    gap: 80px;
}

/* Sol taraf (yazılar) */
.about-left {
    flex: 1;
    max-width: 600px;
    margin: 0 auto;
}

/* Başlıklar & Metin */
.about-title {
    font-family: 'Inter18Bold';
    color: #d98700;
    font-size: 28px;
    margin-bottom: 12px;
}

.about-subtitle {
    font-family: 'Inter18Bold';
    color: #000;
    font-size: 34px;
    margin-bottom: 26px;
}

.about-text {
    font-family: 'Inter18Regular';
    color: #000;
    line-height: 1.6;
    font-size: 17px;
}


/* ------------------------------------------------------ */
/* CURSOR - VIDEO */
/* ------------------------------------------------------ */

.about-right-video *,
.about-right-video {
    cursor: auto !important; /* Video içi HER ŞEY normal cursor */
}

.sound-btn,
.fullscreen-btn,
.video-center-btn {
    cursor: pointer !important;  /* Ama butonlar el işaretine geçiyor */
}




/* ------------------------------------------------------ */
/* VİDEO ALANI */
/* ------------------------------------------------------ */

.about-right-video {
    width: clamp(400px, 50vw, 820px);
    height: auto;
    position: relative;
}

/* ---------------------------- */
/* SES BUTONU */
/* ---------------------------- */

.sound-btn {
    position: absolute;
    bottom: 25px;
    right: 25px;
    z-index: 20;
    background: rgba(0,0,0,0.6);
    color: white;
    border: none;
    border-radius: 20%;
    padding: 14px 14px;
    font-size: 22px;
    backdrop-filter: blur(4px);
    transition: .25s;
}

.sound-btn:hover {
    background: rgba(0,0,0,0.8);
}

/* ---------------------------- */
/* FULLSCREEN BUTONU */
/* ---------------------------- */

.fullscreen-btn {
    position: absolute;
    bottom: 25px;
    right: 95px;
    z-index: 20;
    background: rgba(0,0,0,0.6);
    color: white;
    border: none;
    border-radius: 20%;
    padding: 14px 18px;
    font-size: 22px;
    backdrop-filter: blur(4px);
    transition: .25s;
}

.fullscreen-btn:hover {
    background: rgba(0, 0, 0, 0.8);
}

/* ---------------------------- */
/* Orta buton */
/* ---------------------------- */

.video-center-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 64px;
    color: white;
    opacity: 0.9;
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 20;
    display: none; /* Başlangıçta gizli */
}

/* Hover efekti */
.video-center-btn:hover {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}


/* ------------------------------------------------------ */
/* EXPAND (BÜYÜTME) MODU */
/* ------------------------------------------------------ */

.video-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    display: none;
    z-index: 99998;
}

.about-right-video.expand {
    position: fixed !important;
    top: 43%;
    left: 50%;
    width: 90vw !important;
    max-height: 90vh;
    transform: translate(-50%, -50%);
    z-index: 99999;
    padding: 20px;
    border-radius: 20px;
}

.about-right-video.expand video {
    width: 100% !important;
    height: auto !important;
    border-radius: 18px;
}

.about-right-video.expand .sound-btn,
.about-right-video.expand .fullscreen-btn {
    z-index: 10000;
}




/* ------------------------------------------------------ */
/* SWIPER (ESKİ SLİDER) */
/* ------------------------------------------------------ */

.about-right {
    width: 420px;
    display: none;
}

.about-swiper {
    width: 100%;
    height: 550px;
    overflow: hidden;
    border-radius: 28px;
}

.about-swiper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}




/* ------------------------------------------------------ */
/* RESPONSIVE TASARIM */
/* ------------------------------------------------------ */


/* 1600px – Büyük ekranda optimal görünüm */
@media (max-width: 1600px) {
    .about-section {
        padding: 120px 60px;
        gap: 70px;
    }
}

/* 1400px */
@media (max-width: 1400px) {
    .about-section {
        padding: 110px 50px;
        gap: 60px;
    }
}

/* 1200px – Video üstte, yazılar altta */
@media (max-width: 1200px) {

    .about-section {
        flex-direction: column;
        text-align: center;
        padding: 100px 40px;
    }

    .about-right-video {
        width: 90vw;
        max-width: 950px;
        margin: 0 auto;
        order: -1;
    }

    .about-left {
        max-width: 700px;
        margin: 0 auto;
        text-align: center;
    }

    .about-title {
        font-size: 26px;
    }

    .about-subtitle {
        font-size: 32px;
    }

    .about-text {
        font-size: 16px;
        line-height: 1.7;
    }
}

/* 900px – Tablet & büyük telefon */
@media (max-width: 900px) {

    .about-section {
        flex-direction: column;
        text-align: center;
        padding: 80px 20px;
    }

    .about-right-video {
        width: 95vw;
        max-width: 700px;
    }

    .about-title {
        font-size: 24px;
    }

    .about-subtitle {
        font-size: 28px;
    }

    .about-text {
        font-size: 15px;
        line-height: 1.6;
    }
        .fullscreen-btn {
        right: 60px;
        display: none;
    }
}

/* 600px – Mobil */
@media (max-width: 600px) {

    .about-title {
        font-size: 22px;
    }

    .about-subtitle {
        font-size: 24px;
    }

    .about-text {
        font-size: 14px;
        line-height: 1.55;
    }

    .sound-btn,
    .fullscreen-btn {
        bottom: 15px;
        padding: 10px 12px;
        font-size: 19px;
    }

    .fullscreen-btn {
        right: 60px;
    }
     .about-right-video {
        width: 100vw !important;
        max-width: 100% !important;
        margin: 0 auto !important;
    }

    .about-right-video video {
        width: 100% !important;
    }
}
