/* Katalog Page Styles */

/* Main Section */
.katalog-section {
    padding: 40px 0;
    background-color: #f5f5f5;
}

.katalog-section:first-of-type {
    margin-top: 70px;
}

.katalog-title {
    font-size: 1.3rem;
    margin-bottom: 30px;
    color: var(--dark-brown);
    font-weight: 700;
    position: relative;
    display: flex;
    align-items: center;
}

.katalog-title i {
    margin-left: 10px;
    font-size: 1rem;
    opacity: 0.7;
}

.katalog-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.katalog-item {
    background-color: white;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.katalog-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.katalog-item a {
    display: block;
    height: 100%;
    color: var(--dark-brown);
}

.katalog-image {
    height: 180px;
    overflow: hidden;
}

.katalog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.katalog-item:hover .katalog-image img {
    transform: scale(1.05);
}

.katalog-info {
    padding: 12px 15px;
    text-align: center;
}

.katalog-info h3 {
    font-size: 0.9rem;
    margin-bottom: 5px;
    line-height: 1.3;
    font-weight: 600;
}

.katalog-info p {
    font-size: 0.8rem;
    color: #777;
    margin: 0;
}

/* Background color alternating sections */
.katalog-section:nth-child(odd) {
    background-color: #e3e2e2;
}

.katalog-section:nth-child(even) {
    background-color: #94704921;
}

/* Media Queries */
@media (max-width: 1100px) {
    .katalog-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .katalog-image {
        height: 170px;
    }
}

@media (max-width: 768px) {
    .katalog-section:first-of-type {
        margin-top: 70px;
    }
    
    .katalog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .katalog-image {
        height: 160px;
    }
    
    .katalog-info h3 {
        font-size: 0.85rem;
    }
    
    .katalog-info p {
        font-size: 0.75rem;
    }
    
    .katalog-title {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .katalog-section {
        padding: 30px 0;
    }
    
    .katalog-section:first-of-type {
        margin-top: 60px;
    }
    
    .katalog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .katalog-image {
        height: 140px;
    }
    
    .katalog-info {
        padding: 10px;
    }
    
    .katalog-info h3 {
        font-size: 0.8rem;
        line-height: 1.2;
    }
    
    .katalog-info p {
        font-size: 0.7rem;
    }
    
    .katalog-title {
        font-size: 1rem;
        margin-bottom: 20px;
    }
}

@media (max-width: 380px) {
    .katalog-grid {
        grid-template-columns: 1fr;
    }
    
    .katalog-image {
        height: 180px;
    }
}

/* Footer Custom untuk halaman kontak */
footer#katalog {
    background-color: #94704952;
}

/* Override footer color hanya di halaman kontak */
.katalog-page footer {
    background-color: #94704952;
}