.code-font {
    font-family: 'Fira Code', monospace;
}
.btn {
    transition: all 0.2s ease;
}
.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.uk-card {
    border-radius: 1.5rem !important;
    box-shadow: none !important;
}
.feature-card {
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}
.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border-color: #d1d5db;
}
.hero-text {
    font-weight: 700;
    line-height: 1.1;
}

/* Mobile menu styles */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: white;
    z-index: 50;
    padding: 0 1rem;
    flex-direction: column;
}

.mobile-menu.active {
    display: flex;
}

@media (max-width: 768px) {
    .desktop-nav {
        display: none !important;
    }

    .hamburger {
        display: block;
    }
}

@media (min-width: 769px) {
    .hamburger {
        display: none;
    }
}