/* Temel ayarlar */
body, html {
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

#bgVideo {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: -2;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.5;
    background-image: url('overlay.png'); /* PNG dosyasının yolunu ekleyin */
    background-repeat: repeat;
    z-index: -1; /* Bu değer ile diğer içeriklerin arkasında veya önünde olmasını ayarlayabilirsiniz */
}

.mobile-container {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 10;
    margin-top: 10px;
    display: none;
}

.iframe-container-mobile {
    width: 80%;
    height: 152px;
    margin-top: 10px;
    display: none;
    justify-content: center;
}

.columns {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    height: 100vh;
    padding: 0 20px;
}

.left-column{
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: space-around;
}

.left-column {
    align-items: center;
    margin-top: 150px;
}

.right-column {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    margin-top: 20px;
    margin-bottom: 100px;
}

.button-container {
    display: flex;
    flex-direction: row;
    gap: 30px;
}

.button {
    width: 120px; 
    padding: 0.8rem;
    border: none;
    border-radius: 5px;
    background: linear-gradient(to right, purple, orange);
    color: white;
    font-size: 2.4rem;
    cursor: pointer;
    text-align: center;
}

.iframe-container {
    margin-right: 20px;
    height: 152px;
    margin-top: 18px;
    display: flex;
    justify-content: space-between;
}

.button-container button {
    transition: opacity 0.3s ease;
    opacity: 0.8;
}

.iframe-container iframe {
    transition: opacity 0.3s ease;
    opacity: 0.8;
}

.iframe-container iframe:hover {
    opacity: 1;
}

.button-container button:hover {
    opacity: 1;
}

.site-footer {
    position: fixed;
    bottom: 0;
    width: 99%;
    color: white;
    text-align: right;
    font-size: 12px;
    font-family: "Jaro", sans-serif;
}

@media (max-width: 1000px) {
    #bgVideo {
        display: none;
    }

    body, html {
        height: 100%;
        margin: 0;
        padding: 0;
        overflow: hidden;
        background-image: url('./bgimage_r.png');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    .mobile-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        position: relative;
        z-index: 1;
        background: transparent;
    }

    .columns {
        display: none;
    }

    .left-column {
        display: none;
    }

    .right-column {
        display: none;
    }

    .button-container {
        flex-direction: column;
        margin: 0;
        margin-top: 10px;
    }

    .iframe-container-mobile {
        width: 80%;
        height: 152px;
        margin-top: 5px;
        display: flex;
        justify-content: center;
    }

    .button {
        border-radius: 8px;
    }
}
