/* Models page specific styles */
.models-grid {
    padding: 50px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    font-family: 'Playfair Display', serif;
    font-weight: 500;
}

.models-navigation {
    margin-bottom: 30px;
}

.model-card {
    margin-bottom: 30px;
    cursor: pointer;
}

.model-image {
    position: relative;
    overflow: hidden;
    margin-bottom: 10px;
}

.model-image img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.model-card:hover .model-image img {
    transform: scale(1.05);
}

.model-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.model-details {
    color: #fff;
    text-align: center;
    padding: 20px;
}

.model-feature {
    margin-bottom: 5px;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 14px;
}

.model-name {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    margin-top: 10px;
}

/* Filter buttons */
.models-top-menu .nav-link,
.models-sub-menu .nav-link {
    font-family: 'Roboto Condensed', sans-serif;
    letter-spacing: 1px;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .model-card {
        margin-bottom: 20px;
    }
    
    .model-name {
        font-size: 16px;
    }
}
