/*------------------------------------------------------------------
Project:  ComingSoon
Version:  
Last change:  
Assigned to:  Bach Le
Primary use:  
-------------------------------------------------------------------*/

/* Yerel font tanımları kaldırıldı, Google Fonts kullanılacak */

/*//////////////////////////////////////////////////////////////////
[ RS PLUGIN ]*/
/*---------------------------------------------*/
.container {max-width: 1200px;}

/*//////////////////////////////////////////////////////////////////
[ Form ]*/

.contact100-form {
  width: 100%;
}

/*------------------------------------------------------------------
[ Input ]*/

.wrap-input100 {
  width: 100%;
  position: relative;
  background-color: #fff;
  height: 50px;
  border: 2px solid #e6e6e6;
  border-radius: 5px;
}

/*---------------------------------------------*/
.input100 {
  display: block;
  width: 100%;
  background: transparent;
}

input.input100 {
  height: 100%;
  padding: 0 22px 0 22px;
}


/*------------------------------------------------------------------
[ Focus Input ]*/

.focus-input100 {
  position: absolute;
  display: block;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  top: -2px;
  left: -2px;
  pointer-events: none;
  border: 2px solid #57b846;
  border-radius: 5px;

  visibility: hidden;
  opacity: 0;

  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;

  -webkit-transform: scaleX(1.1) scaleY(1.2);
  -moz-transform: scaleX(1.1) scaleY(1.2);
  -ms-transform: scaleX(1.1) scaleY(1.2);
  -o-transform: scaleX(1.1) scaleY(1.2);
  transform: scaleX(1.1) scaleY(1.2);
}

.input100:focus + .focus-input100 {
  visibility: visible;
  opacity: 1;

  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}

/*------------------------------------------------------------------
[ Alert validate ]*/

.validate-input {
  position: relative;
}

.alert-validate::before {
  content: attr(data-validate);
  position: absolute;
  max-width: 70%;
  background-color: #fff;
  border: 1px solid #c80000;
  border-radius: 2px;
  padding: 4px 25px 4px 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 12px;
  pointer-events: none;

  /* Font aşağıdan gelecek */
  color: #c80000;
  font-size: 14px; /* px */
  line-height: 1.4;
  text-align: left;

  visibility: hidden;
  opacity: 0;

  -webkit-transition: opacity 0.4s;
  -o-transition: opacity 0.4s;
  -moz-transition: opacity 0.4s;
  transition: opacity 0.4s;
}

.alert-validate::after {
  content: "\f12a";
  font-family: FontAwesome; /* Font Awesome gerekli */
  display: block;
  position: absolute;
  color: #c80000;
  font-size: 18px; /* px */
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 18px;
}

.alert-validate:hover:before {
  visibility: visible;
  opacity: 1;
}

@media (max-width: 850px) { /* Önceki 992px idi, belki bu daha uygun? */
  .alert-validate::before {
    visibility: visible;
    opacity: 1;
  }
}


/*==================================================================
    TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT
==================================================================*/

/*==================================================================
[ Color ]*/
.cl0 {color: #fff;}

/*//////////////////////////////////////////////////////////////////
[ S-Text 0 - 15 ]*/
/* Bu sınıflar yeni yapıda doğrudan kullanılmıyor, */
/* ancak başka yerlerde kullanılıyor olabilir diye silinmedi. */
.s1-txt1 {}
.s2-txt1 {
  /* font-family: Lato-Bold; */ /* Genel kurallar bunu geçersiz kılacak */
  font-size: 15px; /* px */
  line-height: 1.5;
  color: #555555;
}
.s2-txt2 {
  /* font-family: Lato-Bold; */
  font-size: 15px; /* px */
  line-height: 1.5;
  color: #fff;
}
.s2-txt3 {
  /* font-family: Lato-Regular; */
  font-size: 14px; /* px */
  line-height: 1.5;
  color: #999999;
}
.s2-txt4 {
  /* font-family: Lato-Regular; */
  font-size: 12px; /* px */
  line-height: 1.5;
  color: #fff;
  text-transform: uppercase;
}

/*//////////////////////////////////////////////////////////////////
[ M-Text 16 - 25 ]*/
/* Bu sınıflar yeni yapıda doğrudan kullanılmıyor */
.m1-txt1 {
  /* font-family: Poppins-Regular; */
  font-size: 24px; /* px */
  line-height: 1.5;
  color: #555555;
}
.m1-txt2 {
  /* font-family: Poppins-Bold; */
  font-size: 24px; /* px */
  line-height: 1.5;
  color: #555555;
}

/*//////////////////////////////////////////////////////////////////
[ L-Text >= 26 ]*/
/* Bu sınıflar yeni yapıda doğrudan kullanılmıyor */
.l1-txt1 {}
.l2-txt1 {
  /* font-family: Lato-Bold; */
  font-size: 40px; /* px */
  line-height: 1;
  color: #fff;
}


/*==================================================================
    SHAPE SHAPE SHAPE SHAPE SHAPE SHAPE SHAPE SHAPE SHAPE SHAPE SHAPE
==================================================================*/

/*//////////////////////////////////////////////////////////////////
[ Size ]*/
.size1 {
  width: 100%;
  min-height: 100vh;
}
.size2 {
  height: 100%;
  width: 71%;
}
.size3 {
  max-width: 650px;
  min-height: 100vh;
}
.size4 {
  width: 100%;
  height: 50px;
}
.size5 { /* Sosyal medya ikon boyutları */
  width: 36px;
  height: 36px;
}
.size6 {
  width: 155px;
  height: 155px;
}

/*//////////////////////////////////////////////////////////////////
[ Width ]*/
.wsize1 {
  max-width: 650px;
}
.wsize2 {
  max-width: 380px;
}

/*//////////////////////////////////////////////////////////////////
[ Height ]*/
.hsize1 {
  min-height: 100vh;
}

/*//////////////////////////////////////////////////////////////////
[ Background ]*/
.bg0 {background-color: #fff;}
.bg1 {background-color: #57b846;}
.bg3 {background-color: #3b5998;}
.bg4 {background-color: #1da1f2;} /* Twitter Mavi */
.bg5 {background-color: #E1306C;} /* Instagram Kırmızı/Pembe tonu */

.bg-img1 {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/*//////////////////////////////////////////////////////////////////
[ Border ]*/
.bo1 {border: 1px solid #ebebeb;}
.bor1 {
  border-radius: 5px;
}
.bor2 {
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
}

/*==================================================================
    WHERE WHERE WHERE WHERE WHERE WHERE WHERE WHERE WHERE WHERE WHERE  
==================================================================*/
.where1-parent {
  position: relative;
  z-index: 1;
}
.where1 {
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
}
/* where2 class'ı HTML'den kaldırıldı, bu kural etkisiz */
.where2 {
  padding: 50px 50px 150px 320px;
}


/*==================================================================
 HOW HOW HOW HOW HOW HOW HOW HOW HOW HOW HOW HOW HOW HOW HOW HOW HOW 
==================================================================*/
.how1 { /* Sosyal medya ikon hover */
  border-radius: 50%;
  font-size: 22px; /* px */
  color: #fff;
}
.how1:hover {
  background-color: #555555;
  color: #fff;
}

/*---------------------------------------------*/
.parallax100 {
  background-attachment: fixed;
  background-position: center 0;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 992px) {
  .parallax100 {
    background-attachment: inherit;
  }
}

/*---------------------------------------------*/
.placeholder0::-webkit-input-placeholder { color: #999999;}
.placeholder0:-moz-placeholder { color: #999999;}
.placeholder0::-moz-placeholder { color: #999999;}
.placeholder0:-ms-input-placeholder { color: #999999;}

/*---------------------------------------------*/
.overlay1 {
  overflow: hidden;
}
.overlay1::before {
  content: "";
  display: block;
  position: absolute;
  z-index: -3;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0,0,0,0.8);
}
.overlay1::after {
  content: "";
  display: block;
  position: absolute;
  z-index: -2;
  top: 0;
  right: 100%;
  width: 10000px;
  height: 100%;
  background-color: #fff;
  transform-origin: bottom right;
  -webkit-transform: skewX(156deg);
  -moz-transform: skewX(156deg);
  -ms-transform: skewX(156deg);
  -o-transform: skewX(156deg);
  transform: skewX(156deg);
}

/*---------------------------------------------*/
.wrap-pic1 {
  width: 150%;
}
.wrap-pic1 img {
  max-width: 100%;
}

/*//////////////////////////////////////////////////////////////////
[ Pseudo ]*/

/*------------------------------------------------------------------
[ Focus ]*/
.focus-in0:focus::-webkit-input-placeholder { color:transparent; }
.focus-in0:focus:-moz-placeholder { color:transparent; }
.focus-in0:focus::-moz-placeholder { color:transparent; }
.focus-in0:focus:-ms-input-placeholder { color:transparent; }


/*------------------------------------------------------------------
[ Hover ]*/
.hov-cl0:hover {color: #fff;}
.hov-bg0:hover {background-color: #fff;}
/*---------------------------------------------*/
.hov1:hover {
  background-color: #555555;
}

/*==================================================================
  RESPONSIVE RESPONSIVE RESPONSIVE RESPONSIVE RESPONSIVE RESPONSIVE
==================================================================*/

/* Responsive sınıflar olduğu gibi bırakıldı */
/* ... (Önceki yanıttaki tüm @media blokları buraya gelecek) ... */
@media (max-width: 1600px) {
  .respon1 { max-width: 38%; }
}
@media (max-width: 1200px) {
  .m-0-xl {margin: 0;} .m-lr-0-xl {margin-left: 0; margin-right: 0;} .m-lr-15-xl {margin-left: 15px; margin-right: 15px;} .m-l-0-xl {margin-left: 0;} .m-r-0-xl {margin-right: 0;} .m-l-15-xl {margin-left: 15px;} .m-r-15-xl {margin-right: 15px;}
  .p-0-xl {padding: 0;} .p-lr-0-xl {padding-left: 0; padding-right: 0;} .p-lr-15-xl {padding-left: 15px; padding-right: 15px;} .p-l-0-xl {padding-left: 0;} .p-r-0-xl {padding-right: 0;} .p-l-15-xl {padding-left: 15px;} .p-r-15-xl {padding-right: 15px;}
  .w-full-xl {width: 100%;}
  .respon1 { padding-left: 30px; padding-right: 30px; }
}
@media (max-width: 992px) {
  .m-0-lg {margin: 0;} .m-lr-0-lg {margin-left: 0; margin-right: 0;} .m-lr-15-lg {margin-left: 15px; margin-right: 15px;} .m-l-0-lg {margin-left: 0;} .m-r-0-lg {margin-right: 0;} .m-l-15-lg {margin-left: 15px;} .m-r-15-lg {margin-right: 15px;}
  .p-0-lg {padding: 0;} .p-lr-0-lg {padding-left: 0; padding-right: 0;} .p-lr-15-lg {padding-left: 15px; padding-right: 15px;} .p-l-0-lg {padding-left: 0;} .p-r-0-lg{padding-right: 0;} .p-l-15-lg {padding-left: 15px;} .p-r-15-lg {padding-right: 15px;}
  .w-full-lg {width: 100%;}
  .respon1 { max-width: 650px; min-height: unset; padding-top: 0; margin-left: auto; margin-right: auto; }
  .respon2 { position: relative; width: 100%; padding-left: 15px; padding-right: 15px; }
  .respon2::after { content:""; display: block; position: absolute; z-index: -2; top: 100%; right: 0; width: 100%; height: 10000px; background-color: #fff; transform-origin: top right; -webkit-transform: skew(180deg, 8deg); -moz-transform: skew(180deg, 8deg); -ms-transform: skew(180deg, 8deg); -o-transform: skew(180deg, 8deg); transform: skew(180deg, 8deg); }
}
@media (max-width: 768px) {
  .m-0-md {margin: 0;} .m-lr-0-md {margin-left: 0; margin-right: 0;} .m-lr-15-md {margin-left: 15px; margin-right: 15px;} .m-l-0-md {margin-left: 0;} .m-r-0-md {margin-right: 0;} .m-l-15-md {margin-left: 15px;} .m-r-15-md {margin-right: 15px;}
  .p-0-md {padding: 0;} .p-lr-0-md {padding-left: 0; padding-right: 0;} .p-lr-15-md {padding-left: 15px; padding-right: 15px;} .p-l-0-md {padding-left: 0;} .p-r-0-md{padding-right: 0;} .p-l-15-md {padding-left: 15px;} .p-r-15-md {padding-right: 15px;}
  .w-full-md {width: 100%;}
  /* Flexbox responsive ayarı aşağıya taşındı */
}
@media (max-width: 576px) {
  .m-0-sm {margin: 0;} .m-lr-0-sm {margin-left: 0; margin-right: 0;} .m-lr-15-sm {margin-left: 15px; margin-right: 15px;} .m-l-0-sm {margin-left: 0;} .m-r-0-sm {margin-right: 0;} .m-l-15-sm {margin-left: 15px;} .m-r-15-sm {margin-right: 15px;}
  .p-0-sm {padding: 0;} .p-lr-0-sm {padding-left: 0; padding-right: 0;} .p-lr-15-sm {padding-left: 15px; padding-right: 15px;} .p-l-0-sm {padding-left: 0;} .p-r-0-sm{padding-right: 0;} .p-l-15-sm {padding-left: 15px;} .p-r-15-sm {padding-right: 15px;}
  .w-full-sm {width: 100%;}
}
@media (max-width: 480px) {
  .m-0-ssm {margin: 0;} .m-lr-0-ssm {margin-left: 0; margin-right: 0;} .m-lr-15-ssm {margin-left: 15px; margin-right: 15px;} .m-l-0-ssm {margin-left: 0;} .m-r-0-ssm {margin-right: 0;} .m-l-15-ssm {margin-left: 15px;} .m-r-15-ssm {margin-right: 15px;}
  .p-0-ssm {padding: 0;} .p-lr-0-ssm {padding-left: 0; padding-right: 0;} .p-lr-15-ssm {padding-left: 15px; padding-right: 15px;} .p-l-0-ssm {padding-left: 0;} .p-r-0-ssm{padding-right: 0;} .p-l-15-ssm {padding-left: 15px;} .p-r-15-ssm {padding-right: 15px;}
  .w-full-ssm {width: 100%;}
}


/* ==================================================================
   YENİ CLASS TABANLI FONT STİLLERİ (Saira - Piksel Boyutlu - DOĞRU FONT!)
   ve DÜZENLEMELER
   ================================================================== */

/* TEMEL AYARLAR */
body {
  font-family: 'Saira', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px; /* Temel boyut (px) */
  font-weight: 400; /* Normal (Regular 400) */
  line-height: 1.6; /* Makul bir satır aralığı */
  color: #333;
  background-color: #fff;
}

/* === FARKLI METİN STİLLERİ İÇİN SINIFLAR === */

/* Ana Başlık (Işıl Açıkkar için) - ExtraBold */
.title-main {
   font-family: 'Saira', sans-serif;
   font-size: 67px; /* Kullanıcının istediği büyük boyut */
   font-weight: 800; /* ExtraBold (800) */
   line-height: 0.5; /* Biraz artırıldı */
   color: #222;
   margin-top: 0.5em;
   margin-bottom: 0.2em;
}
.title-main strong {
    font-weight: 800;
}

/* İkinci Seviye Bilgi (Diplomalı Spiker...) - SemiBold */
.title-sub2 {
    font-family: 'Saira', sans-serif;
    font-size: 28px; /* Kullanıcının istediği boyut */
    font-weight: 600; /* SemiBold (600) */
    line-height: 2.5; /* Artırıldı */
    color: #555;
    margin-top: 0;
    margin-bottom: 1.5em;
}

/* Birinci Seviye Alt Başlık (Ana Haber) - ExtraBold */
.title-sub3 {
    font-family: 'Saira', sans-serif;
    font-size: 50px; /* Kullanıcının istediği boyut */
    font-weight: 800; /* ExtraBold (800) */
    line-height: 0.6; /* Artırıldı */
    color: #222;
    margin-top: 1em;
    margin-bottom: 0.3em;
}

/* Birinci Seviye Alt Başlık (Sunucu) - SemiBold */
.title-sub4 {
    font-family: 'Saira', sans-serif;
    font-size: 30px; /* Kullanıcının istediği boyut */
    font-weight: 600; /* SemiBold (600) */
    line-height: 0.6; /* Artırıldı */
    color: #222;
    margin-top: 0.5em; /* Azaltıldı */
    margin-bottom: 0.5em;
}

/* Birinci Seviye Alt Başlık (Stüdyo) - SemiBold */
.title-sub6 {
    font-family: 'Saira', sans-serif;
    font-size: 30px; /* Kullanıcının istediği boyut */
    font-weight: 600; /* SemiBold (600) */
    line-height: 1.3; /* Artırıldı */
    color: #222;
    margin-top: 0.5em; /* Azaltıldı */
    margin-bottom: 0.5em;
}
/* Tablo Satırları (Menajerlik, İletişim Satırları) - SemiBold */
.title-sub5 { /* Bu class <tr>'de tanımlı, stiller td'ye uygulanmalı */
    /* Doğrudan tr'ye font vermek yerine td'ye verelim (aşağıda) */
}
/* Tablo Hücreleri için stil */
table.contact-table td {
    font-family: 'Saira', sans-serif;
    font-size: 25px; /* Kullanıcının istediği boyut */
    font-weight: 600; /* SemiBold (600) */
    line-height: 1.4; /* Makul bir değer */
    color: #222;
    padding: 4px 8px 4px 0; /* Hücre içi boşluk (sağ taraf hariç) */
    vertical-align: top; /* Dikey hizalama */
    border: none !important; /* Çizgileri kaldır */
}
/* Tablodaki ilk sütun (etiketler) için belki farklı stil? */
table.contact-table td:first-child {
    /* font-weight: 800; */ /* İsteğe bağlı olarak daha kalın yapılabilir */
    white-space: nowrap; /* Etiketlerin alta kaymasını engelle */
}
/* Tablodaki ikinci sütun (:) için */
table.contact-table td:nth-child(2) {
    padding-right: 5px;
    padding-left: 0;
}

/* İletişimdeki numara için özel class - Normal */
.contact-number {
    font-weight: 400; /* Normal (Regular 400) */
    /* Boyut ve font-family td'den gelir */
}

/* Normal Paragraf Metni ve Linkler - Normal */
p { /* Genel p etiketi (class atanmamış olanlar için) */
  font-family: 'Saira', sans-serif;
  font-size: 16px; /* Varsayılan boyut */
  font-weight: 400; /* Normal */
  line-height: 1.6;
  color: #333;
  margin-bottom: 1em;
}
a { /* Genel link stili */
  font-family: 'Saira', sans-serif; /* Linkler de aynı font olsun */
  color: #1b28b2; /* Kullanıcının istediği renk */
  text-decoration: none;
  transition: color 0.3s ease;
  /* font-size ve weight body'den miras alır */
}
a:hover {
    text-decoration: underline;
    color: #111c7a; /* Hover rengi biraz koyu */
}
/* Özel link class'ı (İzle linki) */
.link-style {
    margin-top: 1em;
    margin-bottom: 30px !important; /* Daha fazla boşluk için !important gerekebilir */
}
.link-style a {
    font-size: 25px; /* Link boyutunu biraz artıralım */
    font-weight: 800; /* ExtraBold (800) */
    color: #1b28b2;
}
.link-style a img { /* Link içindeki resim için dikey hizalama */
    vertical-align: middle;
    margin-right: 5px;
}


/* Footer Metni - Normal */
.text-footer {
    font-family: 'Saira', sans-serif;
    font-size: 14px; /* Piksel olarak boyut */
    font-weight: 400;
    line-height: 1.5;
    color: #666;
}
.text-footer a { color: #111; text-decoration: none; }
.text-footer a:hover { text-decoration: underline; }

/* Kalın olması gereken diğer yerler (HTML'de <strong> veya <b> varsa) */
strong, b {
    /* Kendi sınıfı olmayan strong/b'ler için */
    font-weight: 600; /* Genel kalınlık SemiBold 600 olsun */
}

/* Resim ve Flexbox Düzeni */
.content-container {
  display: flex; /* Öğeleri yan yana getirir */
  flex-wrap: wrap; /* Ekran küçülürse alta kaydır */
  align-items: flex-start; /* Öğeleri dikeyde yukarı hizala */
  gap: 30px; /* Resim ve metin arasına boşluk koy */
}

.image-container {
  flex-shrink: 0;
}

.image-container img {
  display: block;
  max-width: 100%;
  height: auto;
  width: 600px; /* Kullanıcının istediği yeni boyut */
  border: 3px solid #eee;
}

.text-container {
  flex-grow: 1;
  min-width: 300px; /* Resim büyüdüğü için metin alanını biraz daralttık */
}

@media (max-width: 992px) { /* Daha erken kırılsın (600px resim + 300px metin + 30px gap ~ 930px) */
  .content-container {
    flex-direction: column; /* Öğeleri alt alta getir */
    align-items: center; /* Ortala */
    gap: 20px;
  }
  .image-container {
     margin-bottom: 20px;
     width: 90%; /* Mobilde biraz daha geniş */
     max-width: 600px; /* Maksimum genişlik */
  }
  .image-container img {
      width: 100%; /* Resim kabına sığsın */
  }
  .text-container {
    width: 100%;
    text-align: center; /* Metni ortala (isteğe bağlı) */
  }
  .flex-w { /* Sosyal ikonları ortala */
      justify-content: center;
  }
}

/* Eski image-left float kuralını etkisiz kılalım */
.image-left {
    float: none !important;
    margin: 0 !important;
}

/* Eski clearfix kuralı artık gereksiz */
.clearfix::after {
  content: none;
  clear: none;
  display: none;
}

/* Tablo Stilleri */
table.contact-table {
    width: auto; /* Inline width yerine otomatik genişlik */
    border-collapse: collapse; /* Çizgileri birleştir (kaldırmak için) */
    border-style: none; /* Dış çerçeveyi gizle */
    margin-top: 2em; /* Üstteki elemanla arasını aç */
}
table.contact-table tr {
    /* tr için özel bir stil gerekmiyor (title-sub5 class'ı var ama stil td'ye uygulandı) */
}
table.contact-table td {
    font-family: 'Saira', sans-serif;
    font-size: 25px; /* Kullanıcının istediği boyut */
    font-weight: 600; /* SemiBold (600) */
    line-height: 1.4; /* Makul bir değer */
    color: #222;
    padding: 5px 10px 5px 0; /* Hücre içi boşluk (Sağ taraf hariç) */
    vertical-align: top;
    border: none; /* Tüm hücre çizgilerini kaldır */
}
table.contact-table td:nth-child(2) { /* İkinci sütun (:) için */
    padding-right: 5px;
    padding-left: 0;
}
table.contact-table td strong { /* Etiketleri (Menajerlik, İletişim) kalın yap */
    font-weight: 800; /* Belki ExtraBold? */
}

/* Sosyal medya ikonları için ek ayar (isteğe bağlı) */
.social-icons a i {
    transition: transform 0.2s ease-in-out;
}
.social-icons a:hover i {
    transform: scale(1.2); /* Hafif büyüme efekti */
}

