/* -- CSS Reset -- */
/* Bu kısım mevcut CSS resetinizle aynı kalmalı */
@import url("https://fonts.googleapis.com/css?family=Roboto:400,500");

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, section,
video { /* Video artık olmadığı için burada bırakabilir veya silebilirsiniz */
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box; /* Tüm elemanlar için box-sizing */
}

/* Kutu modelini daha tutarlı hale getirmek için ekleyin */
*, *:before, *:after {
  box-sizing: border-box;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  -moz-font-feature-settings: "liga" on;
  margin: 0;
}

img.alignright {
  float: right;
}

img.alignleft {
  float: left;
}

img.aligncenter {
  clear: both;
  display: block;
  margin-right: auto;
  margin-left: auto;
}

/* -- Genel Body Ayarları -- */
html {
  background-color: #141414; /* HTML'in arka plan rengi */
  overflow: hidden; /* HTML'de kaydırma çubuğunu gizler */
  height: 100%; /* HTML'in tam yüksekliği kaplaması için */
}

body {
  background-color: #141414; /* Varsayılan koyu arka plan */
  border-style: none;
  color: #000000; /* Koyu renk içerik için */
  display: flex; /* Body'yi flex container yapın */
  flex-direction: column; /* İçeriği dikeyde hizalamak için */
  min-height: 100vh; /* Minimum tam ekran yüksekliği */
  height: 100vh; /* Tam ekran yüksekliği zorlar */
  overflow: hidden; /* Body'de kaydırma çubuklarını gizler */
  
  /* Arka plan görselini doğrudan body'ye ekleyin */
  background-image: url("../../images/background.jpg"); 
  background-position: center center;
  background-size: cover; /* Resmi tüm alanı kaplayacak şekilde ölçekle */
  background-repeat: no-repeat; /* Resmin tekrarlanmasını engelle */
  background-attachment: fixed; /* Resmi sabit tutar (scroll yapsanız bile) */

  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  font-size: 40px;
  line-height: 60px;
  letter-spacing: -0.5px;
  color: #999999;
}

body.page-template-page-fullsingle-trk p {
  margin-bottom: 28px;
  color: #999999;
}
@media (max-width: 800px) {
  body.page-template-page-fullsingle-trk p {
    font-size: 28px;
    line-height: 40px;
  }
}

a, a:hover {
  text-decoration: none;
  border: none;
  border-style: none;
  box-shadow: none;
}

/* -- İçerik Animasyonları -- */
@-webkit-keyframes fadein {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes fadein {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Video ile ilgili .trk-video-container ve içindeki kurallar kaldırıldı */

/* -- fs-trk ana içerik kapsayıcısı -- */
.fs-trk {
  padding: 10vh 10vw;
  position: absolute; /* İçerik arka planın üstünde olmalı */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; /* Tam viewport yüksekliği kaplar */
  z-index: 1000;
  display: flex; /* Flexbox kullanın */
  flex-direction: column; /* İçeriği dikeyde sırala */
  justify-content: space-between; /* Öğeler arasında eşit boşluk bırak */
  box-sizing: border-box; /* Padding'in toplam boyuta dahil olmasını sağlar */
  background-color: rgba(0, 0, 0, 0.6); /* İçeriğin okunurluğu için koyu katman */
}
@media (max-width: 500px) {
  .fs-trk {
    padding: 5vh 5vw;
    text-align: center; /* Mevcut */
  }
}

/* -- trk-content içindeki Flexbox ayarları -- */
.fs-trk .trk-content {
  height: 100%; /* Kapsayıcısının (fs-trk) yüksekliğinin %100'ünü alır */
  display: flex;
  flex-direction: column;
}

.logo {
  flex: 0 0 auto; /* Kendi içeriği kadar yer kaplar, büyümez */
  -webkit-animation: fadein 2s;
  animation: fadein 2s;
  align-self: flex-start; /* Logo'yu sola hizalar */
}
@media (max-width: 500px) {
  .logo {
    align-self: center; /* Mobil'de ortaya hizala */
  }
}
.logo img {
  max-width: 90px;
  height: auto;
}

.bio {
  flex: 1 1 auto; /* Kalan boşluğu doldurmaya çalışır, Bio'nun boşluğu */
  display: flex;
  flex-direction: column;
  justify-content: center; /* İçindeki metni dikeyde ortala */
  -webkit-animation: fadein 4s;
  animation: fadein 4s;
  letter-spacing: -1px;
  max-width: 75%; /* Masaüstünde genişlik kısıtlaması */
  margin-top: auto; /* Logodan sonraki boşluğu iter */
  margin-bottom: auto; /* Network'ten önceki boşluğu iter */
}
@media (max-width: 800px) {
  .bio {
    max-width: none; /* Mobil'de genişlik kısıtlamasını kaldır */
  }
}
.bio a {
  color: #CCCCCC;
  transition: 1s;
}
.bio a:hover {
  color: #FFFFFF;
  transition: 0.1s;
}

.network {
  flex: 0 0 auto; /* Kendi içeriği kadar yer kaplar */
  -webkit-animation: fadein 6s;
  animation: fadein 6s;
  margin-top: auto; /* Bio'dan sonraki boşluğu iter */
}
.network ul {
  -webkit-animation: fadein 6s;
  animation: fadein 6s;
}
.network ul li {
  display: inline-block;
  margin-right: 8px;
}
.network ul li a {
  display: inline-block;
  width: 30px;
  height: 30px;
  cursor: pointer;
}
.network ul li a .svg-icon {
  padding: 4px;
  width: 32px;
  height: 32px;
  margin: 0;
  display: block;
}
.network ul li a .svg-icon path,
.network ul li a .svg-icon polygon,
.network ul li a .svg-icon rect {
  fill: #999999;
  transition: 1s;
}
.network ul li a .svg-icon circle {
  stroke: #999999;
  stroke-width: 1;
}
.network ul li a:hover .svg-icon path,
.network ul li a:hover .svg-icon polygon,
.network ul li a:hover .svg-icon rect {
  fill: #FFFFFF;
  transition: 0.1s;
}

.footercopy {
  font-size: 12px;
  line-height: 14px;
  margin-bottom: 0;
  flex: 0 0 auto; /* Kendi içeriği kadar yer kaplar */
  -webkit-animation: fadein 8s;
  animation: fadein 8s;
  margin-top: auto; /* Network'ten sonraki boşluğu iter */
}
.footercopy p.copyright {
  font-size: 12px;
  line-height: 14px;
  font-weight: 400;
  opacity: 0.4;
}
.footercopy p.copyright a {
  color: #999999;
}

/* Video kontrolleri ile ilgili tüm kurallar kaldırıldı */