/* 
 * KAHVERENGİ DOSYALAR KUTUSU CSS - TAM 128px ICON (DÜZELTİLMİŞ)
 * java.zamkinos.com/assets/css/_main_column_project_files_brown.css
 */

/* ANA KUTU - DÜZELTİLMİŞ */
.brown-two-column-box {
  width: 728px;
  border: 1px solid #734E39;
  border-radius: 7px 7px 0 0;
  background: #F2E7D3;
  position: relative;
  box-sizing: border-box;
  margin-bottom: 30px;
  padding-bottom: 30px; /* Alt şeritten önce boşluk */
}

/* ÜST BAŞLIK ŞERİDİ */
.brown-two-column-box-ust-serit {
  width: 100%;
  height: 48px;
  border-radius: 7px 7px 0 0;
  background-color: #BFA37B;
  padding: 0px;
}

.brown-ust-serit-text {
  font-family: Helvetica, sans-serif;
  color: #563B21;
  font-size: 24px;
  text-align: center;
  line-height: 48px;
}

/* DOSYA ICON KUTULARI - DÜZELTİLMİŞ */
.files-grid-container {
    padding: 20px 20px 25px 20px; /* üst, sağ, alt, sol - alt padding artırıldı */
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 20px;
    background: #F2E7D3;
}

.file-item {
    background: white;
    border: 1px solid #BFA37B;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    text-decoration: none;
    color: #563B21;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 200px; /* 128px icon + padding */
    box-shadow: 0 2px 5px rgba(191, 163, 123, 0.1);
}

.file-icon {
    width: 128px;
    height: 128px;
    object-fit: contain;
    margin-bottom: 15px;
    display: block;
    border-radius: 5px;
}

.file-name {
    font-size: 14px;
    font-weight: 500;
    word-break: break-word;
    line-height: 1.4;
    max-width: 128px;
    color: #563B21;
    font-family: Arial, sans-serif;
}

/* HOVER EFEKTLERİ */
.file-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(191, 163, 123, 0.25);
    border-color: #734E39;
    background: #FFF8F0;
}

/* ALT KAPANIŞ ŞERİDİ - DÜZELTİLMİŞ */
.brown-two-column-box-alt-serit {
  position: absolute;
  width: 100%;
  height: 24px;
  background-color: #BFA893;
  border-radius: 0px 0px 0px 0px;
  bottom: 0;
  font-family: Helvetica, sans-serif;
  color: #563B21;
  font-size: 12px;
  text-align: center;
  line-height: 24px;
  z-index: 1; /* Diğer içeriklerin üstünde görünsün */
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .brown-two-column-box {
        width: 100%;
        max-width: 100%;
    }
    
    .files-grid-container {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        padding: 15px 15px 20px 15px;
        gap: 15px;
    }
    
    .file-item {
        min-height: 180px;
        padding: 15px;
    }
    
    .file-icon {
        width: 112px;
        height: 112px;
    }
}

@media (max-width: 480px) {
    .files-grid-container {
        grid-template-columns: repeat(2, 1fr);
        padding: 12px 12px 18px 12px;
    }
    
    .file-icon {
        width: 96px;
        height: 96px;
    }
    
    .file-item {
        min-height: 160px;
        padding: 12px;
    }
    
    .file-name {
        font-size: 13px;
    }
}