@import url('https://fonts.googleapis.com/css2?family=Funnel+Display&family=PT+Sans+Narrow:wght@400;700&display=swap');

* {
    font-family: "PT Sans Narrow", sans-serif;
}

.gradient-bg {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.glass-effect {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.text-gradient {
    color: #9bc123;
}

.navbar-shrink {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
    backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-shrink .logo-img {
    height: 2rem !important;
}

.navbar-shrink .nav-link {
    font-size: 0.875rem !important;
}

.hero-pattern {
    background-image: radial-gradient(circle at 1px 1px, rgba(59, 130, 246, 0.3) 1px, transparent 0);
    background-size: 20px 20px;
}

.service-card {
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
}

.form-input {
    transition: all 0.3s ease;
}

.form-input:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* Specific styling for bg-accent elements */
a.bg-accent, button.bg-accent, input[type="submit"].bg-accent {
    background-color: white !important;
    border: 2px solid #9bc123 !important;
    color: #9bc123 !important;
    transition: all 0.3s ease;
}

a.bg-accent:hover, button.bg-accent:hover, input[type="submit"].bg-accent:hover {
    background-color: #9bc123 !important;
    color: white !important;
}

/* Custom gradient class to replace to-purple-600 */
.to-dark-gray {
    --tw-gradient-to: #282828 !important;
}

/* Tab styling */
.tab-button {
    color: #6b7280;
    background-color: transparent;
}

.tab-button.active {
    background-color: white;
    color: #9bc123;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}

.tab-button:hover {
    color: #9bc123;
}

.tab-content {
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile menu animations */
#mobile-menu {
    transform: translateY(-10px);
    opacity: 0;
    transition: all 0.3s ease-in-out;
}

#mobile-menu:not(.hidden) {
    transform: translateY(0);
    opacity: 1;
}

/* Language switcher styles */
.lang-switch {
    text-align: center;
}

.lang-switch.active {
    background-color: white;
    color: #9bc123;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}

.lang-switch:not(.active) {
    color: #6b7280;
}

.lang-switch:not(.active):hover {
    color: #9bc123;
}

/* Particle system styles */
#particles-container {
    pointer-events: none;
}

#particles-container canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
