﻿.circle-box {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    transition: 0.3s;
    padding: 10px;
    margin: auto;
}

    .circle-box:hover {
        transform: scale(1.05);
        filter: brightness(1.1);
    }

.video-title {
    margin-top: 10px;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
}

#videoPlayerContainer {
    text-align: center;
}

#videoPlayer {
    width: 100%;
    max-width: 700px;
    border-radius: 8px;
    background-color: black;
}

/* Video modal - ortalı, boşluklu, responsive */
/* Video modal - içeriğe göre daralan, ortalı */
#videoModal .modal-dialog {
    margin: 30px auto;
    max-width: fit-content;
    width: fit-content;
    display: flex;
    align-items: center;
    min-height: calc(100% - 60px);
}

#videoModal .modal-content {
    width: fit-content;
    max-width: 90vw;
    max-height: 85vh;
    overflow: hidden;
    border-radius: 12px;
}

#videoModal .modal-header {
    flex-shrink: 0;
}

#videoModal .modal-body {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

#videoModal video {
    width: auto;
    height: auto;
    max-width: 90vw;
    max-height: calc(85vh - 56px);
    display: block;
}

@media (max-width: 575px) {
    #videoModal .modal-dialog {
        margin: 20px auto;
        max-width: 92%;
        width: 92%;
        min-height: calc(100% - 40px);
    }

    #videoModal .modal-content {
        width: 100%;
        max-width: 100%;
        max-height: 75vh;
    }

    #videoModal video {
        width: 100%;
        max-width: 100%;
        max-height: calc(75vh - 50px);
    }
}

.circle-image {
    width: clamp(80px, 22vw, 150px);
    height: clamp(80px, 22vw, 150px);
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #78acd3;
    cursor: pointer;
    transition: transform 0.3s;
    display: block;
    margin: 0 auto;
}

    .circle-image:hover {
        transform: scale(1.05);
    }

.video-thumbnail-wrapper {
    position: relative;
    display: block;
    width: 100%;
}

.play-icon {
    position: absolute;
    bottom: 20px; /* ↓ ikon biraz daha yukarı */
    right: 30px; /* ← ikon biraz daha içeri */
    color: white;
    background-color: rgb(0 0 0 / 20%);
    border-radius: 50%;
    padding: 8px;
    font-size: 22px;
    pointer-events: none;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

.video-title {
    font-size: 16px;
    font-weight: 500;
}


/* Buton stili */
.contact_bt1 {
    display: inline-block;
    padding: 15px 30px; /* Butonları büyütmek için padding artırıldı */
    font-size: 18px; /* Yazı boyutu artırıldı */

    text-align: center;
    text-decoration: none;
    color: #fff;
    background-color: #007bff; /* Buton arka plan rengi */
    border-radius: 25px; /* Yuvarlak köşeler */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Hafif gölge efekti */
    transition: background-color 0.3s ease, transform 0.3s ease;
}

    /* Aktif buton stili */
    .contact_bt1.active {
        background-color: #0056b3; /* Aktif buton arka plan rengi */
    }

    /* Buton hover efekti */
    .contact_bt1:hover {
        background-color: #0056b3; /* Hover arka plan rengi */
        transform: translateY(-2px);
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    }

    /* Buton içindeki bağlantı stilini kaldırma */
    .contact_bt1 a {
        color: inherit;
        text-decoration: none;
    }

    .contact_bt1.active a {
        color: inherit;
        text-decoration: none;
    }