/*
Theme Name: Avngart Theme
Author: byBaykan
Description: Example
Version: 1.0
Text Domain: avngart
*/

/* Genel stil ayarları */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    font-family: Arial, sans-serif;
}

.fullscreen-video {
    position: relative;
    width: 100%;
    height: 100vh; /* Ekran yüksekliğine göre video */
    overflow: hidden;
}

.fullscreen-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1; /* Video'nun z-index'ini ayarlayarak diğer içeriklerin video üzerinde görünmesini sağlıyoruz */
}

.controls {
    position: absolute;
    bottom: 30px; /* Sağ alt köşeye yerleştirir */
    right: 30px;
    z-index: 10;
    display: flex;
    gap: 10px;
}

button {
    background-color: transparent;
    border: none;
    cursor: pointer;
}

button img {
    width: 40px;  /* İkonun boyutunu ayarlayabilirsiniz */
    height: 40px;
    transition: all 0.3s ease;  /* Geçiş efekti */
}

button:hover img {
    opacity: 1.8;  /* İkonun üzerine gelindiğinde şeffaflık */
    transform: scale(1.5);  /* Boyutlandırma */
}


#toggleFullscreen{display: none;}

.footer {
    font-size: 1rem;
    position: fixed;  /* absolute yerine fixed kullanarak footer'ı sabitleyebiliriz */
    bottom: 20px;  /* Alt kısmı biraz daha yukarıda tutmak için */
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 100; /* Z-index ile footer'ı diğer içeriklerden öncelikli hale getirebiliriz */
}

.email-link {
    display: inline-block;
    width: 100px;
    height: 50px;
    background-image: url('images/email.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    text-indent: 9999px;
    z-index: 10000;
    transition: all 0.3s ease;  /* Geçiş efekti */
}


.email-link:hover{
    opacity: 1.8;  /* İkonun üzerine gelindiğinde şeffaflık */
    transform: scale(1.2);  /* Boyutlandırma */
}

/* Mobil ekranlar için stil */
@media (max-width: 768px) {
    .mute-btn i {
        font-size: 30px !important;  /* İkonun boyutunu büyütüyoruz */
        transition: transform 0.3s ease; /* Hover için büyütme efekti */
    }
    .email-link {
        display: inline-block;
        width: 90px;  /* Buton genişliği */
        height: 45px;  /* Buton yüksekliği */
    }
    .footer {
        font-size: 0.8rem;
    }
    
}
@media (max-width: 768px) {
    .fullscreen-video {
        height: 70vh; /* Yüksekliği ekranın yarısı kadar yapalım */
    }
}