﻿.content-section {
    padding: 5%;
    max-width: 1400px;
    margin: 0 auto;
    overflow: hidden;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-top: 5%;
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-dim);
    max-width: 700px;
    margin: 0 auto;
}

.page-header {
    text-align: center;
    margin-bottom: 60px;
}

/* Katalog Kapsayıcısı */
.catalog-container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
    /* Sayfalar arası boşluk */
}

/* Resimlerin Genel Stili (Blog ve Ürün Kartlarıyla Uyumlu) */
.catalog-full-width,
.catalog-grid-2 img {
    width: 100%;
    height: auto;
    display: block;
    border: 1px solid rgba(255, 255, 255, 0.1);
    /* İnce gri çerçeve */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    /* Derinlik gölgesi */
    transition: all 0.3s ease-in-out;
    /* Yumuşak geçiş */
}

/* Hover Efekti: Üzerine gelince yukarı kalksın ve çerçeve parlasın */
.catalog-full-width:hover,
.catalog-grid-2 img:hover {
    transform: translateY(-5px);
    /* Hafif yukarı hareket */
    border-color: rgba(184, 115, 51, 0.5);
    /* Singer Gold Rengi */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

/* İkili Izgara (Yan Yana Sayfalar) */
.catalog-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* İki eşit sütun */
}

/* İndirme Butonu Alanı */
.catalog-download {
    text-align: center;
    margin-top: 60px;
    margin-bottom: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    /* Üst çizgi */
}

/* İndirme Butonu (Offer-Btn ile uyumlu ama özelleştirilmiş) */
.download-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: var(--dynamic-color);
    /* Sitenin ana gradient rengi */
    color: #000;
    /* Black yazı */
    padding: 18px 40px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.download-link i {
    font-size: 1.3rem;
}

.download-link:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(184, 115, 51, 0.4);
    color: #000;
}

/* --- Responsive (Mobil) Uyumluluk --- */
@media (max-width: 768px) {

    /* Mobilde başlık küçülsün */
    .section-title {
        font-size: 2.2rem;
    }

    /* Yan yana olan resimler mobilde de yan yana kalsın */
    .catalog-grid-2 {
        grid-template-columns: 1fr 1fr;
    }

    /* Boşlukları daralt */
    .catalog-container {
        gap: 20px;
    }

    .content-section {
        padding-top: 30px;
    }
}
