/* Özel CSS Düzenlemeleri */

/* Mobil menü logo boyutunu düzenle */
@media screen and (max-width: 768px) {
  /* Mobil menü logo container */
  .hamenu .cont-info .logo {
    width: 200px;
    margin: 0 auto 20px;
    background-color: rgba(0, 0, 0, 0.2);
    padding: 15px;
    border-radius: 10px;
  }

  /* Mobil menü logo resmi */
  .hamenu .cont-info .logo img {
    height: auto !important; /* !important ile mevcut kuralları geçersiz kıl */
    width: 100% !important;
    max-height: 80px !important; /* Maksimum yükseklik */
    object-fit: contain;
    margin: 0 auto;
    display: block;
  }
  
  /* Mobil menü linklerine daha fazla padding */
  .hamenu .menu-links .main-menu > li .link {
    padding: 18px 30px;
    font-size: 24px !important;
  }
  
  /* Mobil menü için düzeltme - hamenu yapısı */
  .hamenu .menu-links {
    padding-top: 80px;
  }

  .header-min .caption .last-title {
    font-size: 76px !important; /* Ensure this overrides other rules */
  }
}

/* Özel olarak tasarlanan navbar logosu için düzenleme */
.navbar .logo img {
  width: auto;
  height: auto;
  max-height: 50px;
}

/* Üst menü logo hover efekti */
.navbar .logo:hover {
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

/* HEADER BAŞLIK DÜZENİ */
.header-min .caption {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

/* Birinci satır: [We are] The Portus */
.header-min .caption .main-title {
    text-align: center;
    margin-bottom: 40px;
}

/* İkinci satır: division of a */
.header-min .caption .division-text {
    text-align: left;
    margin-bottom: 40px;
    font-size: 120px;
    padding-left: 10%;
}

/* Digital container */
.header-min .caption .digital-container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 40px;
    position: relative;
    padding-right: 10%;
}

/* Digital kelimesi */
.header-min .caption .digital-text {
    font-size: 120px;
    margin: 0;
    text-align: right;
}

/* Açıklama metni */
.header-min .caption .description-text {
    max-width: 450px;
    margin-left: 40px !important;
    text-align: left;
    font-size: 16px;
    line-height: 1.6;
}

/* Son satır: creative studio */
.header-min .caption .last-title {
    text-align: center;
    font-size: 120px;
}

/* Gizleme ve gösterme stilleri */
.header-min .caption h1, 
.header-min .caption .digital-text, 
.header-min .caption .division-text, 
.header-min .caption .main-title, 
.header-min .caption .last-title {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
}

/* Tek bir CSS kodu - header dışındaki tüm başlıkları gizle */
body > h1,
body > div > h1:not(.caption h1),
body > * > div > h1:not(.caption h1),
div:not(.caption):not(.container) > h1:not([class*="division-text"]):not([class*="text-center"]):not(.digital-text),
body > h1:not([class]):not([id]),
body > div > h1:not([class]):not([id]):not(.digital-text) {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
    position: absolute !important;
    pointer-events: none !important;
    overflow: hidden !important;
    z-index: -9999 !important;
}

/* Responsive düzenlemeler */
@media screen and (max-width: 991px) {
    .header-min .caption .division-text,
    .header-min .caption .digital-text,
    .header-min .caption .last-title {
        font-size: 60px;
    }
    
    .header-min .caption .division-text {
        text-align: center;
        padding-left: 0;
    }
    
    .header-min .caption .digital-container {
        flex-direction: column;
        justify-content: center;
        padding-right: 0;
    }
    
    .header-min .caption .description-text {
        margin: 20px auto 0 !important;
        text-align: center;
    }
} 