/* ============================================================
   Latif Mimari - Anasayfa Mozaik Galeri
   ============================================================ */

.ag-section {
    width: 980px;
    margin: 0 auto;
    padding: 0 0 20px;
}

.ag-baslik {
    font-size: 15px;
    font-weight: bold;
    color: #1e3a5f;
    letter-spacing: 1px;
    padding: 14px 8px 10px;
    border-bottom: 2px solid #c8a84b;
    margin-bottom: 12px;
}

.ag-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* Temel birim: 160px — yatay 1 satır, dikey 2 satır (span 2)
       2 yatay yüksekliği = 160 + 5 + 160 = 325px
       1 dikey yüksekliği = 2×160 + 5  = 325px  ✓ */
    grid-auto-rows: 160px;
    grid-auto-flow: row dense;
    gap: 5px;
}

/* Dikey (portrait) resimler 2 satır kaplar */
.ag-item.tall {
    grid-row: span 2;
}

/* ---- Kart ---- */
.ag-item {
    display: block;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    background: #111;
    border: 2px solid transparent;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.ag-item:hover {
    border-color: #c8a84b;
    box-shadow: 0 4px 22px rgba(0, 0, 0, 0.55);
    text-decoration: none;
}

/* ---- Resim ---- */
.ag-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.80);
    transition: filter 0.3s ease, transform 0.35s ease;
}

.ag-item:hover img {
    filter: brightness(1.05);
    transform: scale(1.04);
}

/* ---- Başlık bandı ---- */
.ag-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 28px 8px 8px;
    background: linear-gradient(to top, rgba(10, 5, 0, 0.85) 0%, transparent 100%);
    color: #d4a83a;
    font: bold 11px/1.3 "Trebuchet MS", Arial, Helvetica, sans-serif;
    letter-spacing: 0.8px;
    text-align: center;
    text-transform: uppercase;
    transition: color 0.25s ease;
}

.ag-item:hover .ag-caption {
    color: #ffd060;
}
