/* ----------------------------------------------------------------
	Custom CSS

	Add all your Custom Styled CSS here for New Styles or
	Overwriting Default Theme Styles for Better Handling Updates
-----------------------------------------------------------------*/

.tab-pane  .customReperContent {
	color: #000;
}
.tab-pane  .customReperContent  h3 {
	color: #000;
}


.custom-footer {
    background-color: #111; /* Sau culoarea ta actuală */
}

.project-logos .logo-box {
	position: relative;  
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 12px;
    width: 300px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    overflow: hidden;
}

.project-logos .logo-box:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    border-color: #6f42c1; /* Culoarea ta purple */
}

.project-logos .logo-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(20%) brightness(0.9);
    transition: all 0.3s ease;
}

.project-logos .logo-box:hover img {
    filter: grayscale(0%) brightness(1.1);
}

.tracking-widest {
    letter-spacing: 2px;
}

.logo-box.is-pending img {
        filter: grayscale(1) opacity(0.5); /* Face logo-ul mai șters */
    }

.coming-soon {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(111, 66, 193, 0.9);  
    color: #fff;
    font-size: 10px;
    font-weight: bold;
    text-transform: uppercase;
    padding: 4px 0;
    text-align: center;
    letter-spacing: 1px;
    transform: translateY(0);
    transition: transform 0.3s ease;
}
 
/* Efect opțional: textul se ridică mai mult la hover */
.logo-box.is-pending:hover .coming-soon {
    background: #6f42c1;
    padding: 8px 0;
}