/* Temel sıfırlamalar */
@font-face {
    font-family: Gotham;
    src: url(Gotham.woff2);
}

body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden; /* Kaydırma çubuklarını gizle */
    font-family: Gotham;
}

.reklam-ekrani-container {
    width: 100%;
    height: 100%;
    position: relative;
    background-color: transparent;
	z-index: 2;
}

/* Yükleniyor... ekranı için basit stil */
.loading-screen {
    color: white;
    font-size: 2em;
    text-align: center;
    padding-top: 40vh;
}

.slayt {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0; /* Başlangıçta tüm slaytları gizle */
    transition: opacity 1.2s ease-in-out; /* Yumuşak geçiş efekti */
}

.slayt.aktif {
    opacity: 1; /* Sadece aktif olan slaytı göster */
    z-index: 1; /* Aktif slayt üstte kalsın */
}

/* Sadece resimler için genel kural */
.slayt img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
}

/* Tüm videolarımız için ortak olan
   ve ekranı kaplamalarını sağlayan temel kurallar:
*/
.ana-video,
.arkaplan-video {
    width: 100%;
    height: 100%;
    object-fit: fill; /* Görüntüyü bozmadan/ezmeden ekranı kapla */
}

/* Sadece "arkaplan video" (tip: 'uyeler') için 
   gerekli olan ek stiller (bulanıklaştırma, konumlandırma vb.)
*/
.arkaplan-video {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1; /* Yazıların arkasında kalacak */
    filter: blur(5px) brightness(0.7); /* Arkaplanı bulanıklaştır ve karart */
}

/* Slayt başlığı için basit bir stil */
.slayt-baslik {
    position: absolute;
    bottom: 50px;
    left: 50px;
    font-size: 3em;
    color: white;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 10px 20px;
    border-radius: 10px;
}


.on-plan-icerik {
    position: absolute;
    z-index: 2; /* Videonun önünde olacak */
    color: white;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.on-plan-icerik h2 {
    font-size: 4em;
    margin-bottom: 40px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
}

/* YENİ: Sabit arkaplan videosu (arkada, gizli) */
#member-background-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1; /* Slaytların arkasında */
    opacity: 0; /* Başlangıçta gizli */
    transition: opacity 1.2s ease-in-out;
    /*filter: blur(5px) brightness(0.7);*/
	background-color: #000;
}

/* YENİ: Arkaplan videosunu göster */
#member-background-video.aktif {
    opacity: 0.7;
}

/* .slayt img, .ana-video stilleri aynı */
.slayt img.ana-resim,
.slayt video.ana-video {
    width: 100%;
    height: 100%;
    object-fit: fill; 
}

/* YENİ: "uyeler" tipindeki slaytlar için özel stil */
.slayt.tip-uyeler {
    /* Bu slayt, arkaplan videosunun üstünde görünecek */
    display: flex;
    justify-content: center;
    align-items: center;
	color: #0d1722;
    width: 100vw;
    height: 100vh;
    flex-direction: column;
    /* Önemli: Bu slaytın kendi arkaplanı şeffaf olmalı */
}

/* YENİ: Üye kartı stili (artık ana slayt içeriği) */
.uye-kart {
    display: flex; 
    flex-direction: column; 
    align-items: center;  
    justify-content: center;
	text-align:center;
	position: relative;
    /* background-color: rgba(255, 255, 255, 0.1); */
    /* border-radius: 15px; */
    /* border: 1px solid rgba(255, 255, 255, 0.3); */
    /* box-shadow: 0 4px 15px rgba(0,0,0,0.2); */
}

.uye-kart img {
    height: 11.11vw;
    max-width: 45vw;
    object-fit:contain;
}

/* .uye-kart span { */
    /* margin-top: 15px; */
    /* color: #fff; */
    /* text-align: center; */
	/* font-size: 2.5vw; */
    /* font-weight: 900; */
/* } */

.uye-kart h1 {
    font-family: Gotham;
    text-align: center;
	margin-bottom: 0px;
	margin-top: 5px;
}
.uye-kart>h1:nth-child(1) { 
    font-size: 2.77vw;
    font-weight: 900;
}
.uye-kart>h1:nth-child(2) {
    font-size: 2.56vw;
    font-weight: 500;
}
.uye-adi
{
	font-family: Gotham;
    font-size: 44px;
    font-weight: 900;
    margin-bottom: 2.43vw;
}
.alt-logo{
	width:14vw !important;
	height: 100% !important;
}
.ofis
{
	font-family: Gotham;
    font-size: 2vw;
    font-weight: 500;
}
.sirket-logo{
	margin-top:30px;
	margin-bottom:30px;
}