/* Custom Styles for Dask Electrical & General Construction */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=Inter:wght@400;500;700;800&display=swap');

/* Language Switcher Logic via pure CSS selectors */
html[lang="en"] .lang-es {
    display: none !important;
}

html[lang="es"] .lang-en {
    display: none !important;
}

/* Base transitions */
.btn-hover-effect {
    transition: transform 0.15s ease, opacity 0.15s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.btn-hover-effect:hover {
    transform: translateY(-1px);
}

.btn-hover-effect:active {
    transform: scale(0.97);
    opacity: 0.95;
}

/* Custom shadow on scroll */
.nav-shadow {
    box-shadow: 0 4px 20px -2px rgba(0, 32, 69, 0.08);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Custom file upload styling hover states */
.custom-file-upload {
    transition: all 0.2s ease;
}
.custom-file-upload:hover {
    border-color: #002045;
    background-color: #eceef0;
}

/* Project Cards Hover Glow Effect */
.project-card {
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.project-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px -4px rgba(0, 32, 69, 0.15);
}
.project-card:hover .project-overlay {
    opacity: 1;
}

/* Filter Chip active styling */
.filter-chip.active {
    background-color: #fed01b !important;
    color: #231b00 !important;
    border-color: #fed01b !important;
}
