/* ============================================
   CATALOG PAGE — Additional Styles
   ============================================ */

/* === CATALOG HERO === */
.catalog-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    margin-top: 82px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.catalog-hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.catalog-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
}

.catalog-hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 0 20px;
    max-width: 700px;
}

.catalog-hero__title {
    font-family: 'Georgia', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    font-style: italic;
    margin-bottom: 20px;
}

.catalog-hero__subtitle {
    font-size: 0.95rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
}

.catalog-hero__download {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.catalog-hero__download span {
    font-family: 'Georgia', serif;
    font-size: 1.5rem;
    font-style: italic;
}

.catalog-hero__buttons {
    display: flex;
    gap: 16px;
}

/* === CATALOG SECTIONS === */
.catalog-section {
    padding: 100px 40px;
    background: #f5f5f0;
}

.catalog-section:nth-child(even) {
    background: #fff;
}

.catalog-section__header {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.catalog-section__header--reverse {
    grid-template-columns: 1fr 1.2fr;
}

.catalog-section__info p {
    font-size: 0.92rem;
    line-height: 1.85;
    color: #555;
    margin-bottom: 24px;
}

.catalog-link {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: #000;
    border-bottom: 1px solid #000;
    padding-bottom: 2px;
    transition: border-color 0.3s;
}

.catalog-link:hover {
    border-color: transparent;
    opacity: 1;
}

/* === STAGGERED COLLAGE === */
.catalog-section__collage {
    position: relative;
    height: 450px;
}

.collage-slab {
    position: absolute;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s ease;
}

.collage-slab:hover {
    transform: translateY(-4px);
    z-index: 10;
}

.collage-slab img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Left collage layout */
.catalog-section__collage--left .collage-slab--1 {
    top: 0;
    left: 10%;
    width: 45%;
    height: 55%;
    z-index: 3;
}

.catalog-section__collage--left .collage-slab--2 {
    top: 15%;
    right: 0;
    width: 50%;
    height: 50%;
    z-index: 2;
}

.catalog-section__collage--left .collage-slab--3 {
    bottom: 0;
    left: 0;
    width: 55%;
    height: 45%;
    z-index: 1;
}

/* Right collage layout */
.catalog-section__collage--right .collage-slab--1 {
    top: 0;
    right: 10%;
    width: 45%;
    height: 55%;
    z-index: 3;
}

.catalog-section__collage--right .collage-slab--2 {
    top: 15%;
    left: 0;
    width: 50%;
    height: 50%;
    z-index: 2;
}

.catalog-section__collage--right .collage-slab--3 {
    bottom: 0;
    right: 0;
    width: 55%;
    height: 45%;
    z-index: 1;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .catalog-section__header,
    .catalog-section__header--reverse {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .catalog-section__collage {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .catalog-hero {
        margin-top: 64px;
        min-height: 350px;
    }

    .catalog-section {
        padding: 60px 20px;
    }

    .catalog-section__collage {
        height: 280px;
    }

    .catalog-hero__buttons {
        flex-direction: column;
    }
}
