/* ========================================
   Objects Types Section
   ======================================== */

.objects-section {
    padding: 60px 0;
    background-color: var(--primary-color);
}

.objects-title {
    font-family: 'Russo One', sans-serif;
    font-size: 32px;
    color: var(--white);
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.object-card {
    position: relative;
    overflow: hidden;
    height: 300px;
    cursor: pointer;
}

.object-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.object-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

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

.object-card:hover img {
    transform: scale(1.1);
}

.object-content {
    text-align: center;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 20px;
}

.object-name {
    font-family: 'Russo One', sans-serif;
    font-size: 16px;
    color: var(--white);
    text-transform: uppercase;
    line-height: 1.4;
    letter-spacing: 1px;
    margin: 0;
}

/* Responsive */
@media (max-width: 991px) {
    .objects-title {
        font-size: 28px;
    }
    
    .object-card {
        height: 250px;
    }
    
    .object-name {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .objects-section {
        padding: 40px 0;
    }
    
    .objects-title {
        font-size: 24px;
        margin-bottom: 30px;
    }
    
    .object-card {
        height: 200px;
    }
    
    .object-name {
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .object-card {
        height: 150px;
    }
    
    .object-name {
        font-size: 11px;
        letter-spacing: 0.5px;
    }
}



