/* Katalog Bölümü Genel Zemin */
.catalog-area {
    background-color: #000; /* Temanızın ana siyahı */
    padding: 100px 0;
}

/* Katalog Kartı - Koyu Gri/Antrasit Dokunuş */
.catalog-card {
    position: relative;
    background: #111111; /* Siyah üzerinde derinlik sağlayan çok koyu gri */
    border-radius: 12px;
    padding: 15px; 
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid #1f1f1f; /* Çok ince, asil bir belirginlik */
}

/* Hover: Kartın tamamı hafifçe yükselir */
.catalog-card:hover {
    transform: translateY(-10px);
    background: #181818;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

/* Görsel Alanı */
.catalog-img {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.catalog-img img {
    width: 100%;
    height: auto;
    transition: transform 0.6s ease;
    display: block;
}

/* Hover: Görsel Hafif Büyür */
.catalog-card:hover .catalog-img img {
    transform: scale(1.1);
}

/* O Sevdiğin İncele Hover Efekti */
.catalog-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.7); /* Arkadaki görseli karartır */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease-in-out;
}

/* Butonun aşağıdan yukarı gelme efekti */
.catalog-overlay .theme-btn {
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.catalog-card:hover .catalog-overlay {
    opacity: 1;
}

.catalog-card:hover .catalog-overlay .theme-btn {
    transform: translateY(0);
}

/* Buton Tasarımı */
.theme-btn {
    background-color: #fff;
    color: #000;
    padding: 12px 28px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.theme-btn:hover {
    background-color: #f0f0f0;
}

/* Başlık ve İndir Butonu */
.catalog-content {
    padding-top: 20px;
}

.catalog-title {
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 8px;
}

.catalog-title a {
    color: #ffffff;
    text-decoration: none;
}

.link-btn {
    color: #888 !important;
    font-size: 14px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.link-btn:hover {
    color: #fff !important;
}